ETH Price: $2,688.84 (-2.14%)

Contract

0xBBdF1E1c294Fc38b4958cc0dB0AD699297DEefe3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Mint176530172023-07-09 1:53:11414 days ago1688867591IN
0xBBdF1E1c...297DEefe3
0 ETH0.0129666413.52234526
Transfer From146350512022-04-22 13:50:05857 days ago1650635405IN
0xBBdF1E1c...297DEefe3
0 ETH0.0019318719.965
Transfer From145511932022-04-09 11:18:31870 days ago1649503111IN
0xBBdF1E1c...297DEefe3
0 ETH0.0019352620
Safe Transfer Fr...144150572022-03-19 5:48:29891 days ago1647668909IN
0xBBdF1E1c...297DEefe3
0 ETH0.0025344225.42944995
Mint143707272022-03-12 7:58:35898 days ago1647071915IN
0xBBdF1E1c...297DEefe3
0 ETH0.0130785211
Set Approval For...143206142022-03-04 13:02:26906 days ago1646398946IN
0xBBdF1E1c...297DEefe3
0 ETH0.0019678342.53026867
Mint143205792022-03-04 12:53:32906 days ago1646398412IN
0xBBdF1E1c...297DEefe3
0 ETH0.0067204144.52874936
Mint143205722022-03-04 12:52:36906 days ago1646398356IN
0xBBdF1E1c...297DEefe3
0 ETH0.0464768939.18275026
Transfer From143192442022-03-04 8:04:03906 days ago1646381043IN
0xBBdF1E1c...297DEefe3
0 ETH0.0019213422.22
Mint143003452022-03-01 9:38:40909 days ago1646127520IN
0xBBdF1E1c...297DEefe3
0 ETH0.0323817127.29968422
Mint143003092022-03-01 9:32:18909 days ago1646127138IN
0xBBdF1E1c...297DEefe3
0 ETH0.0349856729.42551584
Set Approval For...143001292022-03-01 8:53:34909 days ago1646124814IN
0xBBdF1E1c...297DEefe3
0 ETH0.0016588535.85241028
Mint142727722022-02-25 3:06:33913 days ago1645758393IN
0xBBdF1E1c...297DEefe3
0 ETH0.0118373133.3
0x60806040142724122022-02-25 1:47:41913 days ago1645753661IN
 Create: PixelSuperMario
0 ETH0.1004984533.01293075

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PixelSuperMario

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : PixelSuperMario.sol
// SPDX-License-Identifier: MIT
/*
                            
        C C C C C           
      C C C C C C C C C     
      A A A Z Z A Z         
    A Z A Z Z Z A Z Z Z     
    A Z A A Z Z Z A Z Z A   
    A A Z Z Z Z A A A A     
        Z Z Z Z Z Z Z       
      C C O C C O C         
    C C C O C C O C C C     
  C C C C O O O O C C C C   
  V V C O Q O O Q O C V V   
  V V V O O O O O O V V V   
  V V O O O O O O O O V V   
      O O O     O O O       
    M M M         M M M     
  M M M M         M M M M   

He wears a long-sleeved red shirt, a pair of blue overalls with yellow buttons,
 brown shoes, white gloves, and a red cap with a red "M" printed on a white circle. 
*/

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";

