ETH Price: $2,462.32 (-4.22%)
Gas: 1.41 Gwei

Token

Synthetic Runners (SYNTHRUN)
 

Overview

Max Total Supply

1 SYNTHRUN

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
kainar.eth
Balance
1 SYNTHRUN
0x1315DBcfDCA454D3c789904d736E2d71cafbd70b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SyntheticRunners

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion
File 1 of 21 : SyntheticRunners.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import {ERC721, IERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {DerivedRunner, DerivedRunnerConfig} from "./shared/DerivedRunner.sol";
import {CreatorConfig} from "./shared/Creator.sol";
import {FeeableConfig} from "./shared/Feeable.sol";

contract SyntheticRunners is DerivedRunner {
    constructor(
        DerivedRunnerConfig memory derivedRunnerConfig,
        CreatorConfig memory creatorConfig,
        FeeableConfig memory feeableConfig
    ) ERC721("Synthetic Runners", "SYNTHRUN") {
        initialize(derivedRunnerConfig, creatorConfig, feeableConfig);
    }
}

File 2 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

File 3 of 21 : DerivedRunner.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import {
    ERC721Enumerable,
    IERC721Enumerable
} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {
    ReentrancyGuard
} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {Counters} from "@openzeppelin/contracts/utils/Counters.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {Creator, CreatorConfig} from "./Creator.sol";
import {Feeable, FeeableConfig} from "./Feeable.sol";

struct DerivedRunnerConfig {
    address chainRunnersContractAddress;
    string contractURI;
    uint256 numTokens;
    uint256 mintPrice;
    uint256 mintStartTimestamp;
}

abstract contract DerivedRunner is
    ERC721Enumerable,
    Ownable,
    Creator,
    Feeable,
    ReentrancyGuard
{
    DerivedRunnerConfig public _derivedRunnerConfig;

    // This must be equal to MAX_RUNNERS on ChainRunners.sol.
    uint256 private constant MAX_RUNNERS = 10000;

    using Strings for uint256;
    mapping(uint256 => string) private _tokenURIs;

    using Counters for Counters.Counter;
    Counters.Counter private _numMintedTokens;

    modifier derivedRunnerConfigSet() {
        require(
            _derivedRunnerConfig.chainRunnersContractAddress != address(0),
            "DerivedRunner: chainRunnersContractAddress not set"
        );
        require(
            bytes(_derivedRunnerConfig.contractURI).length != 0,
            "DerivedRunner: contractURI not set"
        );
        require(
            _derivedRunnerConfig.numTokens > 0,
            "DerivedRunner: numTokens not set"
        );
        require(
            _derivedRunnerConfig.mintPrice > 0,
            "DerivedRunner: mintPrice not set"
        );
        require(
            _derivedRunnerConfig.mintStartTimestamp > 0,
            "DerivedRunner: mintPrice not set"
        );
        _;
    }

    modifier onlyRunnerOwner(uint256 runnerId) {
        require(
            0 < runnerId && runnerId <= MAX_RUNNERS,
            "DerivedRunner: invalid runnerId"
        );
        IERC721Enumerable chainRunners = ERC721Enumerable(
            _derivedRunnerConfig.chainRunnersContractAddress
        );
        address owner = chainRunners.ownerOf(runnerId);
        require(msg.sender == owner, "DerivedRunner: not owner of runnerId");

        _;
    }

    modifier onlyOwnerOrCreator() {
        require(
            msg.sender == owner() ||
                msg.sender == _creatorConfig.creatorWalletAddress,
            "DerivedRunner: not owner or creator"
        );
        _;
    }

    function initialize(
        DerivedRunnerConfig memory derivedRunnerConfig,
        CreatorConfig memory creatorConfig,
        FeeableConfig memory feeableConfig
    ) internal {
        _derivedRunnerConfig = derivedRunnerConfig;
        _feeableConfig = feeableConfig;
        _creatorConfig = creatorConfig;
    }

    function mintToAddress(
        address to,
        uint256 runnerId,
        string memory _tokenURI
    ) internal {
        uint256 numMintedTokens = _numMintedTokens.current();
        require(
            numMintedTokens < _derivedRunnerConfig.numTokens,
            "DerivedRunner: all tokens have been minted"
        );
        require(
            block.timestamp >= _derivedRunnerConfig.mintStartTimestamp,
            "DerivedRunner: minting has not begun"
        );

        _safeMint(to, runnerId);
        _setTokenURI(runnerId, _tokenURI);
        _numMintedTokens.increment();
    }

    function mintAndRelease(uint256 runnerId, string memory _tokenURI)
        external
        payable
    {
        mint(runnerId, _tokenURI);
        sealTokenForCreator(runnerId);
    }

    function mint(uint256 runnerId, string memory _tokenURI)
        public
        payable
        onlyRunnerOwner(runnerId)
        nonReentrant
    {
        require(
            msg.value == _derivedRunnerConfig.mintPrice,
            "DerivedRunner: incorrect ETH amount"
        );

        uint256 creatorAmount = deductFees(msg.value);
        payCreator(creatorAmount);

        mintToAddress(msg.sender, runnerId, _tokenURI);
    }

    function release(uint256 runnerId, string memory _tokenURI)
        external
        onlyOwnerOrCreator
        creatorCanUpdateToken(runnerId)
        nonReentrant
    {
        _setTokenURI(runnerId, _tokenURI);
        sealTokenForCreator(runnerId);
    }

    function airdrop(
        address[] memory addresses,
        uint256[] memory runnerIds,
        string[] memory tokenURIs
    ) external onlyOwnerOrCreator nonReentrant {
        require(
            addresses.length == runnerIds.length &&
                addresses.length == tokenURIs.length,
            "DerivedRunner: length mismatch"
        );

        for (uint32 i = 0; i < addresses.length; i++) {
            address to = addresses[i];
            uint256 runnerId = runnerIds[i];
            string memory _tokenURI = tokenURIs[i];

            mintToAddress(to, runnerId, _tokenURI);
        }
    }

    function updateNumTokens(uint256 numTokens)
        external
        onlyOwnerOrCreator
        nonReentrant
    {
        require(
            numTokens > _derivedRunnerConfig.numTokens,
            "DerivedRunners: can only increase numTokens"
        );
        require(
            numTokens <= MAX_RUNNERS,
            "DerivedRunners: can not mint more than MAX_RUNNERS"
        );

        _derivedRunnerConfig.numTokens = numTokens;
    }

    function getNumTokens() external view returns (uint256) {
        return _derivedRunnerConfig.numTokens;
    }

    receive() external payable {}

    // OpenSea

    function contractURI() public view returns (string memory) {
        return _derivedRunnerConfig.contractURI;
    }

    // The following is copied from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721URIStorage.sol
    // since we can't inherit from both ERC721Enumerable & ERC721URIStorage on the same contract.

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        return _tokenURI;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        require(
            bytes(_tokenURI).length != 0,
            "DerivedRunner: invalid tokenURI"
        );

        _tokenURIs[tokenId] = _tokenURI;
    }

    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 21 : Creator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {SafeTransfer} from "./SafeTransfer.sol";

struct CreatorConfig {
    address payable creatorWalletAddress;
    address wethAddress;
}

abstract contract Creator is SafeTransfer {
    CreatorConfig public _creatorConfig;

    mapping(uint256 => bool) private _creatorSealedTokens;

    modifier creatorConfigSet() {
        require(
            _creatorConfig.creatorWalletAddress != address(0),
            "Creator: _creatorConfig not set"
        );
        _;
    }

    modifier creatorCanUpdateToken(uint256 tokenId) {
        require(
            msg.sender != _creatorConfig.creatorWalletAddress ||
                !_creatorSealedTokens[tokenId],
            "Creator: tokenId is sealed"
        );
        _;
    }

    function payCreator(uint256 amount) internal creatorConfigSet {
        safeTransferETH(
            _creatorConfig.wethAddress,
            _creatorConfig.creatorWalletAddress,
            amount
        );
    }

    function sealTokenForCreator(uint256 tokenId) internal creatorConfigSet {
        _creatorSealedTokens[tokenId] = true;
    }
}

File 5 of 21 : Feeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import {Address} from "@openzeppelin/contracts/utils/Address.sol";

struct FeeableConfig {
    address payable treasuryWalletAddress;
    uint256 feeBps;
}

abstract contract Feeable {
    FeeableConfig public _feeableConfig;

    modifier feeableConfigSet() {
        require(
            _feeableConfig.treasuryWalletAddress != address(0),
            "Feeable: _feeableConfig not set"
        );
        _;
    }

    function deductFees(uint256 amount)
        internal
        feeableConfigSet
        returns (uint256)
    {
        uint256 feeAmount = (amount * _feeableConfig.feeBps) / 10000;
        Address.sendValue(_feeableConfig.treasuryWalletAddress, feeAmount);
        return amount - feeAmount;
    }
}

File 6 of 21 : 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 7 of 21 : 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 8 of 21 : 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 9 of 21 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 10 of 21 : 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 11 of 21 : 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 12 of 21 : 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 13 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 14 of 21 : 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 15 of 21 : 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 16 of 21 : 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 17 of 21 : 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 18 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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 19 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 20 of 21 : SafeTransfer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {IWETH} from "../interface/IWETH.sol";

abstract contract SafeTransfer {
    // The following song-and-dance is needed to avoid a DoS attack.
    // Read more: https://medium.com/northwest-nfts/how-to-safely-push-payments-in-smart-contracts-nouns-dao-and-ethernauts-king-challenge-584feca283d4
    function safeTransferETH(
        address wethAddress,
        address to,
        uint256 amount
    ) internal {
        require(wethAddress != address(0), "Creator: wethAddress not set");

        if (amount == 0) {
            return;
        }

        (bool success, ) = to.call{value: amount, gas: 30000}(new bytes(0));
        if (success) {
            return;
        }

        IWETH(wethAddress).deposit{value: amount}();
        IERC20(wethAddress).transfer(to, amount);
    }
}

File 21 of 21 : IWETH.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

interface IWETH {
    function deposit() external payable;

    function withdraw(uint256 value) external;

    function transfer(address to, uint256 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"address","name":"chainRunnersContractAddress","type":"address"},{"internalType":"string","name":"contractURI","type":"string"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"mintStartTimestamp","type":"uint256"}],"internalType":"struct DerivedRunnerConfig","name":"derivedRunnerConfig","type":"tuple"},{"components":[{"internalType":"address payable","name":"creatorWalletAddress","type":"address"},{"internalType":"address","name":"wethAddress","type":"address"}],"internalType":"struct CreatorConfig","name":"creatorConfig","type":"tuple"},{"components":[{"internalType":"address payable","name":"treasuryWalletAddress","type":"address"},{"internalType":"uint256","name":"feeBps","type":"uint256"}],"internalType":"struct FeeableConfig","name":"feeableConfig","type":"tuple"}],"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":"_creatorConfig","outputs":[{"internalType":"address payable","name":"creatorWalletAddress","type":"address"},{"internalType":"address","name":"wethAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_derivedRunnerConfig","outputs":[{"internalType":"address","name":"chainRunnersContractAddress","type":"address"},{"internalType":"string","name":"contractURI","type":"string"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"mintStartTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeableConfig","outputs":[{"internalType":"address payable","name":"treasuryWalletAddress","type":"address"},{"internalType":"uint256","name":"feeBps","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"runnerIds","type":"uint256[]"},{"internalType":"string[]","name":"tokenURIs","type":"string[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"runnerId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"runnerId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mintAndRelease","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"runnerId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"release","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"updateNumTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200389b3803806200389b8339810160408190526200003491620003bf565b604080518082018252601181527053796e7468657469632052756e6e65727360781b60208083019182528351808501909452600884526729aca72a24292aa760c11b9084015281519192916200008d91600091620001de565b508051620000a3906001906020840190620001de565b505050620000c0620000ba620000db60201b60201c565b620000df565b6001601055620000d283838362000131565b50505062000545565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8251601180546001600160a01b0319166001600160a01b0390921691909117815560208085015180518693926200016e92601292910190620001de565b5060408201516002820155606082015160038201556080909101516004909101558051600e80546001600160a01b03199081166001600160a01b0393841617909155602092830151600f558351600b805483169184169190911790559290910151600c8054909316911617905550565b828054620001ec9062000508565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620002bf57620002bf62000284565b60405290565b60405160a081016001600160401b0381118282101715620002bf57620002bf62000284565b604051601f8201601f191681016001600160401b038111828210171562000315576200031562000284565b604052919050565b6001600160a01b03811681146200033357600080fd5b50565b6000604082840312156200034957600080fd5b620003536200029a565b9050815162000362816200031d565b8152602082015162000374816200031d565b602082015292915050565b6000604082840312156200039257600080fd5b6200039c6200029a565b90508151620003ab816200031d565b808252506020820151602082015292915050565b600080600060a08486031215620003d557600080fd5b83516001600160401b0380821115620003ed57600080fd5b9085019060a082880312156200040257600080fd5b6200040c620002c5565b825162000419816200031d565b8152602083810151838111156200042f57600080fd5b8401601f81018a136200044157600080fd5b80518481111562000456576200045662000284565b6200046a601f8201601f19168401620002ea565b94508085528a838284010111156200048157600080fd5b60005b81811015620004a157828101840151868201850152830162000484565b81811115620004b35760008483880101525b5050508281830152604084015160408301526060840151606083015260808401516080830152819650620004ea89828a0162000336565b955050505050620004ff85606086016200037f565b90509250925092565b600181811c908216806200051d57607f821691505b602082108114156200053f57634e487b7160e01b600052602260045260246000fd5b50919050565b61334680620005556000396000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e0626f7e11610064578063e0626f7e14610535578063e8a3d48514610555578063e985e9c51461056a578063f2fde38b146105b357600080fd5b8063b88d4fde146104cd578063c87b56dd146104ed578063cd2ed8fb1461050d578063dc2057d31461052257600080fd5b80638da5cb5b116100d15780638da5cb5b1461043757806395d89b41146104555780639f2f18891461046a578063a22cb465146104ad57600080fd5b8063715018a6146103c857806377097fc8146103dd5780637e49fc5e146103f057600080fd5b80633fc3fa1b116101645780634f6ccce71161013e5780634f6ccce714610348578063537defd3146103685780636352211e1461038857806370a08231146103a857600080fd5b80633fc3fa1b146102e257806342842e0e14610308578063443cc4991461032857600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed366004612b2d565b6105d3565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61062f565b6040516101fe9190612ba2565b34801561023557600080fd5b50610249610244366004612bb5565b6106c1565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004612be3565b61076c565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004612c0f565b61089e565b3480156102ce57600080fd5b506102946102dd366004612be3565b610925565b3480156102ee57600080fd5b506102f76109cd565b6040516101fe959493929190612c50565b34801561031457600080fd5b50610281610323366004612c0f565b610a80565b34801561033457600080fd5b50610281610343366004612e76565b610a9b565b34801561035457600080fd5b50610294610363366004612bb5565b610c90565b34801561037457600080fd5b50610281610383366004612bb5565b610d34565b34801561039457600080fd5b506102496103a3366004612bb5565b610f1a565b3480156103b457600080fd5b506102946103c3366004612f5c565b610fa5565b3480156103d457600080fd5b5061028161103f565b6102816103eb366004612f79565b6110a5565b3480156103fc57600080fd5b50600b54600c54610417916001600160a01b03908116911682565b604080516001600160a01b039384168152929091166020830152016101fe565b34801561044357600080fd5b50600a546001600160a01b0316610249565b34801561046157600080fd5b5061021c61131a565b34801561047657600080fd5b50600e54600f5461048e916001600160a01b03169082565b604080516001600160a01b0390931683526020830191909152016101fe565b3480156104b957600080fd5b506102816104c8366004612fce565b611329565b3480156104d957600080fd5b506102816104e8366004613007565b611338565b3480156104f957600080fd5b5061021c610508366004612bb5565b6113c6565b34801561051957600080fd5b50601354610294565b610281610530366004612f79565b6114f2565b34801561054157600080fd5b50610281610550366004612f79565b611505565b34801561056157600080fd5b5061021c611686565b34801561057657600080fd5b506101f2610585366004613087565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105bf57600080fd5b506102816105ce366004612f5c565b611698565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061062957506106298261177a565b92915050565b60606000805461063e906130b5565b80601f016020809104026020016040519081016040528092919081815260200182805461066a906130b5565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077782610f1a565b9050806001600160a01b0316836001600160a01b031614156108015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610747565b336001600160a01b038216148061081d575061081d8133610585565b61088f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610747565b610899838361185d565b505050565b6108a833826118e3565b61091a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610747565b6108998383836119eb565b600061093083610fa5565b82106109a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610747565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60118054601280546001600160a01b0390921692916109eb906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a17906130b5565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050908060020154908060030154908060040154905085565b61089983838360405180602001604052806000815250611338565b600a546001600160a01b0316331480610abe5750600b546001600160a01b031633145b610b305760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a206e6f74206f776e6572206f72206372656160448201527f746f7200000000000000000000000000000000000000000000000000000000006064820152608401610747565b60026010541415610b835760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b600260105581518351148015610b9a575080518351145b610be65760405162461bcd60e51b815260206004820152601e60248201527f4465726976656452756e6e65723a206c656e677468206d69736d6174636800006044820152606401610747565b60005b83518163ffffffff161015610c85576000848263ffffffff1681518110610c1257610c12613109565b602002602001015190506000848363ffffffff1681518110610c3657610c36613109565b602002602001015190506000848463ffffffff1681518110610c5a57610c5a613109565b60200260200101519050610c6f838383611bdb565b5050508080610c7d90613167565b915050610be9565b505060016010555050565b6000610c9b60085490565b8210610d0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610747565b60088281548110610d2257610d22613109565b90600052602060002001549050919050565b600a546001600160a01b0316331480610d575750600b546001600160a01b031633145b610dc95760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a206e6f74206f776e6572206f72206372656160448201527f746f7200000000000000000000000000000000000000000000000000000000006064820152608401610747565b60026010541415610e1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b60026010556013548111610e985760405162461bcd60e51b815260206004820152602b60248201527f4465726976656452756e6e6572733a2063616e206f6e6c7920696e637265617360448201527f65206e756d546f6b656e730000000000000000000000000000000000000000006064820152608401610747565b612710811115610f105760405162461bcd60e51b815260206004820152603260248201527f4465726976656452756e6e6572733a2063616e206e6f74206d696e74206d6f7260448201527f65207468616e204d41585f52554e4e45525300000000000000000000000000006064820152608401610747565b6013556001601055565b6000818152600260205260408120546001600160a01b0316806106295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610747565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610747565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610747565b6110a36000611cf9565b565b818060001080156110b857506127108111155b6111045760405162461bcd60e51b815260206004820152601f60248201527f4465726976656452756e6e65723a20696e76616c69642072756e6e65724964006044820152606401610747565b6011546040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03909116906000908290636352211e9060240160206040518083038186803b15801561116657600080fd5b505afa15801561117a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119e919061318b565b9050336001600160a01b0382161461121d5760405162461bcd60e51b8152602060048201526024808201527f4465726976656452756e6e65723a206e6f74206f776e6572206f662072756e6e60448201527f65724964000000000000000000000000000000000000000000000000000000006064820152608401610747565b600260105414156112705760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b600260105560145434146112ec5760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a20696e636f72726563742045544820616d6f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610747565b60006112f734611d63565b905061130281611e06565b61130d338787611bdb565b5050600160105550505050565b60606001805461063e906130b5565b611334338383611e7b565b5050565b61134233836118e3565b6113b45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610747565b6113c084848484611f68565b50505050565b6000818152600260205260409020546060906001600160a01b03166114535760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610747565b6000828152601660205260408120805461146c906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611498906130b5565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b5093979650505050505050565b6114fc82826110a5565b61133482611ff1565b600a546001600160a01b03163314806115285750600b546001600160a01b031633145b61159a5760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a206e6f74206f776e6572206f72206372656160448201527f746f7200000000000000000000000000000000000000000000000000000000006064820152608401610747565b600b5482906001600160a01b0316331415806115c557506000818152600d602052604090205460ff16155b6116115760405162461bcd60e51b815260206004820152601a60248201527f43726561746f723a20746f6b656e4964206973207365616c65640000000000006044820152606401610747565b600260105414156116645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b60026010556116738383612082565b61167c83611ff1565b5050600160105550565b60606011600101805461063e906130b5565b600a546001600160a01b031633146116f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610747565b6001600160a01b03811661176e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610747565b61177781611cf9565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061180d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061062957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610629565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906118aa82610f1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661196d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610747565b600061197883610f1a565b9050806001600160a01b0316846001600160a01b031614806119b35750836001600160a01b03166119a8846106c1565b6001600160a01b0316145b806119e357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119fe82610f1a565b6001600160a01b031614611a7a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610747565b6001600160a01b038216611af55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610747565b611b00838383612179565b611b0b60008261185d565b6001600160a01b0383166000908152600360205260408120805460019290611b349084906131a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b629084906131bf565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611be660175490565b6013549091508110611c605760405162461bcd60e51b815260206004820152602a60248201527f4465726976656452756e6e65723a20616c6c20746f6b656e732068617665206260448201527f65656e206d696e746564000000000000000000000000000000000000000000006064820152608401610747565b601554421015611cd75760405162461bcd60e51b8152602060048201526024808201527f4465726976656452756e6e65723a206d696e74696e6720686173206e6f74206260448201527f6567756e000000000000000000000000000000000000000000000000000000006064820152608401610747565b611ce18484612231565b611ceb8383612082565b6113c0601780546001019055565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546000906001600160a01b0316611dbe5760405162461bcd60e51b815260206004820152601f60248201527f46656561626c653a205f66656561626c65436f6e666967206e6f7420736574006044820152606401610747565b600f5460009061271090611dd290856131d7565b611ddc9190613214565b600e54909150611df5906001600160a01b03168261224b565b611dff81846131a8565b9392505050565b600b546001600160a01b0316611e5e5760405162461bcd60e51b815260206004820152601f60248201527f43726561746f723a205f63726561746f72436f6e666967206e6f7420736574006044820152606401610747565b600c54600b54611777916001600160a01b03908116911683612364565b816001600160a01b0316836001600160a01b03161415611edd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610747565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f738484846119eb565b611f7f8484848461253a565b6113c05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610747565b600b546001600160a01b03166120495760405162461bcd60e51b815260206004820152601f60248201527f43726561746f723a205f63726561746f72436f6e666967206e6f7420736574006044820152606401610747565b6000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6000828152600260205260409020546001600160a01b031661210c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610747565b805161215a5760405162461bcd60e51b815260206004820152601f60248201527f4465726976656452756e6e65723a20696e76616c696420746f6b656e555249006044820152606401610747565b6000828152601660209081526040909120825161089992840190612a66565b6001600160a01b0383166121d4576121cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121f7565b816001600160a01b0316836001600160a01b0316146121f7576121f783826126e7565b6001600160a01b03821661220e5761089981612784565b826001600160a01b0316826001600160a01b031614610899576108998282612833565b611334828260405180602001604052806000815250612877565b8047101561229b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610747565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146122e8576040519150601f19603f3d011682016040523d82523d6000602084013e6122ed565b606091505b50509050806108995760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610747565b6001600160a01b0383166123ba5760405162461bcd60e51b815260206004820152601c60248201527f43726561746f723a207765746841646472657373206e6f7420736574000000006044820152606401610747565b806123c457505050565b6040805160008082526020820192839052916001600160a01b038516916175309185916123f09161324f565b600060405180830381858888f193505050503d806000811461242e576040519150601f19603f3d011682016040523d82523d6000602084013e612433565b606091505b5050905080156124435750505050565b836001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561247e57600080fd5b505af1158015612492573d6000803e3d6000fd5b50506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038781166004830152602482018790528816935063a9059cbb92506044019050602060405180830381600087803b1580156124fb57600080fd5b505af115801561250f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612533919061326b565b5050505050565b60006001600160a01b0384163b156126dc576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612597903390899088908890600401613288565b602060405180830381600087803b1580156125b157600080fd5b505af19250505080156125e1575060408051601f3d908101601f191682019092526125de918101906132c4565b60015b612691573d80801561260f576040519150601f19603f3d011682016040523d82523d6000602084013e612614565b606091505b5080516126895760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610747565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506119e3565b506001949350505050565b600060016126f484610fa5565b6126fe91906131a8565b600083815260076020526040902054909150808214612751576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612796906001906131a8565b600083815260096020526040812054600880549394509092849081106127be576127be613109565b9060005260206000200154905080600883815481106127df576127df613109565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612817576128176132e1565b6001900381819060005260206000200160009055905550505050565b600061283e83610fa5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6128818383612900565b61288e600084848461253a565b6108995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610747565b6001600160a01b0382166129565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610747565b6000818152600260205260409020546001600160a01b0316156129bb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610747565b6129c760008383612179565b6001600160a01b03821660009081526003602052604081208054600192906129f09084906131bf565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a72906130b5565b90600052602060002090601f016020900481019282612a945760008555612ada565b82601f10612aad57805160ff1916838001178555612ada565b82800160010185558215612ada579182015b82811115612ada578251825591602001919060010190612abf565b50612ae6929150612aea565b5090565b5b80821115612ae65760008155600101612aeb565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461177757600080fd5b600060208284031215612b3f57600080fd5b8135611dff81612aff565b60005b83811015612b65578181015183820152602001612b4d565b838111156113c05750506000910152565b60008151808452612b8e816020860160208601612b4a565b601f01601f19169290920160200192915050565b602081526000611dff6020830184612b76565b600060208284031215612bc757600080fd5b5035919050565b6001600160a01b038116811461177757600080fd5b60008060408385031215612bf657600080fd5b8235612c0181612bce565b946020939093013593505050565b600080600060608486031215612c2457600080fd5b8335612c2f81612bce565b92506020840135612c3f81612bce565b929592945050506040919091013590565b6001600160a01b038616815260a060208201526000612c7260a0830187612b76565b604083019590955250606081019290925260809091015292915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612ce757612ce7612c8f565b604052919050565b600067ffffffffffffffff821115612d0957612d09612c8f565b5060051b60200190565b600082601f830112612d2457600080fd5b81356020612d39612d3483612cef565b612cbe565b82815260059290921b84018101918181019086841115612d5857600080fd5b8286015b84811015612d735780358352918301918301612d5c565b509695505050505050565b600067ffffffffffffffff831115612d9857612d98612c8f565b612dab6020601f19601f86011601612cbe565b9050828152838383011115612dbf57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612de757600080fd5b611dff83833560208501612d7e565b600082601f830112612e0757600080fd5b81356020612e17612d3483612cef565b82815260059290921b84018101918181019086841115612e3657600080fd5b8286015b84811015612d7357803567ffffffffffffffff811115612e5a5760008081fd5b612e688986838b0101612dd6565b845250918301918301612e3a565b600080600060608486031215612e8b57600080fd5b833567ffffffffffffffff80821115612ea357600080fd5b818601915086601f830112612eb757600080fd5b81356020612ec7612d3483612cef565b82815260059290921b8401810191818101908a841115612ee657600080fd5b948201945b83861015612f0d578535612efe81612bce565b82529482019490820190612eeb565b97505087013592505080821115612f2357600080fd5b612f2f87838801612d13565b93506040860135915080821115612f4557600080fd5b50612f5286828701612df6565b9150509250925092565b600060208284031215612f6e57600080fd5b8135611dff81612bce565b60008060408385031215612f8c57600080fd5b82359150602083013567ffffffffffffffff811115612faa57600080fd5b612fb685828601612dd6565b9150509250929050565b801515811461177757600080fd5b60008060408385031215612fe157600080fd5b8235612fec81612bce565b91506020830135612ffc81612fc0565b809150509250929050565b6000806000806080858703121561301d57600080fd5b843561302881612bce565b9350602085013561303881612bce565b925060408501359150606085013567ffffffffffffffff81111561305b57600080fd5b8501601f8101871361306c57600080fd5b61307b87823560208401612d7e565b91505092959194509250565b6000806040838503121561309a57600080fd5b82356130a581612bce565b91506020830135612ffc81612bce565b600181811c908216806130c957607f821691505b60208210811415613103577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600063ffffffff8083168181141561318157613181613138565b6001019392505050565b60006020828403121561319d57600080fd5b8151611dff81612bce565b6000828210156131ba576131ba613138565b500390565b600082198211156131d2576131d2613138565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561320f5761320f613138565b500290565b60008261324a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008251613261818460208701612b4a565b9190910192915050565b60006020828403121561327d57600080fd5b8151611dff81612fc0565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132ba6080830184612b76565b9695505050505050565b6000602082840312156132d657600080fd5b8151611dff81612aff565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212204f90ec39ec6ae8bda50c84d0f2bfeb730c9f3cca66511e8ef95fb6cc42b2732564736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000eb448c76b3449210e8cb94abe7c4caf00a1cf819000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000babf18bca941c73f3fbb6877348376e43adc81000000000000000000000000000000000000000000000000000000000000006400000000000000000000000097597002980134bea46250aa0510c9b90d87a58700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000000000005fee66000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d504e61504159386f657058536d797967736d746936666a766150444c4b5a3652384535686b5a6872755563760000000000000000000000

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e0626f7e11610064578063e0626f7e14610535578063e8a3d48514610555578063e985e9c51461056a578063f2fde38b146105b357600080fd5b8063b88d4fde146104cd578063c87b56dd146104ed578063cd2ed8fb1461050d578063dc2057d31461052257600080fd5b80638da5cb5b116100d15780638da5cb5b1461043757806395d89b41146104555780639f2f18891461046a578063a22cb465146104ad57600080fd5b8063715018a6146103c857806377097fc8146103dd5780637e49fc5e146103f057600080fd5b80633fc3fa1b116101645780634f6ccce71161013e5780634f6ccce714610348578063537defd3146103685780636352211e1461038857806370a08231146103a857600080fd5b80633fc3fa1b146102e257806342842e0e14610308578063443cc4991461032857600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed366004612b2d565b6105d3565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61062f565b6040516101fe9190612ba2565b34801561023557600080fd5b50610249610244366004612bb5565b6106c1565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004612be3565b61076c565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004612c0f565b61089e565b3480156102ce57600080fd5b506102946102dd366004612be3565b610925565b3480156102ee57600080fd5b506102f76109cd565b6040516101fe959493929190612c50565b34801561031457600080fd5b50610281610323366004612c0f565b610a80565b34801561033457600080fd5b50610281610343366004612e76565b610a9b565b34801561035457600080fd5b50610294610363366004612bb5565b610c90565b34801561037457600080fd5b50610281610383366004612bb5565b610d34565b34801561039457600080fd5b506102496103a3366004612bb5565b610f1a565b3480156103b457600080fd5b506102946103c3366004612f5c565b610fa5565b3480156103d457600080fd5b5061028161103f565b6102816103eb366004612f79565b6110a5565b3480156103fc57600080fd5b50600b54600c54610417916001600160a01b03908116911682565b604080516001600160a01b039384168152929091166020830152016101fe565b34801561044357600080fd5b50600a546001600160a01b0316610249565b34801561046157600080fd5b5061021c61131a565b34801561047657600080fd5b50600e54600f5461048e916001600160a01b03169082565b604080516001600160a01b0390931683526020830191909152016101fe565b3480156104b957600080fd5b506102816104c8366004612fce565b611329565b3480156104d957600080fd5b506102816104e8366004613007565b611338565b3480156104f957600080fd5b5061021c610508366004612bb5565b6113c6565b34801561051957600080fd5b50601354610294565b610281610530366004612f79565b6114f2565b34801561054157600080fd5b50610281610550366004612f79565b611505565b34801561056157600080fd5b5061021c611686565b34801561057657600080fd5b506101f2610585366004613087565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105bf57600080fd5b506102816105ce366004612f5c565b611698565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061062957506106298261177a565b92915050565b60606000805461063e906130b5565b80601f016020809104026020016040519081016040528092919081815260200182805461066a906130b5565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077782610f1a565b9050806001600160a01b0316836001600160a01b031614156108015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610747565b336001600160a01b038216148061081d575061081d8133610585565b61088f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610747565b610899838361185d565b505050565b6108a833826118e3565b61091a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610747565b6108998383836119eb565b600061093083610fa5565b82106109a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610747565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60118054601280546001600160a01b0390921692916109eb906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a17906130b5565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050908060020154908060030154908060040154905085565b61089983838360405180602001604052806000815250611338565b600a546001600160a01b0316331480610abe5750600b546001600160a01b031633145b610b305760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a206e6f74206f776e6572206f72206372656160448201527f746f7200000000000000000000000000000000000000000000000000000000006064820152608401610747565b60026010541415610b835760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b600260105581518351148015610b9a575080518351145b610be65760405162461bcd60e51b815260206004820152601e60248201527f4465726976656452756e6e65723a206c656e677468206d69736d6174636800006044820152606401610747565b60005b83518163ffffffff161015610c85576000848263ffffffff1681518110610c1257610c12613109565b602002602001015190506000848363ffffffff1681518110610c3657610c36613109565b602002602001015190506000848463ffffffff1681518110610c5a57610c5a613109565b60200260200101519050610c6f838383611bdb565b5050508080610c7d90613167565b915050610be9565b505060016010555050565b6000610c9b60085490565b8210610d0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610747565b60088281548110610d2257610d22613109565b90600052602060002001549050919050565b600a546001600160a01b0316331480610d575750600b546001600160a01b031633145b610dc95760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a206e6f74206f776e6572206f72206372656160448201527f746f7200000000000000000000000000000000000000000000000000000000006064820152608401610747565b60026010541415610e1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b60026010556013548111610e985760405162461bcd60e51b815260206004820152602b60248201527f4465726976656452756e6e6572733a2063616e206f6e6c7920696e637265617360448201527f65206e756d546f6b656e730000000000000000000000000000000000000000006064820152608401610747565b612710811115610f105760405162461bcd60e51b815260206004820152603260248201527f4465726976656452756e6e6572733a2063616e206e6f74206d696e74206d6f7260448201527f65207468616e204d41585f52554e4e45525300000000000000000000000000006064820152608401610747565b6013556001601055565b6000818152600260205260408120546001600160a01b0316806106295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610747565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610747565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610747565b6110a36000611cf9565b565b818060001080156110b857506127108111155b6111045760405162461bcd60e51b815260206004820152601f60248201527f4465726976656452756e6e65723a20696e76616c69642072756e6e65724964006044820152606401610747565b6011546040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03909116906000908290636352211e9060240160206040518083038186803b15801561116657600080fd5b505afa15801561117a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119e919061318b565b9050336001600160a01b0382161461121d5760405162461bcd60e51b8152602060048201526024808201527f4465726976656452756e6e65723a206e6f74206f776e6572206f662072756e6e60448201527f65724964000000000000000000000000000000000000000000000000000000006064820152608401610747565b600260105414156112705760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b600260105560145434146112ec5760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a20696e636f72726563742045544820616d6f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610747565b60006112f734611d63565b905061130281611e06565b61130d338787611bdb565b5050600160105550505050565b60606001805461063e906130b5565b611334338383611e7b565b5050565b61134233836118e3565b6113b45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610747565b6113c084848484611f68565b50505050565b6000818152600260205260409020546060906001600160a01b03166114535760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610747565b6000828152601660205260408120805461146c906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611498906130b5565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b5093979650505050505050565b6114fc82826110a5565b61133482611ff1565b600a546001600160a01b03163314806115285750600b546001600160a01b031633145b61159a5760405162461bcd60e51b815260206004820152602360248201527f4465726976656452756e6e65723a206e6f74206f776e6572206f72206372656160448201527f746f7200000000000000000000000000000000000000000000000000000000006064820152608401610747565b600b5482906001600160a01b0316331415806115c557506000818152600d602052604090205460ff16155b6116115760405162461bcd60e51b815260206004820152601a60248201527f43726561746f723a20746f6b656e4964206973207365616c65640000000000006044820152606401610747565b600260105414156116645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610747565b60026010556116738383612082565b61167c83611ff1565b5050600160105550565b60606011600101805461063e906130b5565b600a546001600160a01b031633146116f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610747565b6001600160a01b03811661176e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610747565b61177781611cf9565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061180d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061062957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610629565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906118aa82610f1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661196d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610747565b600061197883610f1a565b9050806001600160a01b0316846001600160a01b031614806119b35750836001600160a01b03166119a8846106c1565b6001600160a01b0316145b806119e357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119fe82610f1a565b6001600160a01b031614611a7a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610747565b6001600160a01b038216611af55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610747565b611b00838383612179565b611b0b60008261185d565b6001600160a01b0383166000908152600360205260408120805460019290611b349084906131a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b629084906131bf565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611be660175490565b6013549091508110611c605760405162461bcd60e51b815260206004820152602a60248201527f4465726976656452756e6e65723a20616c6c20746f6b656e732068617665206260448201527f65656e206d696e746564000000000000000000000000000000000000000000006064820152608401610747565b601554421015611cd75760405162461bcd60e51b8152602060048201526024808201527f4465726976656452756e6e65723a206d696e74696e6720686173206e6f74206260448201527f6567756e000000000000000000000000000000000000000000000000000000006064820152608401610747565b611ce18484612231565b611ceb8383612082565b6113c0601780546001019055565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546000906001600160a01b0316611dbe5760405162461bcd60e51b815260206004820152601f60248201527f46656561626c653a205f66656561626c65436f6e666967206e6f7420736574006044820152606401610747565b600f5460009061271090611dd290856131d7565b611ddc9190613214565b600e54909150611df5906001600160a01b03168261224b565b611dff81846131a8565b9392505050565b600b546001600160a01b0316611e5e5760405162461bcd60e51b815260206004820152601f60248201527f43726561746f723a205f63726561746f72436f6e666967206e6f7420736574006044820152606401610747565b600c54600b54611777916001600160a01b03908116911683612364565b816001600160a01b0316836001600160a01b03161415611edd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610747565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f738484846119eb565b611f7f8484848461253a565b6113c05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610747565b600b546001600160a01b03166120495760405162461bcd60e51b815260206004820152601f60248201527f43726561746f723a205f63726561746f72436f6e666967206e6f7420736574006044820152606401610747565b6000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6000828152600260205260409020546001600160a01b031661210c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610747565b805161215a5760405162461bcd60e51b815260206004820152601f60248201527f4465726976656452756e6e65723a20696e76616c696420746f6b656e555249006044820152606401610747565b6000828152601660209081526040909120825161089992840190612a66565b6001600160a01b0383166121d4576121cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121f7565b816001600160a01b0316836001600160a01b0316146121f7576121f783826126e7565b6001600160a01b03821661220e5761089981612784565b826001600160a01b0316826001600160a01b031614610899576108998282612833565b611334828260405180602001604052806000815250612877565b8047101561229b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610747565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146122e8576040519150601f19603f3d011682016040523d82523d6000602084013e6122ed565b606091505b50509050806108995760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610747565b6001600160a01b0383166123ba5760405162461bcd60e51b815260206004820152601c60248201527f43726561746f723a207765746841646472657373206e6f7420736574000000006044820152606401610747565b806123c457505050565b6040805160008082526020820192839052916001600160a01b038516916175309185916123f09161324f565b600060405180830381858888f193505050503d806000811461242e576040519150601f19603f3d011682016040523d82523d6000602084013e612433565b606091505b5050905080156124435750505050565b836001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561247e57600080fd5b505af1158015612492573d6000803e3d6000fd5b50506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038781166004830152602482018790528816935063a9059cbb92506044019050602060405180830381600087803b1580156124fb57600080fd5b505af115801561250f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612533919061326b565b5050505050565b60006001600160a01b0384163b156126dc576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612597903390899088908890600401613288565b602060405180830381600087803b1580156125b157600080fd5b505af19250505080156125e1575060408051601f3d908101601f191682019092526125de918101906132c4565b60015b612691573d80801561260f576040519150601f19603f3d011682016040523d82523d6000602084013e612614565b606091505b5080516126895760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610747565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506119e3565b506001949350505050565b600060016126f484610fa5565b6126fe91906131a8565b600083815260076020526040902054909150808214612751576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612796906001906131a8565b600083815260096020526040812054600880549394509092849081106127be576127be613109565b9060005260206000200154905080600883815481106127df576127df613109565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612817576128176132e1565b6001900381819060005260206000200160009055905550505050565b600061283e83610fa5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6128818383612900565b61288e600084848461253a565b6108995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610747565b6001600160a01b0382166129565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610747565b6000818152600260205260409020546001600160a01b0316156129bb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610747565b6129c760008383612179565b6001600160a01b03821660009081526003602052604081208054600192906129f09084906131bf565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a72906130b5565b90600052602060002090601f016020900481019282612a945760008555612ada565b82601f10612aad57805160ff1916838001178555612ada565b82800160010185558215612ada579182015b82811115612ada578251825591602001919060010190612abf565b50612ae6929150612aea565b5090565b5b80821115612ae65760008155600101612aeb565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461177757600080fd5b600060208284031215612b3f57600080fd5b8135611dff81612aff565b60005b83811015612b65578181015183820152602001612b4d565b838111156113c05750506000910152565b60008151808452612b8e816020860160208601612b4a565b601f01601f19169290920160200192915050565b602081526000611dff6020830184612b76565b600060208284031215612bc757600080fd5b5035919050565b6001600160a01b038116811461177757600080fd5b60008060408385031215612bf657600080fd5b8235612c0181612bce565b946020939093013593505050565b600080600060608486031215612c2457600080fd5b8335612c2f81612bce565b92506020840135612c3f81612bce565b929592945050506040919091013590565b6001600160a01b038616815260a060208201526000612c7260a0830187612b76565b604083019590955250606081019290925260809091015292915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612ce757612ce7612c8f565b604052919050565b600067ffffffffffffffff821115612d0957612d09612c8f565b5060051b60200190565b600082601f830112612d2457600080fd5b81356020612d39612d3483612cef565b612cbe565b82815260059290921b84018101918181019086841115612d5857600080fd5b8286015b84811015612d735780358352918301918301612d5c565b509695505050505050565b600067ffffffffffffffff831115612d9857612d98612c8f565b612dab6020601f19601f86011601612cbe565b9050828152838383011115612dbf57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612de757600080fd5b611dff83833560208501612d7e565b600082601f830112612e0757600080fd5b81356020612e17612d3483612cef565b82815260059290921b84018101918181019086841115612e3657600080fd5b8286015b84811015612d7357803567ffffffffffffffff811115612e5a5760008081fd5b612e688986838b0101612dd6565b845250918301918301612e3a565b600080600060608486031215612e8b57600080fd5b833567ffffffffffffffff80821115612ea357600080fd5b818601915086601f830112612eb757600080fd5b81356020612ec7612d3483612cef565b82815260059290921b8401810191818101908a841115612ee657600080fd5b948201945b83861015612f0d578535612efe81612bce565b82529482019490820190612eeb565b97505087013592505080821115612f2357600080fd5b612f2f87838801612d13565b93506040860135915080821115612f4557600080fd5b50612f5286828701612df6565b9150509250925092565b600060208284031215612f6e57600080fd5b8135611dff81612bce565b60008060408385031215612f8c57600080fd5b82359150602083013567ffffffffffffffff811115612faa57600080fd5b612fb685828601612dd6565b9150509250929050565b801515811461177757600080fd5b60008060408385031215612fe157600080fd5b8235612fec81612bce565b91506020830135612ffc81612fc0565b809150509250929050565b6000806000806080858703121561301d57600080fd5b843561302881612bce565b9350602085013561303881612bce565b925060408501359150606085013567ffffffffffffffff81111561305b57600080fd5b8501601f8101871361306c57600080fd5b61307b87823560208401612d7e565b91505092959194509250565b6000806040838503121561309a57600080fd5b82356130a581612bce565b91506020830135612ffc81612bce565b600181811c908216806130c957607f821691505b60208210811415613103577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600063ffffffff8083168181141561318157613181613138565b6001019392505050565b60006020828403121561319d57600080fd5b8151611dff81612bce565b6000828210156131ba576131ba613138565b500390565b600082198211156131d2576131d2613138565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561320f5761320f613138565b500290565b60008261324a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008251613261818460208701612b4a565b9190910192915050565b60006020828403121561327d57600080fd5b8151611dff81612fc0565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132ba6080830184612b76565b9695505050505050565b6000602082840312156132d657600080fd5b8151611dff81612aff565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212204f90ec39ec6ae8bda50c84d0f2bfeb730c9f3cca66511e8ef95fb6cc42b2732564736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000eb448c76b3449210e8cb94abe7c4caf00a1cf819000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000babf18bca941c73f3fbb6877348376e43adc81000000000000000000000000000000000000000000000000000000000000006400000000000000000000000097597002980134bea46250aa0510c9b90d87a58700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000000000005fee66000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d504e61504159386f657058536d797967736d746936666a766150444c4b5a3652384535686b5a6872755563760000000000000000000000

-----Decoded View---------------
Arg [0] : derivedRunnerConfig (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : creatorConfig (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : feeableConfig (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 000000000000000000000000eb448c76b3449210e8cb94abe7c4caf00a1cf819
Arg [2] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [3] : 00000000000000000000000000babf18bca941c73f3fbb6877348376e43adc81
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 00000000000000000000000097597002980134bea46250aa0510c9b90d87a587
Arg [6] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [8] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [9] : 000000000000000000000000000000000000000000000000000000005fee6600
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [11] : 697066733a2f2f516d504e61504159386f657058536d797967736d746936666a
Arg [12] : 766150444c4b5a3652384535686b5a6872755563760000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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