ETH Price: $2,686.61 (+0.34%)

Token

Connectors (C4)
 

Overview

Max Total Supply

420 C4

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
412 C4
0x2cca24975eb9a8f7b42c07c965133ddabc742610
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Connectors

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : Connectors.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

/// @title Connectors
/// @author swa.eth

/*********************************
 *           0       0           *
 * |░░░|░░░|░░░|░░░|░░░|░░░|░░░| *
 * |░░░|░░░|░░░|░░░|░░░|░░░|░░░| *
 * |░░░|░░░|░░░|░░░|░░░|░░░|░░░| *
 * |░░░|░░░|░░░|░░░|░░░|░░░|░░░| *
 * |░░░|░░░|░░░|░░░|░░░|░░░|░░░| *
 * |░░░|░░░|░░░|░░░|░░░|░░░|░░░| *
 * |                           | *
 *********************************/

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "src/Generator.sol";
import "src/interfaces/IConnectors.sol";
import "src/lib/Base64.sol";

/// @notice Just a friendly on-chain game of Connect Four
contract Connectors is IConnectors, ERC721, ERC721Holder, Ownable {
    using Strings for uint8;
    using Strings for uint160;
    using Strings for uint256;
    /// @dev Interface identifier for royalty standard
    bytes4 constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// @notice Maximum supply of NFTs
    uint16 public constant MAX_SUPPLY = 420;
    /// @notice Address of Generator contract
    address public immutable generator;
    /// @notice Current supply of NFTs
    uint16 public totalSupply;
    /// @notice Ether amount required to play (per player)
    uint64 public fee = 0.0420 ether;
    /// @notice Mapping of game ID to game info
    mapping(uint256 => Game) public games;

    /// @dev Deploys Generator contract
    constructor() payable ERC721("Connectors", "C4") {
        generator = address(new Generator());
    }

    /// @notice Creates new game and mints empty game board
    /// @dev Game can only become active once opponent calls begin
    /// @param _opponent Address of opponent
    function challenge(address _opponent) external payable {
        // Reverts if caller is also the opponent
        if (msg.sender == _opponent) revert InvalidMatchup();
        // Reverts if max supply has been minted
        if (totalSupply == MAX_SUPPLY) revert InsufficientSupply();
        // Reverts if payment amount is incorrect
        if (msg.value != fee) revert InvalidPayment();

        // Initializes game info
        Game storage game = games[++totalSupply];
        game.player1 = msg.sender;
        game.player2 = _opponent;
        game.turn = PLAYER_2;

        // Mints new board to this contract
        _safeMint(address(this), totalSupply);

        // Emits event for challenging opponent
        emit Challenge(totalSupply, msg.sender, _opponent);
    }

    /// @notice Activates new game and executes first move on board
    /// @dev Column numbers are zero-indexed
    /// @param _gameId ID of the game
    /// @param _col Value of column placement on board (0-6)
    function begin(uint256 _gameId, uint8 _col) external payable {
        // Reverts if game does not exist
        if (_gameId == 0 || _gameId > totalSupply) revert InvalidGame();
        Game storage game = games[_gameId];
        uint8 playerId = _getPlayerId(game, msg.sender);
        // Reverts if game state is not Inactive
        if (game.state != State.INACTIVE) revert InvalidState();
        // Reverts if caller is not authorized to execute move
        if (game.turn != playerId) revert NotAuthorized();
        // Reverts if payment amount is incorrect
        if (msg.value != fee) revert InvalidPayment();

        // Sets game state to Active
        game.state = State.ACTIVE;

        // Emits event for beginning a new game
        emit Begin(_gameId, msg.sender, game.state);

        // Executes first move on board
        move(_gameId, _col);
    }

    /// @notice Executes next placement on active board
    /// @dev Column numbers are zero-indexed
    /// @param _gameId ID of the game
    /// @param _col Value of column placement on board (0-6)
    function move(uint256 _gameId, uint8 _col) public returns (bool result) {
        // Reverts if game does not exist
        if (_gameId == 0 || _gameId > totalSupply) revert InvalidGame();
        Game storage game = games[_gameId];
        uint8[COL][ROW] storage board = game.board;
        uint8 playerId = _getPlayerId(game, msg.sender);
        uint8 row = getNextRow(board, _col);
        // Reverts if game state is not Active
        if (game.state != State.ACTIVE) revert InvalidState();
        // Reverts if caller is not authorized to execute move
        if (game.turn != playerId) revert NotAuthorized();
        // Reverts if column is fully occupied
        if (board[row][_col] != 0) revert InvalidMove();

        // Increments total number of moves made
        ++game.moves;
        uint8 moves = game.moves;

        // Records player move
        game.row = row;
        game.col = _col;
        board[row][_col] = playerId;

        // Emits event for creating new move on board
        emit Move(_gameId, msg.sender, moves, row, _col);

        // Only checks board for win if minimum number of moves have been made
        if (moves > 6) result = _checkBoard(playerId, row, _col, board);

        // Checks if game has been won
        if (result) {
            _success(_gameId, game);
        } else {
            // Updates player turn based on caller
            game.turn = (msg.sender == game.player1) ? PLAYER_2 : PLAYER_1;

            // Checks if number of moves has reached maximum moves
            if (moves == ROW * COL) _draw(_gameId, game);
        }
    }

    /// @notice Sets fee amount required to play game
    /// @param _fee Amount in ether
    function setFee(uint64 _fee) external payable onlyOwner {
        fee = _fee;
    }

    /// @notice Withdraws balance from this contract
    /// @param _to Target address for transferring balance to
    function withdraw(address payable _to) external payable onlyOwner {
        (bool success, ) = _to.call{value: address(this).balance}("");
        if (!success) revert TransferFailed();
    }

    /// @notice Gets the entire column for a given row
    /// @param _gameId ID of the game
    /// @param _row Value of row number on board
    function getColumn(uint256 _gameId, uint8 _row) external view returns (uint8[COL] memory) {
        Game memory game = games[_gameId];
        return game.board[_row];
    }

    /// @notice Returns royalty information for secondary sales
    function royaltyInfo(
        uint256 /* _tokenId */,
        uint256 _salePrice
    ) external view returns (address receiver, uint256 royalty) {
        receiver = owner();
        royalty = (_salePrice * 1000) / 10000;
    }

    /// @notice Supports interface for ERC-165 implementation
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return interfaceId == _INTERFACE_ID_ERC2981 || super.supportsInterface(interfaceId); // ERC165 Interface ID for ERC2981
    }

    /// @notice Gets metadata of token in JSON format
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        _requireMinted(_tokenId);

        Game memory game = games[_tokenId];
        uint8[COL][ROW] memory board = game.board;
        address player1 = game.player1;
        address player2 = game.player2;
        string memory name = (game.state == State.SUCCESS)
            ? string.concat("Connector #", _tokenId.toString())
            : string.concat("Game #", _tokenId.toString());
        string memory description = "Just a friendly on-chain game of Connect Four. Your move anon.";
        string memory gameTraits = _generateGameTraits(game);
        string memory playerTraits = _generatePlayerTraits(_tokenId, player1, player2);
        string memory image = Base64.encode(
            abi.encodePacked(IGenerator(generator).generateSVG(_tokenId, game.row, game.col, board))
        );

        return
            string.concat(
                "data:application/json;base64,",
                Base64.encode(
                    abi.encodePacked(
                        string.concat(
                            '{"name":"',
                                name,
                            '",',
                            '"description":"',
                                description,
                            '",',
                            '"image": "data:image/svg+xml;base64,',
                                image,
                            '",',
                            '"attributes": [',
                                playerTraits,
                                gameTraits,
                            "]}"
                        )
                    )
                )
            );
    }

    /// @notice Gets the next row value for the given column
    /// @param _board Current state of the game board
    /// @param _col Value of the column placement
    function getNextRow(uint8[COL][ROW] memory _board, uint8 _col) public pure returns (uint8) {
        unchecked {
            for (uint8 row; row < ROW; ++row) {
                if (_board[row][_col] == 0)  {
                    return row;
                }
            }
        }

        return 0;
    }

    /// @dev Sets game as success and transfers connector to winner
    function _success(uint256 _gameId, Game storage _game) internal {
        _game.state = State.SUCCESS;
        emit Result(_gameId, msg.sender, _game.state, _game.board);

        _burn(_gameId);
        _safeMint(msg.sender, _gameId);
    }

    /// @dev Sets game as draw
    function _draw(uint256 _gameId, Game storage _game) internal {
        _game.turn = 0;
        _game.state = State.DRAW;

        emit Result(_gameId, address(0), _game.state, _game.board);
    }

    /// @dev Checks if move wins game in any of the four directions
    function _checkBoard(
        uint8 _playerId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] storage _board
    ) internal view returns (bool result) {
        result = _checkHorizontal(_playerId, _row, _col, _board);
        if (!result) result = _checkVertical(_playerId, _row, _col, _board);
        if (!result) result = _checkAscending(_playerId, _row, _col, _board);
        if (!result) result = _checkDescending(_playerId, _row, _col, _board);
    }

    /// @dev Checks horizontal placement of move on board
    function _checkHorizontal(
        uint8 _playerId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] storage _board
    ) internal view returns (bool result) {
        uint8 i;
        uint8 counter;
        unchecked {
            for (i = 1; i < 4; ++i) {
                if (_col == 0) break;
                if (_board[_row][_col - i] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
                if (_col - i == 0) break;
            }

            for (i = 1; i < 4; ++i) {
                if (_col + i == COL) break;
                if (_board[_row][_col + i] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
            }
        }

        if (counter > 2) result = true;
    }

    /// @dev Checks vertical placement of move on board
    function _checkVertical(
        uint8 _playerId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] storage _board
    ) internal view returns (bool result) {
        uint8 i;
        uint8 counter;
        unchecked {
            for (i = 1; i < 4; ++i) {
                if (_row == 0) break;
                if (_board[_row - i][_col] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
                if (_row - i == 0) break;
            }

            for (i = 1; i < 4; ++i) {
                if (_row + i == ROW) break;
                if (_board[_row + i][_col] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
            }
        }

        if (counter > 2) result = true;
    }

    /// @dev Checks diagonal placement of move ascending from left to right
    function _checkAscending(
        uint8 _playerId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] storage _board
    ) internal view returns (bool result) {
        uint8 i;
        uint8 counter;
        unchecked {
            for (i = 1; i < 4; ++i) {
                if (_row == 0 || _col == 0) break;
                if (_board[_row - i][_col - i] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
                if (_row - i == 0 || _col - i == 0) break;
            }

            for (i = 1; i < 4; ++i) {
                if (_row + i == ROW || _col + i == COL) break;
                if (_board[_row + i][_col + i] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
            }
        }

        if (counter > 2) result = true;
    }

    /// @dev Checks diagonal placement of move descending from left to right
    function _checkDescending(
        uint8 _playerId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] storage _board
    ) internal view returns (bool result) {
        uint8 i;
        uint8 counter;
        unchecked {
            for (i = 1; i < 4; ++i) {
                if (_row + i == ROW || _col == 0) break;
                if (_board[_row + i][_col - i] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
                if (_col - i == 0) break;
            }

            for (i = 1; i < 4; ++i) {
                if (_row == 0 || _col + i == COL) break;
                if (_board[_row - i][_col + i] == _playerId) {
                    ++counter;
                } else {
                    break;
                }
                if (_row - i == 0) break;
            }
        }

        if (counter > 2) result = true;
    }

    /// @dev Generates JSON formatted data of game traits
    function _generateGameTraits(Game memory _game) internal view returns (string memory) {
        string memory moves = _game.moves.toString();
        string memory status = IGenerator(generator).getStatus(_game.state);
        string memory label = (_game.state == State.SUCCESS) ? "Winner" : "Turn";
        string memory turn = uint160(address(0)).toHexString(20);
        if (_game.turn == PLAYER_1) {
            turn = uint160(_game.player1).toHexString(20);
        } else if (_game.turn == PLAYER_2) {
            turn = uint160(_game.player2).toHexString(20);
        }
        string memory latest = string.concat(
            "(",
            _game.row.toString(),
            ", ",
            _game.col.toString(),
            ")"
        );

        return
            string(
                abi.encodePacked(
                    '{"trait_type":"Latest", "value":"',
                        latest,
                    '"},',
                    '{"trait_type":"Moves", "value":"',
                        moves,
                    '"},',
                    '{"trait_type":"Status", "value":"',
                        status,
                    '"},',
                    '{"trait_type":"',
                        label,
                    '", "value":"',
                        turn,
                    '"}'
                )
            );
    }

    /// @dev Generates JSON formatted data of player traits
    function _generatePlayerTraits(
        uint256 _gameId,
        address _player1,
        address _player2
    ) internal view returns (string memory) {
        string memory player1 = uint160(_player1).toHexString(20);
        string memory player2 = uint160(_player2).toHexString(20);
        (string memory checker1, string memory checker2) = IGenerator(generator).getCheckers(_gameId);

        return
            string(
                abi.encodePacked(
                    '{"trait_type":"',
                        checker1,
                    '", "value":"',
                        player1,
                    '"},',
                    '{"trait_type":"',
                        checker2,
                    '", "value":"',
                        player2,
                    '"},'
                )
            );
    }

    /// @dev Gets player ID of caller
    function _getPlayerId(
        Game storage _game,
        address _player
    ) internal view returns (uint8 playerId) {
        if (_player == _game.player1) {
            playerId = PLAYER_1;
        } else if (_player == _game.player2) {
            playerId = PLAYER_2;
        }
    }
}

File 2 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 4 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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);
}

File 5 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 6 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 7 of 17 : ERC721Holder.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol)