contract PixelSuperMario is ERC721Enumerable, ReentrancyGuard, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    uint256 public constant BASE_PRICE = 0.01 ether;

    constructor() ERC721("PixelSuperMario", "MARIO") {}

    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getBackground(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "BACKGROUND");
    }
    
    function getCap(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "CAP");
    }
    
    function getHair(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "HAIR");
    }

    function getHead(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "HEAD");
    }
    
    function getShirt(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "SHIRT");
    }

    function getButtons(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "BUTTONS");
    }

    function getGloves(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "GLOVES");
    }

    function getShoes(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "SHOES");
    }

    function pluck(uint256 tokenId, string memory keyPrefix) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, Strings.toString(tokenId), ownerOf(tokenId))));
        bytes memory buffer = new bytes(6);
        for (uint i = 0; i < 3; i++) {
            buffer[i * 2 + 1] = _HEX_SYMBOLS[rand & 0xf];
            rand >>= 4;
            buffer[i * 2] = _HEX_SYMBOLS[rand & 0xf];
            rand >>= 4;
        }
        return string(buffer);
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string memory svg = string(abi.encodePacked(
            '<svg xmlns="http://www.w3.org/2000/svg" version="1.2" viewBox="0 0 14 16"><path fill="#',
            getBackground(tokenId),
            '" d="M0 0h1v1H0zM1 0h1v1H1zM2 0h1v1H2zM3 0h1v1H3zM4 0h1v1H4zM5 0h1v1H5zM6 0h1v1H6zM7 0h1v1H7zM8 0h1v1H8zM9 0h1v1H9zM10 0h1v1h-1zM11 0h1v1h-1zM12 0h1v1h-1zM13 0h1v1h-1zM0 1h1v1H0zM1 1h1v1H1zM2 1h1v1H2zM3 1h1v1H3zM9 1h1v1H9zM10 1h1v1h-1zM11 1h1v1h-1zM12 1h1v1h-1zM13 1h1v1h-1zM0 2h1v1H0zM1 2h1v1H1zM2 2h1v1H2zM12 2h1v1h-1zM13 2h1v1h-1zM0 3h1v1H0zM1 3h1v1H1zM2 3h1v1H2zM10 3h1v1h-1zM11 3h1v1h-1zM12 3h1v1h-1zM13 3h1v1h-1zM0 4h1v1H0zM1 4h1v1H1zM12 4h1v1h-1zM13 4h1v1h-1zM0 5h1v1H0zM1 5h1v1H1zM13 5h1v1h-1zM0 6h1v1H0zM1 6h1v1H1zM12 6h1v1h-1zM13 6h1v1h-1zM0 7h1v1H0zM1 7h1v1H1zM2 7h1v1H2zM3 7h1v1H3zM11 7h1v1h-1zM12 7h1v1h-1zM13 7h1v1h-1zM0 8h1v1H0zM1 8h1v1H1zM2 8h1v1H2zM10 8h1v1h-1zM11 8h1v1h-1zM12 8h1v1h-1zM13 8h1v1h-1zM0 9h1v1H0zM1 9h1v1H1zM12 9h1v1h-1zM13 9h1v1h-1zM0 10h1v1H0zM13 10h1v1h-1zM0 11h1v1H0zM13 11h1v1h-1zM0 12h1v1H0zM13 12h1v1h-1zM0 13h1v1H0zM13 13h1v1h-1zM0 14h1v1H0zM1 14h1v1H1zM2 14h1v1H2zM6 14h1v1H6zM7 14h1v1H7zM11 14h1v1h-1zM12 14h1v1h-1zM13 14h1v1h-1zM0 15h1v1H0zM1 15h1v1H1zM5 15h1v1H5zM6 15h1v1H6zM7 15h1v1H7zM8 15h1v1H8zM12 15h1v1h-1zM13 15h1v1h-1z"/><path fill="#',
            getCap(tokenId),
            '" d="M4 1h1v1H4zM5 1h1v1H5zM6 1h1v1H6zM7 1h1v1H7zM8 1h1v1H8zM3 2h1v1H3zM4 2h1v1H4zM5 2h1v1H5zM6 2h1v1H6zM7 2h1v1H7zM8 2h1v1H8zM9 2h1v1H9zM10 2h1v1h-1zM11 2h1v1h-1zM3 8h1v1H3zM4 8h1v1H4zM6 8h1v1H6zM7 8h1v1H7zM9 8h1v1H9zM2 9h1v1H2zM3 9h1v1H3zM4 9h1v1H4zM6 9h1v1H6zM7 9h1v1H7zM9 9h1v1H9zM10 9h1v1h-1zM11 9h1v1h-1zM1 10h1v1H1zM2 10h1v1H2zM3 10h1v1H3zM4 10h1v1H4zM9 10h1v1H9zM10 10h1v1h-1zM11 10h1v1h-1zM12 10h1v1h-1zM3 11h1v1H3zM10 11h1v1h-1z"/><path fill="#',
            getHair(tokenId),
            '" d="M3 3h1v1H3zM4 3h1v1H4zM5 3h1v1H5zM8 3h1v1H8zM2 4h1v1H2zM4 4h1v1H4zM8 4h1v1H8zM2 5h1v1H2zM4 5h1v1H4zM5 5h1v1H5zM9 5h1v1H9zM12 5h1v1h-1zM2 6h1v1H2zM3 6h1v1H3zM8 6h1v1H8zM9 6h1v1H9zM10 6h1v1h-1zM11 6h1v1h-1z"/><path fill="#',
            getHead(tokenId)
        ));
        svg = string(abi.encodePacked(
            svg, 
             '" d="M6 3h1v1H6zM7 3h1v1H7zM9 3h1v1H9zM3 4h1v1H3zM5 4h1v1H5zM6 4h1v1H6zM7 4h1v1H7zM9 4h1v1H9zM10 4h1v1h-1zM11 4h1v1h-1zM3 5h1v1H3zM6 5h1v1H6zM7 5h1v1H7zM8 5h1v1H8zM10 5h1v1h-1zM11 5h1v1h-1zM4 6h1v1H4zM5 6h1v1H5zM6 6h1v1H6zM7 6h1v1H7zM4 7h1v1H4zM5 7h1v1H5zM6 7h1v1H6zM7 7h1v1H7zM8 7h1v1H8zM9 7h1v1H9zM10 7h1v1h-1z"/><path fill="#', 
            getShirt(tokenId), 
            '" d="M5 8h1v1H5zM8 8h1v1H8zM5 9h1v1H5zM8 9h1v1H8zM5 10h1v1H5zM6 10h1v1H6zM7 10h1v1H7zM8 10h1v1H8zM4 11h1v1H4zM6 11h1v1H6zM7 11h1v1H7zM9 11h1v1H9zM4 12h1v1H4zM5 12h1v1H5zM6 12h1v1H6zM7 12h1v1H7zM8 12h1v1H8zM9 12h1v1H9zM3 13h1v1H3zM4 13h1v1H4zM5 13h1v1H5zM6 13h1v1H6zM7 13h1v1H7zM8 13h1v1H8zM9 13h1v1H9zM10 13h1v1h-1zM3 14h1v1H3zM4 14h1v1H4zM5 14h1v1H5zM8 14h1v1H8zM9 14h1v1H9zM10 14h1v1h-1z"/><path fill="#', 
            getButtons(tokenId), 
            '" d="M5 11h1v1H5zM8 11h1v1H8z"/><path fill="#', 
            getGloves(tokenId), 
            '" d="M1 11h1v1H1zM2 11h1v1H2zM11 11h1v1h-1zM12 11h1v1h-1zM1 12h1v1H1zM2 12h1v1H2zM3 12h1v1H3zM10 12h1v1h-1zM11 12h1v1h-1zM12 12h1v1h-1zM1 13h1v1H1zM2 13h1v1H2zM11 13h1v1h-1zM12 13h1v1h-1z"/><path fill="#',
            getShoes(tokenId),
            '" d="M2 15h1v1H2zM3 15h1v1H3zM4 15h1v1H4zM9 15h1v1H9zM10 15h1v1h-1zM11 15h1v1h-1z"/></svg>'
        ));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Mario #', Strings.toString(tokenId), '", "description": "PixelSuperMario is randomized mario generated and stored on chain. Feel free to use PixelSuperMario in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(svg)), '"}'))));
        string memory output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    // Step Pricing
    function price() public view returns (uint256) {
        return (totalSupply() / 1000 * BASE_PRICE);
    }

    function mint(uint256 amount) public payable nonReentrant {
        uint256 curPrice = price();
        require(amount * curPrice == msg.value, "Need pay");
        for (uint i = 0; i < amount; i++) {
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _safeMint(msg.sender, tokenId);
        }
    }

    function withdraw() public {
        Address.sendValue(payable(owner()), address(this).balance);
    }
}

File 2 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 3 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 16 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

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

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

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

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

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

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

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

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

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

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

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

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

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

        return result;
    }
}

File 5 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 8 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {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 a {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 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 {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 10 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 16 : 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 16 : 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 13 of 16 : 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 14 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 16 of 16 : 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBackground","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getButtons","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCap","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGloves","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHair","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHead","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getShirt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getShoes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600f81526e506978656c53757065724d6172696f60881b6020808301918252835180850190945260058452644d4152494f60d81b9084015281519192916200006691600091620000e7565b5080516200007c906001906020840190620000e7565b50506001600a55506200008f3362000095565b620001ca565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f5906200018d565b90600052602060002090601f01602090048101928262000119576000855562000164565b82601f106200013457805160ff191683800117855562000164565b8280016001018555821562000164579182015b828111156200016457825182559160200191906001019062000147565b506200017292915062000176565b5090565b5b8082111562000172576000815560010162000177565b600181811c90821680620001a257607f821691505b60208210811415620001c457634e487b7160e01b600052602260045260246000fd5b50919050565b61345280620001da6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a5c18ca611610095578063e8d887d311610064578063e8d887d314610532578063e985e9c514610552578063f2fde38b1461059b578063f86325ed146105bb57600080fd5b8063a5c18ca6146104b2578063a5f23e1d146104d2578063b88d4fde146104f2578063c87b56dd1461051257600080fd5b80639720c969116100d15780639720c9691461044a578063a035b1fe1461046a578063a0712d681461047f578063a22cb4651461049257600080fd5b806370a08231146103e2578063715018a6146104025780638da5cb5b1461041757806395d89b411461043557600080fd5b806323b872dd1161017a5780634c9c05ea116101495780634c9c05ea146103625780634f6ccce7146103825780636352211e146103a25780636b20c6d4146103c257600080fd5b806323b872dd146102ed5780632f745c591461030d5780633ccfd60b1461032d57806342842e0e1461034257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806314cec06a1461028e57806318160ddd146102ae5780632249c7c1146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e6d565b6105d6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610601565b6040516102099190611ee9565b34801561024057600080fd5b5061025461024f366004611efc565b610693565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611f31565b61072d565b005b34801561029a57600080fd5b506102276102a9366004611efc565b610843565b3480156102ba57600080fd5b506008545b604051908152602001610209565b3480156102d957600080fd5b506102276102e8366004611efc565b61086e565b3480156102f957600080fd5b5061028c610308366004611f5b565b610895565b34801561031957600080fd5b506102bf610328366004611f31565b6108c6565b34801561033957600080fd5b5061028c61095c565b34801561034e57600080fd5b5061028c61035d366004611f5b565b610979565b34801561036e57600080fd5b5061022761037d366004611efc565b610994565b34801561038e57600080fd5b506102bf61039d366004611efc565b6109bd565b3480156103ae57600080fd5b506102546103bd366004611efc565b610a50565b3480156103ce57600080fd5b506102276103dd366004611efc565b610ac7565b3480156103ee57600080fd5b506102bf6103fd366004611f97565b610af1565b34801561040e57600080fd5b5061028c610b78565b34801561042357600080fd5b50600b546001600160a01b0316610254565b34801561044157600080fd5b50610227610bdc565b34801561045657600080fd5b50610227610465366004611efc565b610beb565b34801561047657600080fd5b506102bf610c13565b61028c61048d366004611efc565b610c42565b34801561049e57600080fd5b5061028c6104ad366004611fb2565b610d36565b3480156104be57600080fd5b506102276104cd366004611efc565b610d45565b3480156104de57600080fd5b506102276104ed366004611efc565b610d6d565b3480156104fe57600080fd5b5061028c61050d366004612004565b610d96565b34801561051e57600080fd5b5061022761052d366004611efc565b610dce565b34801561053e57600080fd5b5061022761054d366004611efc565b610ece565b34801561055e57600080fd5b506101fd61056d3660046120e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a757600080fd5b5061028c6105b6366004611f97565b610efc565b3480156105c757600080fd5b506102bf662386f26fc1000081565b60006001600160e01b0319821663780e9d6360e01b14806105fb57506105fb82610fc7565b92915050565b60606000805461061090612113565b80601f016020809104026020016040519081016040528092919081815260200182805461063c90612113565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073882610a50565b9050806001600160a01b0316836001600160a01b031614156107a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610708565b336001600160a01b03821614806107c257506107c2813361056d565b6108345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610708565b61083e8383611017565b505050565b60606105fb8260405180604001604052806007815260200166425554544f4e5360c81b815250611085565b60606105fb826040518060400160405280600381526020016204341560ec1b815250611085565b61089f33826111e8565b6108bb5760405162461bcd60e51b81526004016107089061214e565b61083e8383836112df565b60006108d183610af1565b82106109335760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610708565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610977610971600b546001600160a01b031690565b47611486565b565b61083e83838360405180602001604052806000815250610d96565b60606105fb826040518060400160405280600581526020016414d212549560da1b815250611085565b60006109c860085490565b8210610a2b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610708565b60088281548110610a3e57610a3e61219f565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610708565b60606105fb8260405180604001604052806006815260200165474c4f56455360d01b815250611085565b60006001600160a01b038216610b5c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610708565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610bd25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610708565b610977600061159f565b60606001805461061090612113565b60606105fb82604051806040016040528060048152602001631211505160e21b815250611085565b6000662386f26fc100006103e8610c2960085490565b610c3391906121e1565b610c3d91906121f5565b905090565b6002600a541415610c955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610708565b6002600a556000610ca4610c13565b905034610cb182846121f5565b14610ce95760405162461bcd60e51b81526020600482015260086024820152674e6565642070617960c01b6044820152606401610708565b60005b82811015610d2c576000610cff600c5490565b9050610d0f600c80546001019055565b610d1933826115f1565b5080610d2481612214565b915050610cec565b50506001600a5550565b610d4133838361160b565b5050565b60606105fb82604051806040016040528060048152602001632420a4a960e11b815250611085565b60606105fb826040518060400160405280600581526020016453484f455360d81b815250611085565b610da033836111e8565b610dbc5760405162461bcd60e51b81526004016107089061214e565b610dc8848484846116da565b50505050565b60606000610ddb83610ece565b610de48461086e565b610ded85610d45565b610df686610beb565b604051602001610e09949392919061224b565b604051602081830303815290604052905080610e2484610994565b610e2d85610843565b610e3686610ac7565b610e3f87610d6d565b604051602001610e53959493929190612b71565b60405160208183030381529060405290506000610ea0610e728561170d565b610e7b8461180b565b604051602001610e8c9291906130f3565b60405160208183030381529060405261180b565b9050600081604051602001610eb5919061322b565b60408051601f1981840301815291905295945050505050565b60606105fb826040518060400160405280600a815260200169109050d2d1d493d5539160b21b815250611085565b600b546001600160a01b03163314610f565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610708565b6001600160a01b038116610fbb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610708565b610fc48161159f565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ff857506001600160e01b03198216635b5e139f60e01b145b806105fb57506301ffc9a760e01b6001600160e01b03198316146105fb565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061104c82610a50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006110c5836110968661170d565b61109f87610a50565b6040516020016110b193929190613270565b60405160208183030381529060405261195f565b6040805160068082528183019092529192506000919060208201818036833701905050905060005b60038110156111df576f181899199a1a9b1b9c1cb0b131b232b360811b83600f166010811061111e5761111e61219f565b1a60f81b8261112e8360026121f5565b6111399060016132bb565b815181106111495761114961219f565b60200101906001600160f81b031916908160001a905350600483901c92506f181899199a1a9b1b9c1cb0b131b232b360811b83600f166010811061118f5761118f61219f565b1a60f81b8261119f8360026121f5565b815181106111af576111af61219f565b60200101906001600160f81b031916908160001a90535060049290921c91806111d781612214565b9150506110ed565b50949350505050565b6000818152600260205260408120546001600160a01b03166112615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610708565b600061126c83610a50565b9050806001600160a01b0316846001600160a01b031614806112a75750836001600160a01b031661129c84610693565b6001600160a01b0316145b806112d757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112f282610a50565b6001600160a01b0316146113565760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610708565b6001600160a01b0382166113b85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610708565b6113c3838383611990565b6113ce600082611017565b6001600160a01b03831660009081526003602052604081208054600192906113f79084906132d3565b90915550506001600160a01b03821660009081526003602052604081208054600192906114259084906132bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156114d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610708565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611523576040519150601f19603f3d011682016040523d82523d6000602084013e611528565b606091505b505090508061083e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610708565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d41828260405180602001604052806000815250611a48565b816001600160a01b0316836001600160a01b0316141561166d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610708565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116e58484846112df565b6116f184848484611a7b565b610dc85760405162461bcd60e51b8152600401610708906132ea565b6060816117315750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175b578061174581612214565b91506117549050600a836121e1565b9150611735565b60008167ffffffffffffffff81111561177657611776611fee565b6040519080825280601f01601f1916602001820160405280156117a0576020820181803683370190505b5090505b84156112d7576117b56001836132d3565b91506117c2600a8661333c565b6117cd9060306132bb565b60f81b8183815181106117e2576117e261219f565b60200101906001600160f81b031916908160001a905350611804600a866121e1565b94506117a4565b606081516000141561182b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016133dd604091399050600060038451600261185a91906132bb565b61186491906121e1565b61186f9060046121f5565b67ffffffffffffffff81111561188757611887611fee565b6040519080825280601f01601f1916602001820160405280156118b1576020820181803683370190505b509050600182016020820185865187015b8082101561191d576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506118c2565b5050600386510660018114611939576002811461194c57611954565b603d6001830353603d6002830353611954565b603d60018303535b509195945050505050565b6000816040516020016119729190613350565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166119eb576119e681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a0e565b816001600160a01b0316836001600160a01b031614611a0e57611a0e8382611b79565b6001600160a01b038216611a255761083e81611c16565b826001600160a01b0316826001600160a01b03161461083e5761083e8282611cc5565b611a528383611d09565b611a5f6000848484611a7b565b61083e5760405162461bcd60e51b8152600401610708906132ea565b60006001600160a01b0384163b15611b6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611abf90339089908890889060040161336c565b6020604051808303816000875af1925050508015611afa575060408051601f3d908101601f19168201909252611af7918101906133a9565b60015b611b54573d808015611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b508051611b4c5760405162461bcd60e51b8152600401610708906132ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d7565b506001949350505050565b60006001611b8684610af1565b611b9091906132d3565b600083815260076020526040902054909150808214611be3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c28906001906132d3565b60008381526009602052604081205460088054939450909284908110611c5057611c5061219f565b906000526020600020015490508060088381548110611c7157611c7161219f565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ca957611ca96133c6565b6001900381819060005260206000200160009055905550505050565b6000611cd083610af1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d5f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610708565b6000818152600260205260409020546001600160a01b031615611dc45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610708565b611dd060008383611990565b6001600160a01b0382166000908152600360205260408120805460019290611df99084906132bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610fc457600080fd5b600060208284031215611e7f57600080fd5b8135611e8a81611e57565b9392505050565b60005b83811015611eac578181015183820152602001611e94565b83811115610dc85750506000910152565b60008151808452611ed5816020860160208601611e91565b601f01601f19169290920160200192915050565b602081526000611e8a6020830184611ebd565b600060208284031215611f0e57600080fd5b5035919050565b80356001600160a01b0381168114611f2c57600080fd5b919050565b60008060408385031215611f4457600080fd5b611f4d83611f15565b946020939093013593505050565b600080600060608486031215611f7057600080fd5b611f7984611f15565b9250611f8760208501611f15565b9150604084013590509250925092565b600060208284031215611fa957600080fd5b611e8a82611f15565b60008060408385031215611fc557600080fd5b611fce83611f15565b915060208301358015158114611fe357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561201a57600080fd5b61202385611f15565b935061203160208601611f15565b925060408501359150606085013567ffffffffffffffff8082111561205557600080fd5b818701915087601f83011261206957600080fd5b81358181111561207b5761207b611fee565b604051601f8201601f19908116603f011681019083821181831017156120a3576120a3611fee565b816040528281528a60208487010111156120bc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120f357600080fd5b6120fc83611f15565b915061210a60208401611f15565b90509250929050565b600181811c9082168061212757607f821691505b6020821081141561214857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826121f0576121f06121b5565b500490565b600081600019048311821515161561220f5761220f6121cb565b500290565b6000600019821415612228576122286121cb565b5060010190565b60008151612241818560208601611e91565b9290920192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076657273696f6e3d22312e32222076696577426f783d223060208201527f2030203134203136223e3c706174682066696c6c3d22230000000000000000006040820152600085516122cf816057850160208a01611e91565b7f2220643d224d3020306831763148307a4d3120306831763148317a4d322030686057918401918201527f31763148327a4d3320306831763148337a4d3420306831763148347a4d35203060778201527f6831763148357a4d3620306831763148367a4d3720306831763148377a4d382060978201527f306831763148387a4d3920306831763148397a4d3130203068317631682d317a60b78201527f4d3131203068317631682d317a4d3132203068317631682d317a4d313320306860d78201527f317631682d317a4d3020316831763148307a4d3120316831763148317a4d322060f78201527f316831763148327a4d3320316831763148337a4d3920316831763148397a4d316101178201527f30203168317631682d317a4d3131203168317631682d317a4d313220316831766101378201527f31682d317a4d3133203168317631682d317a4d3020326831763148307a4d31206101578201527f326831763148317a4d3220326831763148327a4d3132203268317631682d317a6101778201527f4d3133203268317631682d317a4d3020336831763148307a4d312033683176316101978201527f48317a4d3220336831763148327a4d3130203368317631682d317a4d313120336101b78201527f68317631682d317a4d3132203368317631682d317a4d3133203368317631682d6101d78201527f317a4d3020346831763148307a4d3120346831763148317a4d313220346831766101f78201527f31682d317a4d3133203468317631682d317a4d3020356831763148307a4d31206102178201527f356831763148317a4d3133203568317631682d317a4d3020366831763148307a6102378201527f4d3120366831763148317a4d3132203668317631682d317a4d313320366831766102578201527f31682d317a4d3020376831763148307a4d3120376831763148317a4d322037686102778201527f31763148327a4d3320376831763148337a4d3131203768317631682d317a4d316102978201527f32203768317631682d317a4d3133203768317631682d317a4d302038683176316102b78201527f48307a4d3120386831763148317a4d3220386831763148327a4d3130203868316102d78201527f7631682d317a4d3131203868317631682d317a4d3132203868317631682d317a6102f78201527f4d3133203868317631682d317a4d3020396831763148307a4d312039683176316103178201527f48317a4d3132203968317631682d317a4d3133203968317631682d317a4d30206103378201527f31306831763148307a4d313320313068317631682d317a4d30203131683176316103578201527f48307a4d313320313168317631682d317a4d302031326831763148307a4d31336103778201527f20313268317631682d317a4d302031336831763148307a4d31332031336831766103978201527f31682d317a4d302031346831763148307a4d312031346831763148317a4d32206103b78201527f31346831763148327a4d362031346831763148367a4d372031346831763148376103d78201527f7a4d313120313468317631682d317a4d313220313468317631682d317a4d31336103f78201527f20313468317631682d317a4d302031356831763148307a4d31203135683176316104178201527f48317a4d352031356831763148357a4d362031356831763148367a4d372031356104378201527f6831763148377a4d382031356831763148387a4d313220313568317631682d316104578201527f7a4d313320313568317631682d317a222f3e3c706174682066696c6c3d222300610477820152612b66612b60612a49612a4361281561049686018b61222f565b7f2220643d224d3420316831763148347a4d3520316831763148357a4d3620316881527f31763148367a4d3720316831763148377a4d3820316831763148387a4d33203260208201527f6831763148337a4d3420326831763148347a4d3520326831763148357a4d362060408201527f326831763148367a4d3720326831763148377a4d3820326831763148387a4d3960608201527f20326831763148397a4d3130203268317631682d317a4d31312032683176316860808201527f2d317a4d3320386831763148337a4d3420386831763148347a4d36203868317660a08201527f3148367a4d3720386831763148377a4d3920386831763148397a4d322039683160c08201527f763148327a4d3320396831763148337a4d3420396831763148347a4d3620396860e08201527f31763148367a4d3720396831763148377a4d3920396831763148397a4d3130206101008201527f3968317631682d317a4d3131203968317631682d317a4d3120313068317631486101208201527f317a4d322031306831763148327a4d332031306831763148337a4d34203130686101408201527f31763148347a4d392031306831763148397a4d313020313068317631682d317a6101608201527f4d313120313068317631682d317a4d313220313068317631682d317a4d3320316101808201527f316831763148337a4d313020313168317631682d317a222f3e3c7061746820666101a082015265696c6c3d222360d01b6101c08201526101c60190565b8861222f565b7f2220643d224d3320336831763148337a4d3420336831763148347a4d3520336881527f31763148357a4d3820336831763148387a4d3220346831763148327a4d34203460208201527f6831763148347a4d3820346831763148387a4d3220356831763148327a4d342060408201527f356831763148347a4d3520356831763148357a4d3920356831763148397a4d3160608201527f32203568317631682d317a4d3220366831763148327a4d33203668317631483360808201527f7a4d3820366831763148387a4d3920366831763148397a4d313020366831763160a08201527f682d317a4d3131203668317631682d317a222f3e3c706174682066696c6c3d2260c0820152602360f81b60e082015260e10190565b8561222f565b979650505050505050565b60008651612b83818460208b01611e91565b7f2220643d224d3620336831763148367a4d3720336831763148377a4d392033689083019081527f31763148397a4d3320346831763148337a4d3520346831763148357a4d36203460208201527f6831763148367a4d3720346831763148377a4d3920346831763148397a4d313060408201527f203468317631682d317a4d3131203468317631682d317a4d332035683176314860608201527f337a4d3620356831763148367a4d3720356831763148377a4d3820356831763160808201527f48387a4d3130203568317631682d317a4d3131203568317631682d317a4d342060a08201527f366831763148347a4d3520366831763148357a4d3620366831763148367a4d3760c08201527f20366831763148377a4d3420376831763148347a4d3520376831763148357a4d60e08201527f3620376831763148367a4d3720376831763148377a4d3820376831763148387a6101008201527f4d3920376831763148397a4d3130203768317631682d317a222f3e3c70617468610120820152672066696c6c3d222360c01b6101408201526130e761307261306c612f71612f6b612f2c612f26612d3761014889018f61222f565b7f2220643d224d3520386831763148357a4d3820386831763148387a4d3520396881527f31763148357a4d3820396831763148387a4d352031306831763148357a4d362060208201527f31306831763148367a4d372031306831763148377a4d3820313068317631483860408201527f7a4d342031316831763148347a4d362031316831763148367a4d37203131683160608201527f763148377a4d392031316831763148397a4d342031326831763148347a4d352060808201527f31326831763148357a4d362031326831763148367a4d3720313268317631483760a08201527f7a4d382031326831763148387a4d392031326831763148397a4d33203133683160c08201527f763148337a4d342031336831763148347a4d352031336831763148357a4d362060e08201527f31336831763148367a4d372031336831763148377a4d382031336831763148386101008201527f7a4d392031336831763148397a4d313020313368317631682d317a4d332031346101208201527f6831763148337a4d342031346831763148347a4d352031346831763148357a4d6101408201527f382031346831763148387a4d392031346831763148397a4d31302031346831766101608201527431682d317a222f3e3c706174682066696c6c3d222360581b6101808201526101950190565b8c61222f565b7f2220643d224d352031316831763148357a4d382031316831763148387a222f3e81526c3c706174682066696c6c3d222360981b6020820152602d0190565b8961222f565b7f2220643d224d312031316831763148317a4d322031316831763148327a4d313181527f20313168317631682d317a4d313220313168317631682d317a4d31203132683160208201527f763148317a4d322031326831763148327a4d332031326831763148337a4d313060408201527f20313268317631682d317a4d313120313268317631682d317a4d31322031326860608201527f317631682d317a4d312031336831763148317a4d322031336831763148327a4d60808201527f313120313368317631682d317a4d313220313368317631682d317a222f3e3c7060a08201526a6174682066696c6c3d222360a81b60c082015260cb0190565b8661222f565b7f2220643d224d322031356831763148327a4d332031356831763148337a4d342081527f31356831763148347a4d392031356831763148397a4d3130203135683176316860208201527f2d317a4d313120313568317631682d317a222f3e3c2f7376673e0000000000006040820152605a0190565b98975050505050505050565b707b226e616d65223a20224d6172696f202360781b81528251600090613120816011850160208801611e91565b7f222c20226465736372697074696f6e223a2022506978656c53757065724d61726011918401918201527f696f2069732072616e646f6d697a6564206d6172696f2067656e65726174656460318201527f20616e642073746f726564206f6e20636861696e2e204665656c20667265652060518201527f746f2075736520506978656c53757065724d6172696f20696e20616e7920776160718201527f7920796f752077616e742e222c2022696d616765223a2022646174613a696d6160918201527119d94bdcdd99cade1b5b0ed8985cd94d8d0b60721b60b182015283516132108160c3840160208801611e91565b61227d60f01b60c3929091019182015260c501949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161326381601d850160208701611e91565b91909101601d0192915050565b60008451613282818460208901611e91565b845190830190613296818360208901611e91565b60609490941b6bffffffffffffffffffffffff19169301928352505060140192915050565b600082198211156132ce576132ce6121cb565b500190565b6000828210156132e5576132e56121cb565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261334b5761334b6121b5565b500690565b60008251613362818460208701611e91565b9190910192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339f90830184611ebd565b9695505050505050565b6000602082840312156133bb57600080fd5b8151611e8a81611e57565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212208b8ca37b18fd07b36d2e36db51cd346983f57943fdab24a0ef3e2bcdf8cabd2d64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a5c18ca611610095578063e8d887d311610064578063e8d887d314610532578063e985e9c514610552578063f2fde38b1461059b578063f86325ed146105bb57600080fd5b8063a5c18ca6146104b2578063a5f23e1d146104d2578063b88d4fde146104f2578063c87b56dd1461051257600080fd5b80639720c969116100d15780639720c9691461044a578063a035b1fe1461046a578063a0712d681461047f578063a22cb4651461049257600080fd5b806370a08231146103e2578063715018a6146104025780638da5cb5b1461041757806395d89b411461043557600080fd5b806323b872dd1161017a5780634c9c05ea116101495780634c9c05ea146103625780634f6ccce7146103825780636352211e146103a25780636b20c6d4146103c257600080fd5b806323b872dd146102ed5780632f745c591461030d5780633ccfd60b1461032d57806342842e0e1461034257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806314cec06a1461028e57806318160ddd146102ae5780632249c7c1146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e6d565b6105d6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610601565b6040516102099190611ee9565b34801561024057600080fd5b5061025461024f366004611efc565b610693565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611f31565b61072d565b005b34801561029a57600080fd5b506102276102a9366004611efc565b610843565b3480156102ba57600080fd5b506008545b604051908152602001610209565b3480156102d957600080fd5b506102276102e8366004611efc565b61086e565b3480156102f957600080fd5b5061028c610308366004611f5b565b610895565b34801561031957600080fd5b506102bf610328366004611f31565b6108c6565b34801561033957600080fd5b5061028c61095c565b34801561034e57600080fd5b5061028c61035d366004611f5b565b610979565b34801561036e57600080fd5b5061022761037d366004611efc565b610994565b34801561038e57600080fd5b506102bf61039d366004611efc565b6109bd565b3480156103ae57600080fd5b506102546103bd366004611efc565b610a50565b3480156103ce57600080fd5b506102276103dd366004611efc565b610ac7565b3480156103ee57600080fd5b506102bf6103fd366004611f97565b610af1565b34801561040e57600080fd5b5061028c610b78565b34801561042357600080fd5b50600b546001600160a01b0316610254565b34801561044157600080fd5b50610227610bdc565b34801561045657600080fd5b50610227610465366004611efc565b610beb565b34801561047657600080fd5b506102bf610c13565b61028c61048d366004611efc565b610c42565b34801561049e57600080fd5b5061028c6104ad366004611fb2565b610d36565b3480156104be57600080fd5b506102276104cd366004611efc565b610d45565b3480156104de57600080fd5b506102276104ed366004611efc565b610d6d565b3480156104fe57600080fd5b5061028c61050d366004612004565b610d96565b34801561051e57600080fd5b5061022761052d366004611efc565b610dce565b34801561053e57600080fd5b5061022761054d366004611efc565b610ece565b34801561055e57600080fd5b506101fd61056d3660046120e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a757600080fd5b5061028c6105b6366004611f97565b610efc565b3480156105c757600080fd5b506102bf662386f26fc1000081565b60006001600160e01b0319821663780e9d6360e01b14806105fb57506105fb82610fc7565b92915050565b60606000805461061090612113565b80601f016020809104026020016040519081016040528092919081815260200182805461063c90612113565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073882610a50565b9050806001600160a01b0316836001600160a01b031614156107a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610708565b336001600160a01b03821614806107c257506107c2813361056d565b6108345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610708565b61083e8383611017565b505050565b60606105fb8260405180604001604052806007815260200166425554544f4e5360c81b815250611085565b60606105fb826040518060400160405280600381526020016204341560ec1b815250611085565b61089f33826111e8565b6108bb5760405162461bcd60e51b81526004016107089061214e565b61083e8383836112df565b60006108d183610af1565b82106109335760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610708565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610977610971600b546001600160a01b031690565b47611486565b565b61083e83838360405180602001604052806000815250610d96565b60606105fb826040518060400160405280600581526020016414d212549560da1b815250611085565b60006109c860085490565b8210610a2b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610708565b60088281548110610a3e57610a3e61219f565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610708565b60606105fb8260405180604001604052806006815260200165474c4f56455360d01b815250611085565b60006001600160a01b038216610b5c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610708565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610bd25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610708565b610977600061159f565b60606001805461061090612113565b60606105fb82604051806040016040528060048152602001631211505160e21b815250611085565b6000662386f26fc100006103e8610c2960085490565b610c3391906121e1565b610c3d91906121f5565b905090565b6002600a541415610c955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610708565b6002600a556000610ca4610c13565b905034610cb182846121f5565b14610ce95760405162461bcd60e51b81526020600482015260086024820152674e6565642070617960c01b6044820152606401610708565b60005b82811015610d2c576000610cff600c5490565b9050610d0f600c80546001019055565b610d1933826115f1565b5080610d2481612214565b915050610cec565b50506001600a5550565b610d4133838361160b565b5050565b60606105fb82604051806040016040528060048152602001632420a4a960e11b815250611085565b60606105fb826040518060400160405280600581526020016453484f455360d81b815250611085565b610da033836111e8565b610dbc5760405162461bcd60e51b81526004016107089061214e565b610dc8848484846116da565b50505050565b60606000610ddb83610ece565b610de48461086e565b610ded85610d45565b610df686610beb565b604051602001610e09949392919061224b565b604051602081830303815290604052905080610e2484610994565b610e2d85610843565b610e3686610ac7565b610e3f87610d6d565b604051602001610e53959493929190612b71565b60405160208183030381529060405290506000610ea0610e728561170d565b610e7b8461180b565b604051602001610e8c9291906130f3565b60405160208183030381529060405261180b565b9050600081604051602001610eb5919061322b565b60408051601f1981840301815291905295945050505050565b60606105fb826040518060400160405280600a815260200169109050d2d1d493d5539160b21b815250611085565b600b546001600160a01b03163314610f565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610708565b6001600160a01b038116610fbb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610708565b610fc48161159f565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ff857506001600160e01b03198216635b5e139f60e01b145b806105fb57506301ffc9a760e01b6001600160e01b03198316146105fb565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061104c82610a50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006110c5836110968661170d565b61109f87610a50565b6040516020016110b193929190613270565b60405160208183030381529060405261195f565b6040805160068082528183019092529192506000919060208201818036833701905050905060005b60038110156111df576f181899199a1a9b1b9c1cb0b131b232b360811b83600f166010811061111e5761111e61219f565b1a60f81b8261112e8360026121f5565b6111399060016132bb565b815181106111495761114961219f565b60200101906001600160f81b031916908160001a905350600483901c92506f181899199a1a9b1b9c1cb0b131b232b360811b83600f166010811061118f5761118f61219f565b1a60f81b8261119f8360026121f5565b815181106111af576111af61219f565b60200101906001600160f81b031916908160001a90535060049290921c91806111d781612214565b9150506110ed565b50949350505050565b6000818152600260205260408120546001600160a01b03166112615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610708565b600061126c83610a50565b9050806001600160a01b0316846001600160a01b031614806112a75750836001600160a01b031661129c84610693565b6001600160a01b0316145b806112d757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112f282610a50565b6001600160a01b0316146113565760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610708565b6001600160a01b0382166113b85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610708565b6113c3838383611990565b6113ce600082611017565b6001600160a01b03831660009081526003602052604081208054600192906113f79084906132d3565b90915550506001600160a01b03821660009081526003602052604081208054600192906114259084906132bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156114d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610708565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611523576040519150601f19603f3d011682016040523d82523d6000602084013e611528565b606091505b505090508061083e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610708565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d41828260405180602001604052806000815250611a48565b816001600160a01b0316836001600160a01b0316141561166d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610708565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116e58484846112df565b6116f184848484611a7b565b610dc85760405162461bcd60e51b8152600401610708906132ea565b6060816117315750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175b578061174581612214565b91506117549050600a836121e1565b9150611735565b60008167ffffffffffffffff81111561177657611776611fee565b6040519080825280601f01601f1916602001820160405280156117a0576020820181803683370190505b5090505b84156112d7576117b56001836132d3565b91506117c2600a8661333c565b6117cd9060306132bb565b60f81b8183815181106117e2576117e261219f565b60200101906001600160f81b031916908160001a905350611804600a866121e1565b94506117a4565b606081516000141561182b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016133dd604091399050600060038451600261185a91906132bb565b61186491906121e1565b61186f9060046121f5565b67ffffffffffffffff81111561188757611887611fee565b6040519080825280601f01601f1916602001820160405280156118b1576020820181803683370190505b509050600182016020820185865187015b8082101561191d576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506118c2565b5050600386510660018114611939576002811461194c57611954565b603d6001830353603d6002830353611954565b603d60018303535b509195945050505050565b6000816040516020016119729190613350565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166119eb576119e681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a0e565b816001600160a01b0316836001600160a01b031614611a0e57611a0e8382611b79565b6001600160a01b038216611a255761083e81611c16565b826001600160a01b0316826001600160a01b03161461083e5761083e8282611cc5565b611a528383611d09565b611a5f6000848484611a7b565b61083e5760405162461bcd60e51b8152600401610708906132ea565b60006001600160a01b0384163b15611b6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611abf90339089908890889060040161336c565b6020604051808303816000875af1925050508015611afa575060408051601f3d908101601f19168201909252611af7918101906133a9565b60015b611b54573d808015611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b508051611b4c5760405162461bcd60e51b8152600401610708906132ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d7565b506001949350505050565b60006001611b8684610af1565b611b9091906132d3565b600083815260076020526040902054909150808214611be3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c28906001906132d3565b60008381526009602052604081205460088054939450909284908110611c5057611c5061219f565b906000526020600020015490508060088381548110611c7157611c7161219f565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ca957611ca96133c6565b6001900381819060005260206000200160009055905550505050565b6000611cd083610af1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d5f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610708565b6000818152600260205260409020546001600160a01b031615611dc45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610708565b611dd060008383611990565b6001600160a01b0382166000908152600360205260408120805460019290611df99084906132bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610fc457600080fd5b600060208284031215611e7f57600080fd5b8135611e8a81611e57565b9392505050565b60005b83811015611eac578181015183820152602001611e94565b83811115610dc85750506000910152565b60008151808452611ed5816020860160208601611e91565b601f01601f19169290920160200192915050565b602081526000611e8a6020830184611ebd565b600060208284031215611f0e57600080fd5b5035919050565b80356001600160a01b0381168114611f2c57600080fd5b919050565b60008060408385031215611f4457600080fd5b611f4d83611f15565b946020939093013593505050565b600080600060608486031215611f7057600080fd5b611f7984611f15565b9250611f8760208501611f15565b9150604084013590509250925092565b600060208284031215611fa957600080fd5b611e8a82611f15565b60008060408385031215611fc557600080fd5b611fce83611f15565b915060208301358015158114611fe357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561201a57600080fd5b61202385611f15565b935061203160208601611f15565b925060408501359150606085013567ffffffffffffffff8082111561205557600080fd5b818701915087601f83011261206957600080fd5b81358181111561207b5761207b611fee565b604051601f8201601f19908116603f011681019083821181831017156120a3576120a3611fee565b816040528281528a60208487010111156120bc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120f357600080fd5b6120fc83611f15565b915061210a60208401611f15565b90509250929050565b600181811c9082168061212757607f821691505b6020821081141561214857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826121f0576121f06121b5565b500490565b600081600019048311821515161561220f5761220f6121cb565b500290565b6000600019821415612228576122286121cb565b5060010190565b60008151612241818560208601611e91565b9290920192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076657273696f6e3d22312e32222076696577426f783d223060208201527f2030203134203136223e3c706174682066696c6c3d22230000000000000000006040820152600085516122cf816057850160208a01611e91565b7f2220643d224d3020306831763148307a4d3120306831763148317a4d322030686057918401918201527f31763148327a4d3320306831763148337a4d3420306831763148347a4d35203060778201527f6831763148357a4d3620306831763148367a4d3720306831763148377a4d382060978201527f306831763148387a4d3920306831763148397a4d3130203068317631682d317a60b78201527f4d3131203068317631682d317a4d3132203068317631682d317a4d313320306860d78201527f317631682d317a4d3020316831763148307a4d3120316831763148317a4d322060f78201527f316831763148327a4d3320316831763148337a4d3920316831763148397a4d316101178201527f30203168317631682d317a4d3131203168317631682d317a4d313220316831766101378201527f31682d317a4d3133203168317631682d317a4d3020326831763148307a4d31206101578201527f326831763148317a4d3220326831763148327a4d3132203268317631682d317a6101778201527f4d3133203268317631682d317a4d3020336831763148307a4d312033683176316101978201527f48317a4d3220336831763148327a4d3130203368317631682d317a4d313120336101b78201527f68317631682d317a4d3132203368317631682d317a4d3133203368317631682d6101d78201527f317a4d3020346831763148307a4d3120346831763148317a4d313220346831766101f78201527f31682d317a4d3133203468317631682d317a4d3020356831763148307a4d31206102178201527f356831763148317a4d3133203568317631682d317a4d3020366831763148307a6102378201527f4d3120366831763148317a4d3132203668317631682d317a4d313320366831766102578201527f31682d317a4d3020376831763148307a4d3120376831763148317a4d322037686102778201527f31763148327a4d3320376831763148337a4d3131203768317631682d317a4d316102978201527f32203768317631682d317a4d3133203768317631682d317a4d302038683176316102b78201527f48307a4d3120386831763148317a4d3220386831763148327a4d3130203868316102d78201527f7631682d317a4d3131203868317631682d317a4d3132203868317631682d317a6102f78201527f4d3133203868317631682d317a4d3020396831763148307a4d312039683176316103178201527f48317a4d3132203968317631682d317a4d3133203968317631682d317a4d30206103378201527f31306831763148307a4d313320313068317631682d317a4d30203131683176316103578201527f48307a4d313320313168317631682d317a4d302031326831763148307a4d31336103778201527f20313268317631682d317a4d302031336831763148307a4d31332031336831766103978201527f31682d317a4d302031346831763148307a4d312031346831763148317a4d32206103b78201527f31346831763148327a4d362031346831763148367a4d372031346831763148376103d78201527f7a4d313120313468317631682d317a4d313220313468317631682d317a4d31336103f78201527f20313468317631682d317a4d302031356831763148307a4d31203135683176316104178201527f48317a4d352031356831763148357a4d362031356831763148367a4d372031356104378201527f6831763148377a4d382031356831763148387a4d313220313568317631682d316104578201527f7a4d313320313568317631682d317a222f3e3c706174682066696c6c3d222300610477820152612b66612b60612a49612a4361281561049686018b61222f565b7f2220643d224d3420316831763148347a4d3520316831763148357a4d3620316881527f31763148367a4d3720316831763148377a4d3820316831763148387a4d33203260208201527f6831763148337a4d3420326831763148347a4d3520326831763148357a4d362060408201527f326831763148367a4d3720326831763148377a4d3820326831763148387a4d3960608201527f20326831763148397a4d3130203268317631682d317a4d31312032683176316860808201527f2d317a4d3320386831763148337a4d3420386831763148347a4d36203868317660a08201527f3148367a4d3720386831763148377a4d3920386831763148397a4d322039683160c08201527f763148327a4d3320396831763148337a4d3420396831763148347a4d3620396860e08201527f31763148367a4d3720396831763148377a4d3920396831763148397a4d3130206101008201527f3968317631682d317a4d3131203968317631682d317a4d3120313068317631486101208201527f317a4d322031306831763148327a4d332031306831763148337a4d34203130686101408201527f31763148347a4d392031306831763148397a4d313020313068317631682d317a6101608201527f4d313120313068317631682d317a4d313220313068317631682d317a4d3320316101808201527f316831763148337a4d313020313168317631682d317a222f3e3c7061746820666101a082015265696c6c3d222360d01b6101c08201526101c60190565b8861222f565b7f2220643d224d3320336831763148337a4d3420336831763148347a4d3520336881527f31763148357a4d3820336831763148387a4d3220346831763148327a4d34203460208201527f6831763148347a4d3820346831763148387a4d3220356831763148327a4d342060408201527f356831763148347a4d3520356831763148357a4d3920356831763148397a4d3160608201527f32203568317631682d317a4d3220366831763148327a4d33203668317631483360808201527f7a4d3820366831763148387a4d3920366831763148397a4d313020366831763160a08201527f682d317a4d3131203668317631682d317a222f3e3c706174682066696c6c3d2260c0820152602360f81b60e082015260e10190565b8561222f565b979650505050505050565b60008651612b83818460208b01611e91565b7f2220643d224d3620336831763148367a4d3720336831763148377a4d392033689083019081527f31763148397a4d3320346831763148337a4d3520346831763148357a4d36203460208201527f6831763148367a4d3720346831763148377a4d3920346831763148397a4d313060408201527f203468317631682d317a4d3131203468317631682d317a4d332035683176314860608201527f337a4d3620356831763148367a4d3720356831763148377a4d3820356831763160808201527f48387a4d3130203568317631682d317a4d3131203568317631682d317a4d342060a08201527f366831763148347a4d3520366831763148357a4d3620366831763148367a4d3760c08201527f20366831763148377a4d3420376831763148347a4d3520376831763148357a4d60e08201527f3620376831763148367a4d3720376831763148377a4d3820376831763148387a6101008201527f4d3920376831763148397a4d3130203768317631682d317a222f3e3c70617468610120820152672066696c6c3d222360c01b6101408201526130e761307261306c612f71612f6b612f2c612f26612d3761014889018f61222f565b7f2220643d224d3520386831763148357a4d3820386831763148387a4d3520396881527f31763148357a4d3820396831763148387a4d352031306831763148357a4d362060208201527f31306831763148367a4d372031306831763148377a4d3820313068317631483860408201527f7a4d342031316831763148347a4d362031316831763148367a4d37203131683160608201527f763148377a4d392031316831763148397a4d342031326831763148347a4d352060808201527f31326831763148357a4d362031326831763148367a4d3720313268317631483760a08201527f7a4d382031326831763148387a4d392031326831763148397a4d33203133683160c08201527f763148337a4d342031336831763148347a4d352031336831763148357a4d362060e08201527f31336831763148367a4d372031336831763148377a4d382031336831763148386101008201527f7a4d392031336831763148397a4d313020313368317631682d317a4d332031346101208201527f6831763148337a4d342031346831763148347a4d352031346831763148357a4d6101408201527f382031346831763148387a4d392031346831763148397a4d31302031346831766101608201527431682d317a222f3e3c706174682066696c6c3d222360581b6101808201526101950190565b8c61222f565b7f2220643d224d352031316831763148357a4d382031316831763148387a222f3e81526c3c706174682066696c6c3d222360981b6020820152602d0190565b8961222f565b7f2220643d224d312031316831763148317a4d322031316831763148327a4d313181527f20313168317631682d317a4d313220313168317631682d317a4d31203132683160208201527f763148317a4d322031326831763148327a4d332031326831763148337a4d313060408201527f20313268317631682d317a4d313120313268317631682d317a4d31322031326860608201527f317631682d317a4d312031336831763148317a4d322031336831763148327a4d60808201527f313120313368317631682d317a4d313220313368317631682d317a222f3e3c7060a08201526a6174682066696c6c3d222360a81b60c082015260cb0190565b8661222f565b7f2220643d224d322031356831763148327a4d332031356831763148337a4d342081527f31356831763148347a4d392031356831763148397a4d3130203135683176316860208201527f2d317a4d313120313568317631682d317a222f3e3c2f7376673e0000000000006040820152605a0190565b98975050505050505050565b707b226e616d65223a20224d6172696f202360781b81528251600090613120816011850160208801611e91565b7f222c20226465736372697074696f6e223a2022506978656c53757065724d61726011918401918201527f696f2069732072616e646f6d697a6564206d6172696f2067656e65726174656460318201527f20616e642073746f726564206f6e20636861696e2e204665656c20667265652060518201527f746f2075736520506978656c53757065724d6172696f20696e20616e7920776160718201527f7920796f752077616e742e222c2022696d616765223a2022646174613a696d6160918201527119d94bdcdd99cade1b5b0ed8985cd94d8d0b60721b60b182015283516132108160c3840160208801611e91565b61227d60f01b60c3929091019182015260c501949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161326381601d850160208701611e91565b91909101601d0192915050565b60008451613282818460208901611e91565b845190830190613296818360208901611e91565b60609490941b6bffffffffffffffffffffffff19169301928352505060140192915050565b600082198211156132ce576132ce6121cb565b500190565b6000828210156132e5576132e56121cb565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261334b5761334b6121b5565b500690565b60008251613362818460208701611e91565b9190910192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339f90830184611ebd565b9695505050505050565b6000602082840312156133bb57600080fd5b8151611e8a81611e57565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212208b8ca37b18fd07b36d2e36db51cd346983f57943fdab24a0ef3e2bcdf8cabd2d64736f6c634300080c0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.