pragma solidity ^0.8.0;

import "../IERC721Receiver.sol";

/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

File 8 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 10 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

File 11 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 13 of 17 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 14 of 17 : Generator.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/utils/Strings.sol";
import "src/interfaces/IGenerator.sol";

contract Generator is IGenerator {
    using Strings for uint256;
    string public constant BLUE = "#29335c";
    string public constant RED = "#DB2B39";
    string public constant YELLOW = "#F3A712";

    constructor() payable {}

    function generateSVG(
        uint256 _gameId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] memory _board
    ) external pure returns (string memory svg) {
        string memory board = _generateBoard();
        (string memory base, string memory player1, string memory player2) = _getPalette(_gameId);
        for (uint8 y; y < COL; ++y) {
            board = string.concat(board, _generateGrid(y));
            for (uint8 x; x < ROW; ++x) {
                string memory cell;
                if (_board[x][y] == PLAYER_1) {
                    cell = _generateCell(x, y, _row, _col, player1);
                } else if (_board[x][y] == PLAYER_2) {
                    cell = _generateCell(x, y, _row, _col, player2);
                }
                board = string.concat(board, cell);
            }
            board = string.concat(board, _generateBase(base));
        }
        svg = string.concat(board, "</svg>");
    }

    function getCheckers(
        uint256 _gameId
    ) external pure returns (string memory checker1, string memory checker2) {
        (, string memory player1, string memory player2) = _getPalette(_gameId);
        checker1 = _getColor(player1);
        checker2 = _getColor(player2);
    }

    function getStatus(State _state) external pure returns (string memory status) {
        if (_state == State.INACTIVE) status = "Inactive";
        else if (_state == State.ACTIVE) status = "Active";
        else if (_state == State.SUCCESS) status = "Success";
        else status = "Draw";
    }

    function _generateBoard() internal pure returns (string memory) {
        return
            "<svg viewBox='0 0 700 600' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='cell-pattern' patternUnits='userSpaceOnUse' width='100' height='100'><circle cx='50' cy='50' r='45' fill='black'></circle></pattern><mask id='cell-mask'><rect width='100' height='600' fill='white'></rect><rect width='100' height='600' fill='url(#cell-pattern)'></rect></mask></defs>";
    }

    function _generateGrid(uint256 _col) internal pure returns (string memory) {
        uint256 x = _col * 100;
        string[3] memory grid;
        grid[0] = "<svg x='";
        grid[1] = x.toString();
        grid[2] = "' y='0'>";

        return string(abi.encodePacked(grid[0], grid[1], grid[2]));
    }

    function _generateCell(
        uint256 _x,
        uint256 _y,
        uint8 _row,
        uint8 _col,
        string memory _checker
    ) internal pure returns (string memory cell) {
        uint256 cy = 550 - (_x * 100);
        if (_x == _row && _y == _col) {
            cell = _animateCell(cy, _checker);
        } else {
            cell = _staticCell(cy, _checker);
        }
    }

    function _animateCell(
        uint256 _cy,
        string memory _checker
    ) internal pure returns (string memory) {
        uint256 duration = (_cy / 100 == 0) ? 1 : _cy / 100;
        string memory secs = string.concat(duration.toString(), "s");
        string[7] memory cell;
        cell[0] = "<circle cx='50' r='45' fill='";
        cell[1] = _checker;
        cell[2] = "'><animate attributeName='cy' from='0' to='";
        cell[3] = _cy.toString();
        cell[4] = "' dur='";
        cell[5] = secs;
        cell[6] = "' begin='2s' fill='freeze'></animate></circle>";

        return string(abi.encodePacked(cell[0], cell[1], cell[2], cell[3], cell[4], cell[5], cell[6]));
    }

    function _staticCell(
        uint256 _cy,
        string memory _checker
    ) internal pure returns (string memory) {
        string[5] memory cell;
        cell[0] = "<circle cx='50' cy='";
        cell[1] = _cy.toString();
        cell[2] = "' r='45' fill='";
        cell[3] = _checker;
        cell[4] = "'></circle>";

        return string(abi.encodePacked(cell[0], cell[1], cell[2], cell[3], cell[4]));
    }

    function _generateBase(string memory _base) internal pure returns (string memory) {
        string[3] memory base;
        base[0] = "<rect width='100' height='600' fill='";
        base[1] = _base;
        base[2] = "' mask='url(#cell-mask)'></rect></svg>";

        return string(abi.encodePacked(base[0], base[1], base[2]));
    }

    function _getPalette(
        uint256 _gameId
    ) internal pure returns (string memory base, string memory player1, string memory player2) {
        if (_gameId % 3 == 0) {
            base = RED;
            if (_gameId % 2 == 0) {
                player1 = BLUE;
                player2 = YELLOW;
            } else {
                player1 = YELLOW;
                player2 = BLUE;
            }
        } else if (_gameId % 3 == 1) {
            base = YELLOW;
            if (_gameId % 2 == 0) {
                player1 = RED;
                player2 = BLUE;
            } else {
                player1 = BLUE;
                player2 = RED;
            }
        } else if (_gameId % 3 == 2) {
            base = BLUE;
            if (_gameId % 2 == 0) {
                player1 = RED;
                player2 = YELLOW;
            } else {
                player1 = YELLOW;
                player2 = RED;
            }
        }
    }

    function _getColor(string memory _player) internal pure returns (string memory checker) {
        if (_hashStr(_player) == _hashStr(BLUE)) checker = "Blue";
        else if (_hashStr(_player) == _hashStr(RED)) checker = "Red";
        else checker = "Yellow";
    }

    function _hashStr(string memory _value) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_value));
    }
}

File 15 of 17 : IConnectors.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

uint8 constant COL = 7;
uint8 constant ROW = 6;
uint8 constant PLAYER_1 = 1;
uint8 constant PLAYER_2 = 2;

enum State {
    INACTIVE,
    ACTIVE,
    SUCCESS,
    DRAW
}

struct Game {
    State state;
    uint8 row;
    uint8 col;
    uint8 moves;
    uint8 turn;
    address player1;
    address player2;
    uint8[COL][ROW] board;
}

interface IConnectors {
    error InsufficientSupply();
    error InvalidGame();
    error InvalidMatchup();
    error InvalidMove();
    error InvalidPayment();
    error InvalidState();
    error NotAuthorized();
    error TransferFailed();

    event Challenge(uint256 indexed _gameId, address indexed _player1, address indexed _player2);

    event Begin(uint256 indexed _gameId, address indexed _player2, State indexed _state);

    event Move(
        uint256 indexed _gameId,
        address indexed _player,
        uint8 _moves,
        uint8 _row,
        uint8 _col
    );

    event Result(
        uint256 indexed _gameId,
        address indexed _winner,
        State indexed _state,
        uint8[COL][ROW] _board
    );

    function MAX_SUPPLY() external view returns (uint16);

    function challenge(address _opponent) external payable;

    function begin(uint256 _gameId, uint8 _col) external payable;

    function fee() external view returns (uint64);

    function generator() external view returns (address);

    function getColumn(uint256 _gameId, uint8 _row) external view returns (uint8[COL] memory);

    function getNextRow(uint8[COL][ROW] memory _board, uint8 _col) external view returns (uint8);

    function move(uint256 _gameId, uint8 _col) external returns (bool);

    function setFee(uint64 _fee) external payable;

    function totalSupply() external view returns (uint16);

    function withdraw(address payable _to) external payable;
}

File 16 of 17 : IGenerator.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import {COL, ROW, PLAYER_1, PLAYER_2, State} from "src/interfaces/IConnectors.sol";

interface IGenerator {
    function BLUE() external view returns (string memory);

    function RED() external view returns (string memory);

    function YELLOW() external view returns (string memory);

    function generateSVG(
        uint256 _gameId,
        uint8 _row,
        uint8 _col,
        uint8[COL][ROW] memory _board
    ) external pure returns (string memory);

    function getCheckers(uint256 _gameId) external pure returns (string memory, string memory);

    function getStatus(State _state) external view returns (string memory);
}

File 17 of 17 : Base64.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

library Base64 {
    string internal constant _TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    function encode(bytes memory data) public pure returns (string memory) {
        if (data.length == 0) return "";

        string memory table = _TABLE;
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1)
            }
            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;
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {
    "src/lib/Base64.sol": {
      "Base64": "0x9186675ed37c80b565414b970d226d8dbe1094da"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"InsufficientSupply","type":"error"},{"inputs":[],"name":"InvalidGame","type":"error"},{"inputs":[],"name":"InvalidMatchup","type":"error"},{"inputs":[],"name":"InvalidMove","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidState","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"TransferFailed","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":"_gameId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_player2","type":"address"},{"indexed":true,"internalType":"enum State","name":"_state","type":"uint8"}],"name":"Begin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_gameId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_player1","type":"address"},{"indexed":true,"internalType":"address","name":"_player2","type":"address"}],"name":"Challenge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_gameId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_player","type":"address"},{"indexed":false,"internalType":"uint8","name":"_moves","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_row","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_col","type":"uint8"}],"name":"Move","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_gameId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_winner","type":"address"},{"indexed":true,"internalType":"enum State","name":"_state","type":"uint8"},{"indexed":false,"internalType":"uint8[7][6]","name":"_board","type":"uint8[7][6]"}],"name":"Result","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":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gameId","type":"uint256"},{"internalType":"uint8","name":"_col","type":"uint8"}],"name":"begin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_opponent","type":"address"}],"name":"challenge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"games","outputs":[{"internalType":"enum State","name":"state","type":"uint8"},{"internalType":"uint8","name":"row","type":"uint8"},{"internalType":"uint8","name":"col","type":"uint8"},{"internalType":"uint8","name":"moves","type":"uint8"},{"internalType":"uint8","name":"turn","type":"uint8"},{"internalType":"address","name":"player1","type":"address"},{"internalType":"address","name":"player2","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_gameId","type":"uint256"},{"internalType":"uint8","name":"_row","type":"uint8"}],"name":"getColumn","outputs":[{"internalType":"uint8[7]","name":"","type":"uint8[7]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[7][6]","name":"_board","type":"uint8[7][6]"},{"internalType":"uint8","name":"_col","type":"uint8"}],"name":"getNextRow","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gameId","type":"uint256"},{"internalType":"uint8","name":"_col","type":"uint8"}],"name":"move","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royalty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_fee","type":"uint64"}],"name":"setFee","outputs":[],"stateMutability":"payable","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":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60068054600160b01b600160f01b031916649536c7089160c01b179055600a60a081815269436f6e6e6563746f727360b01b60c0908152610120604052600260e09081526110cd60f21b6101005291926200005d9160009162000124565b5080516200007390600190602084019062000124565b505050620000906200008a620000ce60201b60201c565b620000d2565b6040516200009e90620001b3565b604051809103906000f080158015620000bb573d6000803e3d6000fd5b506001600160a01b031660805262000214565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013290620001d8565b90600052602060002090601f016020900481019282620001565760008555620001a1565b82601f106200017157805160ff1916838001178555620001a1565b82800160010185558215620001a1579182015b82811115620001a157825182559160200191906001019062000184565b50620001af929150620001c1565b5090565b6114648062003d0f83390190565b5b80821115620001af5760008155600101620001c2565b600181811c90821680620001ed57607f821691505b6020821081036200020e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613aca62000245600039600081816105210152818161151e01528181611e9701526120900152613aca6000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f75780639021cdc011610095578063c87b56dd11610064578063c87b56dd146105e3578063ddca3f4314610603578063e985e9c514610642578063f2fde38b1461068b57600080fd5b80639021cdc01461056157806395d89b411461058e578063a22cb465146105a3578063b88d4fde146105c357600080fd5b8063715018a6116100d1578063715018a6146104e757806372fb9703146104fc5780637afa1eed1461050f5780638da5cb5b1461054357600080fd5b80636352211e146104865780636a3fa50c146104a657806370a08231146104b957600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461040e57806351cff8d91461042e57806356c1647f146104415780635a630d7a1461047357600080fd5b806323b872dd146103795780632a55205a146103995780632d3e0851146103d857806332cb6b0c146103f857600080fd5b8063095ea7b3116101ab578063095ea7b314610261578063117a5b9014610283578063150b7a021461030b57806318160ddd1461034457600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004612c79565b6106ab565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6106d6565b6040516101fe9190612cee565b34801561023557600080fd5b50610249610244366004612d01565b610768565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004612d2f565b61078f565b005b34801561028f57600080fd5b506102f861029e366004612d01565b6007602052600090815260409020805460019091015460ff808316926101008104821692620100008204831692630100000083048116926401000000008104909116916001600160a01b03600160281b9092048216911687565b6040516101fe9796959493929190612d93565b34801561031757600080fd5b5061032b610326366004612e9c565b6108a9565b6040516001600160e01b031990911681526020016101fe565b34801561035057600080fd5b5060065461036690600160a01b900461ffff1681565b60405161ffff90911681526020016101fe565b34801561038557600080fd5b50610281610394366004612f4a565b6108ba565b3480156103a557600080fd5b506103b96103b4366004612f8b565b6108eb565b604080516001600160a01b0390931683526020830191909152016101fe565b3480156103e457600080fd5b506101f26103f3366004612fc3565b610924565b34801561040457600080fd5b506103666101a481565b34801561041a57600080fd5b50610281610429366004612f4a565b610c6b565b61028161043c366004612fe6565b610c86565b34801561044d57600080fd5b5061046161045c366004613003565b610d06565b60405160ff90911681526020016101fe565b6102816104813660046130c4565b610d6c565b34801561049257600080fd5b506102496104a1366004612d01565b610da1565b6102816104b4366004612fc3565b610e01565b3480156104c557600080fd5b506104d96104d4366004612fe6565b610f35565b6040519081526020016101fe565b3480156104f357600080fd5b50610281610fbb565b61028161050a366004612fe6565b610fcf565b34801561051b57600080fd5b506102497f000000000000000000000000000000000000000000000000000000000000000081565b34801561054f57600080fd5b506006546001600160a01b0316610249565b34801561056d57600080fd5b5061058161057c366004612fc3565b611157565b6040516101fe9190613113565b34801561059a57600080fd5b5061021c6112b5565b3480156105af57600080fd5b506102816105be366004613121565b6112c4565b3480156105cf57600080fd5b506102816105de366004612e9c565b6112cf565b3480156105ef57600080fd5b5061021c6105fe366004612d01565b611307565b34801561060f57600080fd5b5060065461062a90600160b01b90046001600160401b031681565b6040516001600160401b0390911681526020016101fe565b34801561064e57600080fd5b506101f261065d36600461315f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069757600080fd5b506102816106a6366004612fe6565b61172c565b60006001600160e01b0319821663152a902d60e11b14806106d057506106d0826117a5565b92915050565b6060600080546106e59061318d565b80601f01602080910402602001604051908101604052809291908181526020018280546107119061318d565b801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b6000610773826117f5565b506000908152600460205260409020546001600160a01b031690565b600061079a82610da1565b9050806001600160a01b0316836001600160a01b03160361080c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108285750610828813361065d565b61089a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610803565b6108a48383611854565b505050565b630a85bd0160e11b5b949350505050565b6108c433826118c2565b6108e05760405162461bcd60e51b8152600401610803906131c7565b6108a4838383611940565b6000806109006006546001600160a01b031690565b9150612710610911846103e861322a565b61091b9190613249565b90509250929050565b600082158061093f5750600654600160a01b900461ffff1683115b1561095d576040516357e25a0960e01b815260040160405180910390fd5b600083815260076020526040812090600282019061097b8333611ab1565b6040805160c08101909152909150600090610a039084600684835b828210156109f9576040805160e08101918290529085840190600790826000855b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116109b7579050505050505081526020019060010190610996565b5050505087610d06565b90506001845460ff166003811115610a1d57610a1d612d5b565b14610a3b5760405163baf3f0f760e01b815260040160405180910390fd5b835460ff8381166401000000009092041614610a6a5760405163ea8e4eb560e01b815260040160405180910390fd5b828160ff1660068110610a7f57610a7f61326b565b018660ff1660078110610a9457610a9461326b565b602081049091015460ff601f9092166101000a90041615610ac8576040516321e08b4d60e21b815260040160405180910390fd5b83548490600390610ae2906301000000900460ff16613281565b825460ff91821661010093840a90810290830219909116179092558554888316620100000262ff0000198585169384021662ffff001983161717875563010000009004909116908390859060068110610b3d57610b3d61326b565b018860ff1660078110610b5257610b5261326b565b602091828204019190066101000a81548160ff021916908360ff160217905550336001600160a01b0316887f9b8f76c95bbf3adf2364317631f57638c6891793a4dea873f7b41bc29e1bcbca83858b604051610bc89392919060ff93841681529183166020830152909116604082015260600190565b60405180910390a360068160ff161115610beb57610be883838987611af9565b95505b8515610c0057610bfb8886611b4b565b610c60565b8454600160281b90046001600160a01b03163314610c1f576001610c22565b60025b855460ff919091166401000000000264ff0000000019909116178555610c4a600760066132a0565b60ff168160ff1603610c6057610c608886611bb0565b505050505092915050565b6108a4838383604051806020016040528060008152506112cf565b610c8e611c0b565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cdb576040519150601f19603f3d011682016040523d82523d6000602084013e610ce0565b606091505b5050905080610d02576040516312171d8360e31b815260040160405180910390fd5b5050565b6000805b600660ff82161015610d6257838160ff1660068110610d2b57610d2b61326b565b60200201518360ff1660078110610d4457610d4461326b565b602002015160ff16600003610d5a5790506106d0565b600101610d0a565b5060009392505050565b610d74611c0b565b600680546001600160401b03909216600160b01b0267ffffffffffffffff60b01b19909216919091179055565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610803565b811580610e1a5750600654600160a01b900461ffff1682115b15610e38576040516357e25a0960e01b815260040160405180910390fd5b600082815260076020526040812090610e518233611ab1565b90506000825460ff166003811115610e6b57610e6b612d5b565b14610e895760405163baf3f0f760e01b815260040160405180910390fd5b815460ff8281166401000000009092041614610eb85760405163ea8e4eb560e01b815260040160405180910390fd5b600654600160b01b90046001600160401b03163414610eea5760405163078d696560e31b815260040160405180910390fd5b815460ff191660019081178355604051339086907f4910d0d0b9efe415dce480587a5a695145b3ca08416d82fa73e8036cd1cce8d190600090a4610f2e8484610924565b5050505050565b60006001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610803565b506001600160a01b031660009081526003602052604090205490565b610fc3611c0b565b610fcd6000611c65565b565b6001600160a01b0381163303610ff857604051630cd9c40960e31b815260040160405180910390fd5b6006546101a319600160a01b90910461ffff160161102957604051630cea840760e21b815260040160405180910390fd5b600654600160b01b90046001600160401b0316341461105b5760405163078d696560e31b815260040160405180910390fd5b6000600760006006601481819054906101000a900461ffff1661107d906132c9565b82546101009290920a61ffff8181021990931691831690810291909117909255908252602082019290925260400160002080546001820180546001600160a01b0319166001600160a01b038716179055640100000000600160c81b03191633600160281b0264ff0000000019161764020000000017815560065490925061110d913091600160a01b900416611cb7565b6006546040516001600160a01b038416913391600160a01b90910461ffff16907f6df4b9687db806e0d2314ef399672173f6106f34e5f15606d44a2825bc81e6cc90600090a45050565b61115f612c45565b600083815260076020526040808220815161010081019092528054829060ff16600381111561119057611190612d5b565b60038111156111a1576111a1612d5b565b8152815460ff61010082048116602084015262010000820481166040808501919091526301000000830482166060850152640100000000830490911660808401526001600160a01b03600160281b909204821660a0840152600184015490911660c080840191909152815190810190915260e0909101906002830160066000835b82821015611285576040805160e08101918290529085840190600790826000855b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411611243579050505050505081526020019060010190611222565b505050508152505090508060e001518360ff16600681106112a8576112a861326b565b6020020151949350505050565b6060600180546106e59061318d565b610d02338383611cd1565b6112d933836118c2565b6112f55760405162461bcd60e51b8152600401610803906131c7565b61130184848484611d9f565b50505050565b6060611312826117f5565b600082815260076020526040808220815161010081019092528054829060ff16600381111561134357611343612d5b565b600381111561135457611354612d5b565b8152815460ff61010082048116602084015262010000820481166040808501919091526301000000830482166060850152640100000000830490911660808401526001600160a01b03600160281b909204821660a0840152600184015490911660c080840191909152815190810190915260e0909101906002830160066000835b82821015611438576040805160e08101918290529085840190600790826000855b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116113f65790505050505050815260200190600101906113d5565b5050509152505060e081015160a082015160c08301519293509091600060028551600381111561146a5761146a612d5b565b1461149c5761147887611dd2565b6040516020016114889190613306565b6040516020818303038152906040526114c5565b6114a587611dd2565b6040516020016114b59190613334565b6040516020818303038152906040525b905060006040518060600160405280603e8152602001613a57603e9139905060006114ef87611e64565b905060006114fe8a8787612059565b90506000739186675ed37c80b565414b970d226d8dbe1094da6312496a1b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a8a3b75c8e8d602001518e604001518e6040518563ffffffff1660e01b81526004016115769493929190613367565b600060405180830381865afa158015611593573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115bb9190810190613407565b6040516020016115cb919061343b565b6040516020818303038152906040526040518263ffffffff1660e01b81526004016115f69190612cee565b600060405180830381865af4158015611613573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261163b9190810190613407565b9050739186675ed37c80b565414b970d226d8dbe1094da6312496a1b8686848688604051602001611670959493929190613457565b60408051601f198184030181529082905261168d9160200161343b565b6040516020818303038152906040526040518263ffffffff1660e01b81526004016116b89190612cee565b600060405180830381865af41580156116d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116fd9190810190613407565b60405160200161170d919061355d565b6040516020818303038152906040529950505050505050505050919050565b611734611c0b565b6001600160a01b0381166117995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610803565b6117a281611c65565b50565b60006001600160e01b031982166380ac58cd60e01b14806117d657506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316146106d0565b6000818152600260205260409020546001600160a01b03166117a25760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610803565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061188982610da1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806118ce83610da1565b9050806001600160a01b0316846001600160a01b0316148061191557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806108b25750836001600160a01b031661192e84610768565b6001600160a01b031614949350505050565b826001600160a01b031661195382610da1565b6001600160a01b0316146119795760405162461bcd60e51b8152600401610803906135a2565b6001600160a01b0382166119db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610803565b6119e88383836001612158565b826001600160a01b03166119fb82610da1565b6001600160a01b031614611a215760405162461bcd60e51b8152600401610803906135a2565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b81546000906001600160a01b03600160281b909104811690831603611ad8575060016106d0565b60018301546001600160a01b03908116908316036106d05750600292915050565b6000611b07858585856121e0565b905080611b1d57611b1a85858585612307565b90505b80611b3157611b2e85858585612407565b90505b806108b257611b4285858585612533565b95945050505050565b805460ff191660029081178255336001600160a01b0316837f7180e3e10f3a880dba378c864fc7e4b83818bff97e7d5ca2ccf16aba2e87789784600201604051611b9591906135e7565b60405180910390a4611ba68261265e565b610d023383611cb7565b805464ff000000ff19166003908117825560006001600160a01b0316837f7180e3e10f3a880dba378c864fc7e4b83818bff97e7d5ca2ccf16aba2e87789784600201604051611bff91906135e7565b60405180910390a45050565b6006546001600160a01b03163314610fcd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d02828260405180602001604052806000815250612701565b816001600160a01b0316836001600160a01b031603611d325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611daa848484611940565b611db684848484612734565b6113015760405162461bcd60e51b815260040161080390613682565b60606000611ddf83612832565b60010190506000816001600160401b03811115611dfe57611dfe612de5565b6040519080825280601f01601f191660200182016040528015611e28576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611e3257509392505050565b60606000611e78836060015160ff16611dd2565b8351604051632d54a37160e11b81529192506000916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691635aa946e291611ecb91906004016136d4565b600060405180830381865afa158015611ee8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f109190810190613407565b90506000600285516003811115611f2957611f29612d5b565b14611f5057604051806040016040528060048152602001632a3ab93760e11b815250611f70565b604051806040016040528060068152602001652bb4b73732b960d11b8152505b90506000611f7f81601461290a565b9050600160ff16866080015160ff1603611fb35760a0860151611fac906001600160a01b0316601461290a565b9050611fe1565b600260ff16866080015160ff1603611fe15760c0860151611fde906001600160a01b0316601461290a565b90505b6000611ff3876020015160ff16611dd2565b612003886040015160ff16611dd2565b6040516020016120149291906136e2565b6040516020818303038152906040529050808585858560405160200161203e95949392919061373a565b60405160208183030381529060405295505050505050919050565b606060006120716001600160a01b038516601461290a565b905060006120896001600160a01b038516601461290a565b90506000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631ace335e896040518263ffffffff1660e01b81526004016120dc91815260200190565b600060405180830381865afa1580156120f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121219190810190613893565b915091508184828560405160200161213c94939291906138f6565b6040516020818303038152906040529450505050509392505050565b6001811115611301576001600160a01b0384161561219e576001600160a01b038416600090815260036020526040812080548392906121989084906139b6565b90915550505b6001600160a01b03831615611301576001600160a01b038316600090815260036020526040812080548392906121d59084906139cd565b909155505050505050565b60006001815b60048260ff1610156122695760ff851615612269578660ff16848760ff16600681106122145761221461326b565b0183870360ff166007811061222b5761222b61326b565b602081049091015460ff601f9092166101000a9004160361224e57600101612253565b612269565b60ff8286031615612269578160010191506121e6565b600191505b60048260ff1610156122ec5760061985830160ff1601156122ec578660ff16848760ff16600681106122a2576122a261326b565b0183870160ff16600781106122b9576122b961326b565b602081049091015460ff601f9092166101000a900416036122dc576001016122e1565b6122ec565b81600101915061226e565b60028160ff1611156122fd57600192505b5050949350505050565b60006001815b60048260ff1610156123905760ff861615612390578660ff168483880360ff166006811061233d5761233d61326b565b018660ff16600781106123525761235261326b565b602081049091015460ff601f9092166101000a900416036123755760010161237a565b612390565b60ff82870316156123905781600101915061230d565b600191505b60048260ff1610156122ec5760051986830160ff1601156122ec578660ff168483880160ff16600681106123cb576123cb61326b565b018660ff16600781106123e0576123e061326b565b602081049091015460ff601f9092166101000a900416036122dc5760019182019101612395565b60006001815b60048260ff1610156124ac5760ff8616158061242a575060ff8516155b6124ac578660ff168483880360ff16600681106124495761244961326b565b0183870360ff16600781106124605761246061326b565b602081049091015460ff601f9092166101000a9004160361248357600101612488565b6124ac565b60ff82870316158061249d575060ff82860316155b6124ac5781600101915061240d565b600191505b60048260ff1610156122ec5785820160ff16600614806124d6575084820160ff166007145b6122ec578660ff168483880160ff16600681106124f5576124f561326b565b0183870160ff166007811061250c5761250c61326b565b602081049091015460ff601f9092166101000a900416036122dc57600191820191016124b1565b60006001815b60048260ff1610156125ce5785820160ff166006148061255a575060ff8516155b6125ce578660ff168483880160ff16600681106125795761257961326b565b0183870360ff16600781106125905761259061326b565b602081049091015460ff601f9092166101000a900416036125b3576001016125b8565b6125ce565b60ff82860316156125ce57816001019150612539565b600191505b60048260ff1610156122ec5760ff861615806125f4575084820160ff166007145b6122ec578660ff168483880360ff16600681106126135761261361326b565b0183870160ff166007811061262a5761262a61326b565b602081049091015460ff601f9092166101000a900416036122dc5760010160ff82870316156122ec578160010191506125d3565b600061266982610da1565b9050612679816000846001612158565b61268282610da1565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61270b8383612aac565b6127186000848484612734565b6108a45760405162461bcd60e51b815260040161080390613682565b60006001600160a01b0384163b1561282a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127789033908990889088906004016139e5565b6020604051808303816000875af19250505080156127b3575060408051601f3d908101601f191682019092526127b091810190613a22565b60015b612810573d8080156127e1576040519150601f19603f3d011682016040523d82523d6000602084013e6127e6565b606091505b5080516000036128085760405162461bcd60e51b815260040161080390613682565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506108b2565b5060016108b2565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106128715772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061289d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106128bb57662386f26fc10000830492506010015b6305f5e10083106128d3576305f5e100830492506008015b61271083106128e757612710830492506004015b606483106128f9576064830492506002015b600a83106106d05760010192915050565b6060600061291983600261322a565b6129249060026139cd565b6001600160401b0381111561293b5761293b612de5565b6040519080825280601f01601f191660200182016040528015612965576020820181803683370190505b509050600360fc1b816000815181106129805761298061326b565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106129af576129af61326b565b60200101906001600160f81b031916908160001a90535060006129d384600261322a565b6129de9060016139cd565b90505b6001811115612a56576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612a1257612a1261326b565b1a60f81b828281518110612a2857612a2861326b565b60200101906001600160f81b031916908160001a90535060049490941c93612a4f81613a3f565b90506129e1565b508315612aa55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610803565b9392505050565b6001600160a01b038216612b025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b6000818152600260205260409020546001600160a01b031615612b675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b612b75600083836001612158565b6000818152600260205260409020546001600160a01b031615612bda5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518060e001604052806007906020820280368337509192915050565b6001600160e01b0319811681146117a257600080fd5b600060208284031215612c8b57600080fd5b8135612aa581612c63565b60005b83811015612cb1578181015183820152602001612c99565b838111156113015750506000910152565b60008151808452612cda816020860160208601612c96565b601f01601f19169290920160200192915050565b602081526000612aa56020830184612cc2565b600060208284031215612d1357600080fd5b5035919050565b6001600160a01b03811681146117a257600080fd5b60008060408385031215612d4257600080fd5b8235612d4d81612d1a565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110612d8f57634e487b7160e01b600052602160045260246000fd5b9052565b60e08101612da1828a612d71565b60ff9788166020830152958716604082015293861660608501529190941660808301526001600160a01b0393841660a083015290921660c090920191909152919050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b0381118282101715612e1d57612e1d612de5565b60405290565b60405160e081016001600160401b0381118282101715612e1d57612e1d612de5565b604051601f8201601f191681016001600160401b0381118282101715612e6d57612e6d612de5565b604052919050565b60006001600160401b03821115612e8e57612e8e612de5565b50601f01601f191660200190565b60008060008060808587031215612eb257600080fd5b8435612ebd81612d1a565b93506020850135612ecd81612d1a565b92506040850135915060608501356001600160401b03811115612eef57600080fd5b8501601f81018713612f0057600080fd5b8035612f13612f0e82612e75565b612e45565b818152886020838501011115612f2857600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215612f5f57600080fd5b8335612f6a81612d1a565b92506020840135612f7a81612d1a565b929592945050506040919091013590565b60008060408385031215612f9e57600080fd5b50508035926020909101359150565b803560ff81168114612fbe57600080fd5b919050565b60008060408385031215612fd657600080fd5b8235915061091b60208401612fad565b600060208284031215612ff857600080fd5b8135612aa581612d1a565b600080610560838503121561301757600080fd5b601f848185011261302757600080fd5b61302f612dfb565b8061054086018781111561304257600080fd5b865b818110156130aa57888582011261305b5760008081fd5b613063612e23565b8060e083018b8111156130765760008081fd5b835b818110156130975761308981612fad565b845260209384019301613078565b505085525060209093019260e001613044565b508195506130b781612fad565b9450505050509250929050565b6000602082840312156130d657600080fd5b81356001600160401b0381168114612aa557600080fd5b8060005b600781101561130157815160ff168452602093840193909101906001016130f1565b60e081016106d082846130ed565b6000806040838503121561313457600080fd5b823561313f81612d1a565b91506020830135801515811461315457600080fd5b809150509250929050565b6000806040838503121561317257600080fd5b823561317d81612d1a565b9150602083013561315481612d1a565b600181811c908216806131a157607f821691505b6020821081036131c157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561324457613244613214565b500290565b60008261326657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff810361329757613297613214565b60010192915050565b600060ff821660ff84168160ff04811182151516156132c1576132c1613214565b029392505050565b600061ffff8083168181036132e0576132e0613214565b6001019392505050565b600081516132fc818560208601612c96565b9290920192915050565b6547616d65202360d01b815260008251613327816006850160208701612c96565b9190910160060192915050565b6a436f6e6e6563746f72202360a81b81526000825161335a81600b850160208701612c96565b91909101600b0192915050565b60006105a082019050858252602060ff86168184015260ff85166040840152606083018460005b60068110156133b5576133a28383516130ed565b60e092909201919083019060010161338e565b5050505095945050505050565b600082601f8301126133d357600080fd5b81516133e1612f0e82612e75565b8181528460208386010111156133f657600080fd5b6108b2826020830160208701612c96565b60006020828403121561341957600080fd5b81516001600160401b0381111561342f57600080fd5b6108b2848285016133c2565b6000825161344d818460208701612c96565b9190910192915050565b683d913730b6b2911d1160b91b8152855160009061347c816009850160208b01612c96565b61088b60f21b60099184019182018190526e113232b9b1b934b83a34b7b7111d1160891b600b83015287516134b881601a850160208c01612c96565b601a9201918201527f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b626173601c82015263194d8d0b60e21b603c8201528551613506816040840160208a01612c96565b016135186040820161088b60f21b9052565b6e2261747472696275746573223a205b60881b604282015261354661354060518301876132ea565b856132ea565b615d7d60f01b815260020198975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161359581601d850160208701612c96565b91909101601d0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6105408101818360005b600681101561367957815460ff80821685526020818360081c1681870152818360101c16604087015261362e60608701838560181c1660ff169052565b60ff83821c83161660808701525061365060a08601828460281c1660ff169052565b61366460c08601828460301c1660ff169052565b505060e09290920191600191820191016135f1565b50505092915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602081016106d08284612d71565b600560fb1b8152600083516136fe816001850160208801612c96565b61016160f51b6001918401918201528351613720816003840160208801612c96565b602960f81b60039290910191820152600401949350505050565b7f7b2274726169745f74797065223a224c6174657374222c202276616c7565223a81526000601160f91b806020840152875161377d816021860160208c01612c96565b62089f4b60ea1b60219185019182018190527f7b2274726169745f74797065223a224d6f766573222c202276616c7565223a22602483015288516137c8816044850160208d01612c96565b60449201918201527f7b2274726169745f74797065223a22537461747573222c202276616c7565223a60478201526067810191909152855190613812826068830160208a01612c96565b61388661387861387261385a61385461383960688888010162089f4b60ea1b815260030190565b6e3d913a3930b4ba2fba3cb832911d1160891b8152600f0190565b8a6132ea565b6b111610113b30b63ab2911d1160a11b8152600c0190565b876132ea565b61227d60f01b815260020190565b9998505050505050505050565b600080604083850312156138a657600080fd5b82516001600160401b03808211156138bd57600080fd5b6138c9868387016133c2565b935060208501519150808211156138df57600080fd5b506138ec858286016133c2565b9150509250929050565b60006e3d913a3930b4ba2fba3cb832911d1160891b808352865161392181600f860160208b01612c96565b6b111610113b30b63ab2911d1160a11b600f918501918201819052875161394f81601b850160208c01612c96565b62089f4b60ea1b9201601b8101839052601e8101939093528651929161397c84602d850160208b01612c96565b838301935081602d8501528651925061399c836039860160208a01612c96565b919092016039810191909152603c01979650505050505050565b6000828210156139c8576139c8613214565b500390565b600082198211156139e0576139e0613214565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a1890830184612cc2565b9695505050505050565b600060208284031215613a3457600080fd5b8151612aa581612c63565b600081613a4e57613a4e613214565b50600019019056fe4a757374206120667269656e646c79206f6e2d636861696e2067616d65206f6620436f6e6e65637420466f75722e20596f7572206d6f766520616e6f6e2ea2646970667358221220e83e94b7bdec0a42edeb5f0845008017e2903a704074c70416293ed6991656b264736f6c634300080d00336080604052611451806100136000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631ace335e1461006757806336d18b6714610091578063592b18b2146100c45780635aa946e2146100ea578063a8a3b75c146100fd578063c011ff6414610110575b600080fd5b61007a610075366004610d16565b610136565b604051610088929190610d8b565b60405180910390f35b6100b7604051806040016040528060078152602001662344423242333960c81b81525081565b6040516100889190610db9565b6100b76040518060400160405280600781526020016611a319a09b989960c91b81525081565b6100b76100f8366004610dd3565b610167565b6100b761010b366004610e83565b61023f565b6100b7604051806040016040528060078152602001662332393333356360c81b81525081565b606080600080610145856103fd565b925092505061015382610686565b935061015e81610686565b92505050915091565b6060600082600381111561017d5761017d610f5d565b036101a6575050604080518082019091526008815267496e61637469766560c01b602082015290565b60018260038111156101ba576101ba610f5d565b036101e157505060408051808201909152600681526541637469766560d01b602082015290565b60028260038111156101f5576101f5610f5d565b0361021d5750506040805180820190915260078152665375636365737360c81b602082015290565b506040805180820190915260048152634472617760e01b60208201525b919050565b6060600061024b610755565b9050600080600061025b896103fd565b92509250925060005b600760ff821610156103ce578461027d8260ff16610778565b60405160200161028e929190610f73565b604051602081830303815290604052945060005b600660ff8216101561039057606060018960ff8416600681106102c7576102c7610fa2565b60200201518460ff16600781106102e0576102e0610fa2565b602002015160ff1603610307576103008260ff168460ff168d8d8961080f565b905061035a565b60028960ff84166006811061031e5761031e610fa2565b60200201518460ff166007811061033757610337610fa2565b602002015160ff160361035a576103578260ff168460ff168d8d8861080f565b90505b868160405160200161036d929190610f73565b6040516020818303038152906040529650508061038990610fce565b90506102a2565b508461039b8561086d565b6040516020016103ac929190610f73565b6040516020818303038152906040529450806103c790610fce565b9050610264565b50836040516020016103e09190610fed565b604051602081830303815290604052945050505050949350505050565b6060808061040c60038561102d565b6000036104d7576040805180820190915260078152662344423242333960c81b6020820152925061043e60028561102d565b60000361048e57604051806040016040528060078152602001662332393333356360c81b81525091506040518060400160405280600781526020016611a319a09b989960c91b815250905061067f565b6040518060400160405280600781526020016611a319a09b989960c91b8152509150604051806040016040528060078152602001662332393333356360c81b815250905061067f565b6104e260038561102d565b6001036105ad5760408051808201909152600781526611a319a09b989960c91b6020820152925061051460028561102d565b60000361056457604051806040016040528060078152602001662344423242333960c81b8152509150604051806040016040528060078152602001662332393333356360c81b815250905061067f565b604051806040016040528060078152602001662332393333356360c81b8152509150604051806040016040528060078152602001662344423242333960c81b815250905061067f565b6105b860038561102d565b60020361067f576040805180820190915260078152662332393333356360c81b602082015292506105ea60028561102d565b60000361063a57604051806040016040528060078152602001662344423242333960c81b81525091506040518060400160405280600781526020016611a319a09b989960c91b815250905061067f565b6040518060400160405280600781526020016611a319a09b989960c91b8152509150604051806040016040528060078152602001662344423242333960c81b81525090505b9193909250565b60606106b0604051806040016040528060078152602001662332393333356360c81b8152506108ea565b6106b9836108ea565b036106de575050604080518082019091526004815263426c756560e01b602082015290565b610706604051806040016040528060078152602001662344423242333960c81b8152506108ea565b61070f836108ea565b0361073357505060408051808201909152600381526214995960ea1b602082015290565b505060408051808201909152600681526559656c6c6f7760d01b602082015290565b6060604051806101a0016040528061016b815260200161126161016b9139905090565b60606000610787836064611041565b9050610791610cbb565b6040805180820190915260088152673c73766720783d2760c01b602082015281526107bb8261091a565b6020828101918252604080518082018252600881526713903c9e9398139f60c11b818401528185018190528451935191516107f7949301611060565b60405160208183030381529060405292505050919050565b6060600061081e876064611041565b61082a906102266110a3565b90508460ff168714801561084057508360ff1686145b156108565761084f81846109ad565b9150610863565b6108608184610b13565b91505b5095945050505050565b6060610877610cbb565b6040518060600160405280602581526020016113f7602591398152602080820184905260408051606081019091526026808252909161120d908301396040808301829052825160208085015192516108d3949293929101611060565b604051602081830303815290604052915050919050565b6000816040516020016108fd91906110ba565b604051602081830303815290604052805190602001209050919050565b6060600061092783610be2565b600101905060008167ffffffffffffffff81111561094757610947610e05565b6040519080825280601f01601f191660200182016040528015610971576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461097b57509392505050565b606060006109bc6064856110d6565b156109d1576109cc6064856110d6565b6109d4565b60015b905060006109e18261091a565b6040516020016109f191906110ea565b6040516020818303038152906040529050610a0a610ce2565b604080518082018252601d81527f3c636972636c652063783d2735302720723d273435272066696c6c3d27000000602080830191909152908352828101879052815160608101909252602b808352906113cc908301396040820152610a6e8661091a565b606082015260408051808201909152600781526627206475723d2760c81b602082015281600460200201528181600560200201819052506040518060600160405280602e8152602001611233602e913960c0820181905281516020808401516040808601516060870151608088015160a08901519351610af99895969395929491939192910161110f565b604051602081830303815290604052935050505092915050565b6060610b1d610cfc565b6040805180820190915260148152733c636972636c652063783d273530272063793d2760601b60208201528152610b538461091a565b6020828101918252604080518082018252600f81526e2720723d273435272066696c6c3d2760881b818401528185019081526060850187815282518084018452600b81526a139f1e17b1b4b931b6329f60a91b818601526080870181905286519551925191519351610bca969593949293016111a1565b60405160208183030381529060405291505092915050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610c215772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610c4d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c6b57662386f26fc10000830492506010015b6305f5e1008310610c83576305f5e100830492506008015b6127108310610c9757612710830492506004015b60648310610ca9576064830492506002015b600a8310610cb5576001015b92915050565b60405180606001604052806003905b6060815260200190600190039081610cca5790505090565b6040805160e0810190915260608152600660208201610cca565b6040805160a0810190915260608152600460208201610cca565b600060208284031215610d2857600080fd5b5035919050565b60005b83811015610d4a578181015183820152602001610d32565b83811115610d59576000848401525b50505050565b60008151808452610d77816020860160208601610d2f565b601f01601f19169290920160200192915050565b604081526000610d9e6040830185610d5f565b8281036020840152610db08185610d5f565b95945050505050565b602081526000610dcc6020830184610d5f565b9392505050565b600060208284031215610de557600080fd5b813560048110610dcc57600080fd5b803560ff8116811461023a57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715610e4c57634e487b7160e01b600052604160045260246000fd5b60405290565b60405160e0810167ffffffffffffffff81118282101715610e4c57634e487b7160e01b600052604160045260246000fd5b6000806000806105a0808688031215610e9b57600080fd5b853594506020610eac818801610df4565b9450610eba60408801610df4565b935087607f880112610ecb57600080fd5b610ed3610e1b565b918701918089841115610ee557600080fd5b606089015b84811015610f4e578a601f820112610f025760008081fd5b610f0a610e52565b8060e083018d811115610f1d5760008081fd5b835b81811015610f3d57610f3081610df4565b8452928701928701610f1f565b50508452509183019160e001610eea565b50969995985093965050505050565b634e487b7160e01b600052602160045260246000fd5b60008351610f85818460208801610d2f565b835190830190610f99818360208801610d2f565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8103610fe457610fe4610fb8565b60010192915050565b60008251610fff818460208701610d2f565b651e17b9bb339f60d11b920191825250600601919050565b634e487b7160e01b600052601260045260246000fd5b60008261103c5761103c611017565b500690565b600081600019048311821515161561105b5761105b610fb8565b500290565b60008451611072818460208901610d2f565b845190830190611086818360208901610d2f565b8451910190611099818360208801610d2f565b0195945050505050565b6000828210156110b5576110b5610fb8565b500390565b600082516110cc818460208701610d2f565b9190910192915050565b6000826110e5576110e5611017565b500490565b600082516110fc818460208701610d2f565b607360f81b920191825250600101919050565b6000885160206111228285838e01610d2f565b8951918401916111358184848e01610d2f565b89519201916111478184848d01610d2f565b88519201916111598184848c01610d2f565b875192019161116b8184848b01610d2f565b865192019161117d8184848a01610d2f565b855192019161118f8184848901610d2f565b919091019a9950505050505050505050565b600086516111b3818460208b01610d2f565b8651908301906111c7818360208b01610d2f565b86519101906111da818360208a01610d2f565b85519101906111ed818360208901610d2f565b8451910190611200818360208801610d2f565b0197965050505050505056fe27206d61736b3d2775726c282363656c6c2d6d61736b29273e3c2f726563743e3c2f7376673e2720626567696e3d273273272066696c6c3d27667265657a65273e3c2f616e696d6174653e3c2f636972636c653e3c7376672076696577426f783d2730203020373030203630302720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f737667273e3c646566733e3c7061747465726e2069643d2763656c6c2d7061747465726e27207061747465726e556e6974733d277573657253706163654f6e557365272077696474683d2731303027206865696768743d27313030273e3c636972636c652063783d273530272063793d2735302720723d273435272066696c6c3d27626c61636b273e3c2f636972636c653e3c2f7061747465726e3e3c6d61736b2069643d2763656c6c2d6d61736b273e3c726563742077696474683d2731303027206865696768743d27363030272066696c6c3d277768697465273e3c2f726563743e3c726563742077696474683d2731303027206865696768743d27363030272066696c6c3d2775726c282363656c6c2d7061747465726e29273e3c2f726563743e3c2f6d61736b3e3c2f646566733e273e3c616e696d617465206174747269627574654e616d653d276379272066726f6d3d27302720746f3d273c726563742077696474683d2731303027206865696768743d27363030272066696c6c3d27a264697066735822122014cc38b4326fd416bce8faa06a8c9b7345c32ff063a485c53ad2541853b9687864736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f75780639021cdc011610095578063c87b56dd11610064578063c87b56dd146105e3578063ddca3f4314610603578063e985e9c514610642578063f2fde38b1461068b57600080fd5b80639021cdc01461056157806395d89b411461058e578063a22cb465146105a3578063b88d4fde146105c357600080fd5b8063715018a6116100d1578063715018a6146104e757806372fb9703146104fc5780637afa1eed1461050f5780638da5cb5b1461054357600080fd5b80636352211e146104865780636a3fa50c146104a657806370a08231146104b957600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461040e57806351cff8d91461042e57806356c1647f146104415780635a630d7a1461047357600080fd5b806323b872dd146103795780632a55205a146103995780632d3e0851146103d857806332cb6b0c146103f857600080fd5b8063095ea7b3116101ab578063095ea7b314610261578063117a5b9014610283578063150b7a021461030b57806318160ddd1461034457600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004612c79565b6106ab565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6106d6565b6040516101fe9190612cee565b34801561023557600080fd5b50610249610244366004612d01565b610768565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004612d2f565b61078f565b005b34801561028f57600080fd5b506102f861029e366004612d01565b6007602052600090815260409020805460019091015460ff808316926101008104821692620100008204831692630100000083048116926401000000008104909116916001600160a01b03600160281b9092048216911687565b6040516101fe9796959493929190612d93565b34801561031757600080fd5b5061032b610326366004612e9c565b6108a9565b6040516001600160e01b031990911681526020016101fe565b34801561035057600080fd5b5060065461036690600160a01b900461ffff1681565b60405161ffff90911681526020016101fe565b34801561038557600080fd5b50610281610394366004612f4a565b6108ba565b3480156103a557600080fd5b506103b96103b4366004612f8b565b6108eb565b604080516001600160a01b0390931683526020830191909152016101fe565b3480156103e457600080fd5b506101f26103f3366004612fc3565b610924565b34801561040457600080fd5b506103666101a481565b34801561041a57600080fd5b50610281610429366004612f4a565b610c6b565b61028161043c366004612fe6565b610c86565b34801561044d57600080fd5b5061046161045c366004613003565b610d06565b60405160ff90911681526020016101fe565b6102816104813660046130c4565b610d6c565b34801561049257600080fd5b506102496104a1366004612d01565b610da1565b6102816104b4366004612fc3565b610e01565b3480156104c557600080fd5b506104d96104d4366004612fe6565b610f35565b6040519081526020016101fe565b3480156104f357600080fd5b50610281610fbb565b61028161050a366004612fe6565b610fcf565b34801561051b57600080fd5b506102497f000000000000000000000000ba3ec062961e011050e2cba16ab2a00fee04e78681565b34801561054f57600080fd5b506006546001600160a01b0316610249565b34801561056d57600080fd5b5061058161057c366004612fc3565b611157565b6040516101fe9190613113565b34801561059a57600080fd5b5061021c6112b5565b3480156105af57600080fd5b506102816105be366004613121565b6112c4565b3480156105cf57600080fd5b506102816105de366004612e9c565b6112cf565b3480156105ef57600080fd5b5061021c6105fe366004612d01565b611307565b34801561060f57600080fd5b5060065461062a90600160b01b90046001600160401b031681565b6040516001600160401b0390911681526020016101fe565b34801561064e57600080fd5b506101f261065d36600461315f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069757600080fd5b506102816106a6366004612fe6565b61172c565b60006001600160e01b0319821663152a902d60e11b14806106d057506106d0826117a5565b92915050565b6060600080546106e59061318d565b80601f01602080910402602001604051908101604052809291908181526020018280546107119061318d565b801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b6000610773826117f5565b506000908152600460205260409020546001600160a01b031690565b600061079a82610da1565b9050806001600160a01b0316836001600160a01b03160361080c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108285750610828813361065d565b61089a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610803565b6108a48383611854565b505050565b630a85bd0160e11b5b949350505050565b6108c433826118c2565b6108e05760405162461bcd60e51b8152600401610803906131c7565b6108a4838383611940565b6000806109006006546001600160a01b031690565b9150612710610911846103e861322a565b61091b9190613249565b90509250929050565b600082158061093f5750600654600160a01b900461ffff1683115b1561095d576040516357e25a0960e01b815260040160405180910390fd5b600083815260076020526040812090600282019061097b8333611ab1565b6040805160c08101909152909150600090610a039084600684835b828210156109f9576040805160e08101918290529085840190600790826000855b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116109b7579050505050505081526020019060010190610996565b5050505087610d06565b90506001845460ff166003811115610a1d57610a1d612d5b565b14610a3b5760405163baf3f0f760e01b815260040160405180910390fd5b835460ff8381166401000000009092041614610a6a5760405163ea8e4eb560e01b815260040160405180910390fd5b828160ff1660068110610a7f57610a7f61326b565b018660ff1660078110610a9457610a9461326b565b602081049091015460ff601f9092166101000a90041615610ac8576040516321e08b4d60e21b815260040160405180910390fd5b83548490600390610ae2906301000000900460ff16613281565b825460ff91821661010093840a90810290830219909116179092558554888316620100000262ff0000198585169384021662ffff001983161717875563010000009004909116908390859060068110610b3d57610b3d61326b565b018860ff1660078110610b5257610b5261326b565b602091828204019190066101000a81548160ff021916908360ff160217905550336001600160a01b0316887f9b8f76c95bbf3adf2364317631f57638c6891793a4dea873f7b41bc29e1bcbca83858b604051610bc89392919060ff93841681529183166020830152909116604082015260600190565b60405180910390a360068160ff161115610beb57610be883838987611af9565b95505b8515610c0057610bfb8886611b4b565b610c60565b8454600160281b90046001600160a01b03163314610c1f576001610c22565b60025b855460ff919091166401000000000264ff0000000019909116178555610c4a600760066132a0565b60ff168160ff1603610c6057610c608886611bb0565b505050505092915050565b6108a4838383604051806020016040528060008152506112cf565b610c8e611c0b565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cdb576040519150601f19603f3d011682016040523d82523d6000602084013e610ce0565b606091505b5050905080610d02576040516312171d8360e31b815260040160405180910390fd5b5050565b6000805b600660ff82161015610d6257838160ff1660068110610d2b57610d2b61326b565b60200201518360ff1660078110610d4457610d4461326b565b602002015160ff16600003610d5a5790506106d0565b600101610d0a565b5060009392505050565b610d74611c0b565b600680546001600160401b03909216600160b01b0267ffffffffffffffff60b01b19909216919091179055565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610803565b811580610e1a5750600654600160a01b900461ffff1682115b15610e38576040516357e25a0960e01b815260040160405180910390fd5b600082815260076020526040812090610e518233611ab1565b90506000825460ff166003811115610e6b57610e6b612d5b565b14610e895760405163baf3f0f760e01b815260040160405180910390fd5b815460ff8281166401000000009092041614610eb85760405163ea8e4eb560e01b815260040160405180910390fd5b600654600160b01b90046001600160401b03163414610eea5760405163078d696560e31b815260040160405180910390fd5b815460ff191660019081178355604051339086907f4910d0d0b9efe415dce480587a5a695145b3ca08416d82fa73e8036cd1cce8d190600090a4610f2e8484610924565b5050505050565b60006001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610803565b506001600160a01b031660009081526003602052604090205490565b610fc3611c0b565b610fcd6000611c65565b565b6001600160a01b0381163303610ff857604051630cd9c40960e31b815260040160405180910390fd5b6006546101a319600160a01b90910461ffff160161102957604051630cea840760e21b815260040160405180910390fd5b600654600160b01b90046001600160401b0316341461105b5760405163078d696560e31b815260040160405180910390fd5b6000600760006006601481819054906101000a900461ffff1661107d906132c9565b82546101009290920a61ffff8181021990931691831690810291909117909255908252602082019290925260400160002080546001820180546001600160a01b0319166001600160a01b038716179055640100000000600160c81b03191633600160281b0264ff0000000019161764020000000017815560065490925061110d913091600160a01b900416611cb7565b6006546040516001600160a01b038416913391600160a01b90910461ffff16907f6df4b9687db806e0d2314ef399672173f6106f34e5f15606d44a2825bc81e6cc90600090a45050565b61115f612c45565b600083815260076020526040808220815161010081019092528054829060ff16600381111561119057611190612d5b565b60038111156111a1576111a1612d5b565b8152815460ff61010082048116602084015262010000820481166040808501919091526301000000830482166060850152640100000000830490911660808401526001600160a01b03600160281b909204821660a0840152600184015490911660c080840191909152815190810190915260e0909101906002830160066000835b82821015611285576040805160e08101918290529085840190600790826000855b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411611243579050505050505081526020019060010190611222565b505050508152505090508060e001518360ff16600681106112a8576112a861326b565b6020020151949350505050565b6060600180546106e59061318d565b610d02338383611cd1565b6112d933836118c2565b6112f55760405162461bcd60e51b8152600401610803906131c7565b61130184848484611d9f565b50505050565b6060611312826117f5565b600082815260076020526040808220815161010081019092528054829060ff16600381111561134357611343612d5b565b600381111561135457611354612d5b565b8152815460ff61010082048116602084015262010000820481166040808501919091526301000000830482166060850152640100000000830490911660808401526001600160a01b03600160281b909204821660a0840152600184015490911660c080840191909152815190810190915260e0909101906002830160066000835b82821015611438576040805160e08101918290529085840190600790826000855b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116113f65790505050505050815260200190600101906113d5565b5050509152505060e081015160a082015160c08301519293509091600060028551600381111561146a5761146a612d5b565b1461149c5761147887611dd2565b6040516020016114889190613306565b6040516020818303038152906040526114c5565b6114a587611dd2565b6040516020016114b59190613334565b6040516020818303038152906040525b905060006040518060600160405280603e8152602001613a57603e9139905060006114ef87611e64565b905060006114fe8a8787612059565b90506000739186675ed37c80b565414b970d226d8dbe1094da6312496a1b7f000000000000000000000000ba3ec062961e011050e2cba16ab2a00fee04e7866001600160a01b031663a8a3b75c8e8d602001518e604001518e6040518563ffffffff1660e01b81526004016115769493929190613367565b600060405180830381865afa158015611593573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115bb9190810190613407565b6040516020016115cb919061343b565b6040516020818303038152906040526040518263ffffffff1660e01b81526004016115f69190612cee565b600060405180830381865af4158015611613573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261163b9190810190613407565b9050739186675ed37c80b565414b970d226d8dbe1094da6312496a1b8686848688604051602001611670959493929190613457565b60408051601f198184030181529082905261168d9160200161343b565b6040516020818303038152906040526040518263ffffffff1660e01b81526004016116b89190612cee565b600060405180830381865af41580156116d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116fd9190810190613407565b60405160200161170d919061355d565b6040516020818303038152906040529950505050505050505050919050565b611734611c0b565b6001600160a01b0381166117995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610803565b6117a281611c65565b50565b60006001600160e01b031982166380ac58cd60e01b14806117d657506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316146106d0565b6000818152600260205260409020546001600160a01b03166117a25760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610803565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061188982610da1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806118ce83610da1565b9050806001600160a01b0316846001600160a01b0316148061191557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806108b25750836001600160a01b031661192e84610768565b6001600160a01b031614949350505050565b826001600160a01b031661195382610da1565b6001600160a01b0316146119795760405162461bcd60e51b8152600401610803906135a2565b6001600160a01b0382166119db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610803565b6119e88383836001612158565b826001600160a01b03166119fb82610da1565b6001600160a01b031614611a215760405162461bcd60e51b8152600401610803906135a2565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b81546000906001600160a01b03600160281b909104811690831603611ad8575060016106d0565b60018301546001600160a01b03908116908316036106d05750600292915050565b6000611b07858585856121e0565b905080611b1d57611b1a85858585612307565b90505b80611b3157611b2e85858585612407565b90505b806108b257611b4285858585612533565b95945050505050565b805460ff191660029081178255336001600160a01b0316837f7180e3e10f3a880dba378c864fc7e4b83818bff97e7d5ca2ccf16aba2e87789784600201604051611b9591906135e7565b60405180910390a4611ba68261265e565b610d023383611cb7565b805464ff000000ff19166003908117825560006001600160a01b0316837f7180e3e10f3a880dba378c864fc7e4b83818bff97e7d5ca2ccf16aba2e87789784600201604051611bff91906135e7565b60405180910390a45050565b6006546001600160a01b03163314610fcd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d02828260405180602001604052806000815250612701565b816001600160a01b0316836001600160a01b031603611d325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611daa848484611940565b611db684848484612734565b6113015760405162461bcd60e51b815260040161080390613682565b60606000611ddf83612832565b60010190506000816001600160401b03811115611dfe57611dfe612de5565b6040519080825280601f01601f191660200182016040528015611e28576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611e3257509392505050565b60606000611e78836060015160ff16611dd2565b8351604051632d54a37160e11b81529192506000916001600160a01b037f000000000000000000000000ba3ec062961e011050e2cba16ab2a00fee04e7861691635aa946e291611ecb91906004016136d4565b600060405180830381865afa158015611ee8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f109190810190613407565b90506000600285516003811115611f2957611f29612d5b565b14611f5057604051806040016040528060048152602001632a3ab93760e11b815250611f70565b604051806040016040528060068152602001652bb4b73732b960d11b8152505b90506000611f7f81601461290a565b9050600160ff16866080015160ff1603611fb35760a0860151611fac906001600160a01b0316601461290a565b9050611fe1565b600260ff16866080015160ff1603611fe15760c0860151611fde906001600160a01b0316601461290a565b90505b6000611ff3876020015160ff16611dd2565b612003886040015160ff16611dd2565b6040516020016120149291906136e2565b6040516020818303038152906040529050808585858560405160200161203e95949392919061373a565b60405160208183030381529060405295505050505050919050565b606060006120716001600160a01b038516601461290a565b905060006120896001600160a01b038516601461290a565b90506000807f000000000000000000000000ba3ec062961e011050e2cba16ab2a00fee04e7866001600160a01b0316631ace335e896040518263ffffffff1660e01b81526004016120dc91815260200190565b600060405180830381865afa1580156120f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121219190810190613893565b915091508184828560405160200161213c94939291906138f6565b6040516020818303038152906040529450505050509392505050565b6001811115611301576001600160a01b0384161561219e576001600160a01b038416600090815260036020526040812080548392906121989084906139b6565b90915550505b6001600160a01b03831615611301576001600160a01b038316600090815260036020526040812080548392906121d59084906139cd565b909155505050505050565b60006001815b60048260ff1610156122695760ff851615612269578660ff16848760ff16600681106122145761221461326b565b0183870360ff166007811061222b5761222b61326b565b602081049091015460ff601f9092166101000a9004160361224e57600101612253565b612269565b60ff8286031615612269578160010191506121e6565b600191505b60048260ff1610156122ec5760061985830160ff1601156122ec578660ff16848760ff16600681106122a2576122a261326b565b0183870160ff16600781106122b9576122b961326b565b602081049091015460ff601f9092166101000a900416036122dc576001016122e1565b6122ec565b81600101915061226e565b60028160ff1611156122fd57600192505b5050949350505050565b60006001815b60048260ff1610156123905760ff861615612390578660ff168483880360ff166006811061233d5761233d61326b565b018660ff16600781106123525761235261326b565b602081049091015460ff601f9092166101000a900416036123755760010161237a565b612390565b60ff82870316156123905781600101915061230d565b600191505b60048260ff1610156122ec5760051986830160ff1601156122ec578660ff168483880160ff16600681106123cb576123cb61326b565b018660ff16600781106123e0576123e061326b565b602081049091015460ff601f9092166101000a900416036122dc5760019182019101612395565b60006001815b60048260ff1610156124ac5760ff8616158061242a575060ff8516155b6124ac578660ff168483880360ff16600681106124495761244961326b565b0183870360ff16600781106124605761246061326b565b602081049091015460ff601f9092166101000a9004160361248357600101612488565b6124ac565b60ff82870316158061249d575060ff82860316155b6124ac5781600101915061240d565b600191505b60048260ff1610156122ec5785820160ff16600614806124d6575084820160ff166007145b6122ec578660ff168483880160ff16600681106124f5576124f561326b565b0183870160ff166007811061250c5761250c61326b565b602081049091015460ff601f9092166101000a900416036122dc57600191820191016124b1565b60006001815b60048260ff1610156125ce5785820160ff166006148061255a575060ff8516155b6125ce578660ff168483880160ff16600681106125795761257961326b565b0183870360ff16600781106125905761259061326b565b602081049091015460ff601f9092166101000a900416036125b3576001016125b8565b6125ce565b60ff82860316156125ce57816001019150612539565b600191505b60048260ff1610156122ec5760ff861615806125f4575084820160ff166007145b6122ec578660ff168483880360ff16600681106126135761261361326b565b0183870160ff166007811061262a5761262a61326b565b602081049091015460ff601f9092166101000a900416036122dc5760010160ff82870316156122ec578160010191506125d3565b600061266982610da1565b9050612679816000846001612158565b61268282610da1565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61270b8383612aac565b6127186000848484612734565b6108a45760405162461bcd60e51b815260040161080390613682565b60006001600160a01b0384163b1561282a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127789033908990889088906004016139e5565b6020604051808303816000875af19250505080156127b3575060408051601f3d908101601f191682019092526127b091810190613a22565b60015b612810573d8080156127e1576040519150601f19603f3d011682016040523d82523d6000602084013e6127e6565b606091505b5080516000036128085760405162461bcd60e51b815260040161080390613682565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506108b2565b5060016108b2565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106128715772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061289d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106128bb57662386f26fc10000830492506010015b6305f5e10083106128d3576305f5e100830492506008015b61271083106128e757612710830492506004015b606483106128f9576064830492506002015b600a83106106d05760010192915050565b6060600061291983600261322a565b6129249060026139cd565b6001600160401b0381111561293b5761293b612de5565b6040519080825280601f01601f191660200182016040528015612965576020820181803683370190505b509050600360fc1b816000815181106129805761298061326b565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106129af576129af61326b565b60200101906001600160f81b031916908160001a90535060006129d384600261322a565b6129de9060016139cd565b90505b6001811115612a56576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612a1257612a1261326b565b1a60f81b828281518110612a2857612a2861326b565b60200101906001600160f81b031916908160001a90535060049490941c93612a4f81613a3f565b90506129e1565b508315612aa55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610803565b9392505050565b6001600160a01b038216612b025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b6000818152600260205260409020546001600160a01b031615612b675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b612b75600083836001612158565b6000818152600260205260409020546001600160a01b031615612bda5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518060e001604052806007906020820280368337509192915050565b6001600160e01b0319811681146117a257600080fd5b600060208284031215612c8b57600080fd5b8135612aa581612c63565b60005b83811015612cb1578181015183820152602001612c99565b838111156113015750506000910152565b60008151808452612cda816020860160208601612c96565b601f01601f19169290920160200192915050565b602081526000612aa56020830184612cc2565b600060208284031215612d1357600080fd5b5035919050565b6001600160a01b03811681146117a257600080fd5b60008060408385031215612d4257600080fd5b8235612d4d81612d1a565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110612d8f57634e487b7160e01b600052602160045260246000fd5b9052565b60e08101612da1828a612d71565b60ff9788166020830152958716604082015293861660608501529190941660808301526001600160a01b0393841660a083015290921660c090920191909152919050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b0381118282101715612e1d57612e1d612de5565b60405290565b60405160e081016001600160401b0381118282101715612e1d57612e1d612de5565b604051601f8201601f191681016001600160401b0381118282101715612e6d57612e6d612de5565b604052919050565b60006001600160401b03821115612e8e57612e8e612de5565b50601f01601f191660200190565b60008060008060808587031215612eb257600080fd5b8435612ebd81612d1a565b93506020850135612ecd81612d1a565b92506040850135915060608501356001600160401b03811115612eef57600080fd5b8501601f81018713612f0057600080fd5b8035612f13612f0e82612e75565b612e45565b818152886020838501011115612f2857600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215612f5f57600080fd5b8335612f6a81612d1a565b92506020840135612f7a81612d1a565b929592945050506040919091013590565b60008060408385031215612f9e57600080fd5b50508035926020909101359150565b803560ff81168114612fbe57600080fd5b919050565b60008060408385031215612fd657600080fd5b8235915061091b60208401612fad565b600060208284031215612ff857600080fd5b8135612aa581612d1a565b600080610560838503121561301757600080fd5b601f848185011261302757600080fd5b61302f612dfb565b8061054086018781111561304257600080fd5b865b818110156130aa57888582011261305b5760008081fd5b613063612e23565b8060e083018b8111156130765760008081fd5b835b818110156130975761308981612fad565b845260209384019301613078565b505085525060209093019260e001613044565b508195506130b781612fad565b9450505050509250929050565b6000602082840312156130d657600080fd5b81356001600160401b0381168114612aa557600080fd5b8060005b600781101561130157815160ff168452602093840193909101906001016130f1565b60e081016106d082846130ed565b6000806040838503121561313457600080fd5b823561313f81612d1a565b91506020830135801515811461315457600080fd5b809150509250929050565b6000806040838503121561317257600080fd5b823561317d81612d1a565b9150602083013561315481612d1a565b600181811c908216806131a157607f821691505b6020821081036131c157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561324457613244613214565b500290565b60008261326657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff810361329757613297613214565b60010192915050565b600060ff821660ff84168160ff04811182151516156132c1576132c1613214565b029392505050565b600061ffff8083168181036132e0576132e0613214565b6001019392505050565b600081516132fc818560208601612c96565b9290920192915050565b6547616d65202360d01b815260008251613327816006850160208701612c96565b9190910160060192915050565b6a436f6e6e6563746f72202360a81b81526000825161335a81600b850160208701612c96565b91909101600b0192915050565b60006105a082019050858252602060ff86168184015260ff85166040840152606083018460005b60068110156133b5576133a28383516130ed565b60e092909201919083019060010161338e565b5050505095945050505050565b600082601f8301126133d357600080fd5b81516133e1612f0e82612e75565b8181528460208386010111156133f657600080fd5b6108b2826020830160208701612c96565b60006020828403121561341957600080fd5b81516001600160401b0381111561342f57600080fd5b6108b2848285016133c2565b6000825161344d818460208701612c96565b9190910192915050565b683d913730b6b2911d1160b91b8152855160009061347c816009850160208b01612c96565b61088b60f21b60099184019182018190526e113232b9b1b934b83a34b7b7111d1160891b600b83015287516134b881601a850160208c01612c96565b601a9201918201527f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b626173601c82015263194d8d0b60e21b603c8201528551613506816040840160208a01612c96565b016135186040820161088b60f21b9052565b6e2261747472696275746573223a205b60881b604282015261354661354060518301876132ea565b856132ea565b615d7d60f01b815260020198975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161359581601d850160208701612c96565b91909101601d0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6105408101818360005b600681101561367957815460ff80821685526020818360081c1681870152818360101c16604087015261362e60608701838560181c1660ff169052565b60ff83821c83161660808701525061365060a08601828460281c1660ff169052565b61366460c08601828460301c1660ff169052565b505060e09290920191600191820191016135f1565b50505092915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602081016106d08284612d71565b600560fb1b8152600083516136fe816001850160208801612c96565b61016160f51b6001918401918201528351613720816003840160208801612c96565b602960f81b60039290910191820152600401949350505050565b7f7b2274726169745f74797065223a224c6174657374222c202276616c7565223a81526000601160f91b806020840152875161377d816021860160208c01612c96565b62089f4b60ea1b60219185019182018190527f7b2274726169745f74797065223a224d6f766573222c202276616c7565223a22602483015288516137c8816044850160208d01612c96565b60449201918201527f7b2274726169745f74797065223a22537461747573222c202276616c7565223a60478201526067810191909152855190613812826068830160208a01612c96565b61388661387861387261385a61385461383960688888010162089f4b60ea1b815260030190565b6e3d913a3930b4ba2fba3cb832911d1160891b8152600f0190565b8a6132ea565b6b111610113b30b63ab2911d1160a11b8152600c0190565b876132ea565b61227d60f01b815260020190565b9998505050505050505050565b600080604083850312156138a657600080fd5b82516001600160401b03808211156138bd57600080fd5b6138c9868387016133c2565b935060208501519150808211156138df57600080fd5b506138ec858286016133c2565b9150509250929050565b60006e3d913a3930b4ba2fba3cb832911d1160891b808352865161392181600f860160208b01612c96565b6b111610113b30b63ab2911d1160a11b600f918501918201819052875161394f81601b850160208c01612c96565b62089f4b60ea1b9201601b8101839052601e8101939093528651929161397c84602d850160208b01612c96565b838301935081602d8501528651925061399c836039860160208a01612c96565b919092016039810191909152603c01979650505050505050565b6000828210156139c8576139c8613214565b500390565b600082198211156139e0576139e0613214565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a1890830184612cc2565b9695505050505050565b600060208284031215613a3457600080fd5b8151612aa581612c63565b600081613a4e57613a4e613214565b50600019019056fe4a757374206120667269656e646c79206f6e2d636861696e2067616d65206f6620436f6e6e65637420466f75722e20596f7572206d6f766520616e6f6e2ea2646970667358221220e83e94b7bdec0a42edeb5f0845008017e2903a704074c70416293ed6991656b264736f6c634300080d0033

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.