ETH Price: $3,256.90 (-0.27%)
Gas: 1 Gwei

Token

SLASHES (SLASHES)
 

Overview

Max Total Supply

1,024 SLASHES

Holders

339

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SLASHES
0x5a934DD1967C9BB3a6Ff5A329de373A9dB920607
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:
SlashesNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "@openzeppelin/contracts/utils/Counters.sol";
import "./ISlashesSVG.sol";
import {Base64} from "./Base64.sol";
import {Utils} from "./Utils.sol";

contract SlashesNFT is ERC721, ERC721Enumerable, Ownable {

  // contructor arg
  uint public constant MAX_SUPPLY = 1024;
  uint public constant PRICE = 0.2 ether;

  address public SlashesSVGAddress;

  // auto increment token ids
  using Counters for Counters.Counter;
  Counters.Counter private _nextTokenId;

  // timestamp in sec
  // default to 31 Jan 2022 00:00:00 GMT
  uint public saleStart = 1643587200;

  constructor(
    address _SlashesSVGAddress
  ) ERC721("SLASHES", "SLASHES") {

    setSlashesSVGAddress(_SlashesSVGAddress);
    
    // nextTokenId is initialized to 1, since starting at 0 leads to higher gas cost for the first minter
    _nextTokenId.increment();
  }

  function setSlashesSVGAddress(address _SlashesSVGAddress) public onlyOwner {
    require(_SlashesSVGAddress != address(0), 'SlashesSVGAddress can not be address zero');
    SlashesSVGAddress = _SlashesSVGAddress;
  }

  function mint(address recipient) payable public salesIsOpen returns (uint256) {
    uint256 currentTokenId = _nextTokenId.current();

    require(msg.value >= PRICE, "Not enough ETH to purchase: check price.");
    
    // mint the token
    _safeMint(recipient, currentTokenId);
    _nextTokenId.increment();
    return currentTokenId;
  }

  function batchMint(address recipient, uint256 numberOfNfts) public payable salesIsOpen {
    require(numberOfNfts > 0, "Number of NFTs cannot be 0");
    require(totalSupply() + numberOfNfts <= MAX_SUPPLY, "Exceeds MAX_SUPPLY");
    require(msg.value >= PRICE * numberOfNfts, "Ether value sent is not correct");
    for (uint i = 0; i < numberOfNfts; i++) {
        uint256 tokenId = _nextTokenId.current();
        _safeMint(recipient, tokenId);
        _nextTokenId.increment();
    }
  }

  function totalSupply() public view override returns (uint256) {
    return _nextTokenId.current() - 1;
  }

  function _beforeTokenTransfer(
      address from,
      address to,
      uint256 tokenId
    ) internal
    override(ERC721, ERC721Enumerable) 
    {
      super._beforeTokenTransfer(from, to, tokenId);
    }

  function supportsInterface(bytes4 interfaceId)
      public
      view
      override(ERC721, ERC721Enumerable)
      returns (bool)
    {
      return super.supportsInterface(interfaceId);
    }

  function contractURI() 
    public 
    view 
    returns (string memory) 
    {
      ISlashesSVG svg = ISlashesSVG(SlashesSVGAddress);
      string memory svgString;
      string memory attributes;
      (svgString, attributes) = svg.generateSVG(block.timestamp % _nextTokenId.current());

      return string(
          abi.encodePacked(
              "data:application/json;base64,",
              Base64.encode(
                  bytes(
                      abi.encodePacked(
                        '{"name": "Slashes","description": "The Slashes piece proposes a vision of the paths we take and of the people that we encounter throughout our lives. This is the first 100% on-chain generative art series using Solidity smart-contracts on the Ethereum blockchain as a medium to output SVGs by makio135.eth & clemsos.eth.","image":"',
                        svgString,
                        '", "external_link": "https://makio135.io/slashes", "seller_fee_basis_points": 1500, "fee_recipient":"0x',
                        Utils.addressToString(address(this)),
                        '"}'
                        )
                  )
              )
          )
      );
    }
  
  function tokenURI(uint256 tokenId) 
    public 
    view 
    virtual 
    override (ERC721)
    returns (string memory) 
    {
        ISlashesSVG svg = ISlashesSVG(SlashesSVGAddress);
        string memory svgString;
        string memory attributes;
        (svgString, attributes) = tokenId > totalSupply() ? ('', '') : svg.generateSVG(tokenId);
        return string(
            abi.encodePacked(
                "data:application/json;base64,",
                Base64.encode(
                    bytes(
                        abi.encodePacked(
                          '{"description":"The Slashes piece proposes a vision of the paths we take and of the people that we encounter throughout our lives. This is the first 100% on-chain generative art series using Solidity smart-contracts on the Ethereum blockchain as a medium to output SVGs by makio135.eth & clemsos.eth.","name":"Slashes #',
                          Utils.uint2str(tokenId),
                          '","image":"',
                          svgString,
                          '","attributes":[',
                          attributes,
                          ']}'
                        )
                    )
                )
            )
        );
    }
  
  function withdraw(address payable recipient, uint256 amount) public onlyOwner {
      require(recipient != address(0), 'SlashesSVGAddress can not be address zero');

      uint balance = address(this).balance;
      require(balance > 0, "No ether left to withdraw");
      
      (bool succeed, ) = recipient.call{value: amount}("");
      require(succeed, "Failed to withdraw Ether");
  }

  function setSaleStart(uint _dateInSec) public onlyOwner {
    saleStart = _dateInSec;
  }

  modifier salesIsOpen() {
    require(block.timestamp > saleStart, "Sale is not currently open");
    require(totalSupply() < MAX_SUPPLY, "Sale has already ended");
    _;
  }

}

File 2 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 4 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 17 : Counters.sol
// SPDX-License-Identifier: MIT

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 6 of 17 : ISlashesSVG.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface ISlashesSVG {

  // returns a SVG string
  function generateSVG(uint256 tokenId) pure external returns(string memory, string memory);

}

File 7 of 17 : Base64.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

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

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 8 of 17 : Utils.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

library Utils {
  // convert a uint to str
  function uint2str(uint _i) internal pure returns (string memory str) {
      if (_i == 0) {
          return "0";
      }
      uint j = _i;
      uint len;
      while (j != 0) {
          len++;
          j /= 10;
      }
      bytes memory bstr = new bytes(len);
      uint k = len;
      j = _i;
      while (j != 0) {
          bstr[--k] = bytes1(48 + uint8(_i - _i / 10 * 10));
          j /= 10;
      }
      str = string(bstr);
  }

  function uint32ToString(uint32 v) pure internal returns (string memory str) {
    if (v == 0) {
        return "0";
    }
    // max uint32 4294967295 so 10 digits
    uint maxlength = 10;
    bytes memory reversed = new bytes(maxlength);
    uint i = 0;
    while (v != 0) {
        uint remainder = v % 10;
        v = v / 10;
        reversed[i++] = bytes1(uint8(48 + remainder));
    }
    bytes memory s = new bytes(i);
    for (uint j = 0; j < i; j++) {
        s[j] = reversed[i - j - 1];
    }
    str = string(s);
  }

  function addressToString(address x) internal pure returns (string memory) {
    bytes memory s = new bytes(40);
    for (uint i = 0; i < 20; i++) {
        bytes1 b = bytes1(uint8(uint(uint160(x)) / (2**(8*(19 - i)))));
        bytes1 hi = bytes1(uint8(b) / 16);
        bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));
        s[2*i] = char(hi);
        s[2*i+1] = char(lo);            
    }
    return string(s);
   }

   function char(bytes1 b) internal pure returns (bytes1 c) {
        if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
        else return bytes1(uint8(b) + 0x57);
    }
}

File 9 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

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 10 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 11 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 12 of 17 : Address.sol
// SPDX-License-Identifier: MIT

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 13 of 17 : Context.sol
// SPDX-License-Identifier: MIT

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 14 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

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 15 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT

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 16 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT

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 17 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_SlashesSVGAddress","type":"address"}],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SlashesSVGAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dateInSec","type":"uint256"}],"name":"setSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_SlashesSVGAddress","type":"address"}],"name":"setSlashesSVGAddress","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":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526361f72680600d553480156200001957600080fd5b50604051620058223803806200582283398181016040528101906200003f919062000449565b6040518060400160405280600781526020017f534c4153484553000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f534c4153484553000000000000000000000000000000000000000000000000008152508160009080519060200190620000c392919062000382565b508060019080519060200190620000dc92919062000382565b505050620000ff620000f36200012e60201b60201c565b6200013660201b60201c565b6200011081620001fc60201b60201c565b62000127600c6200034260201b62001a651760201c565b5062000643565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200020c6200012e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002326200035860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028290620004e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620002fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f590620004c3565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001816000016000828254019250508190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000390906200054c565b90600052602060002090601f016020900481019282620003b4576000855562000400565b82601f10620003cf57805160ff191683800117855562000400565b8280016001018555821562000400579182015b82811115620003ff578251825591602001919060010190620003e2565b5b5090506200040f919062000413565b5090565b5b808211156200042e57600081600090555060010162000414565b5090565b600081519050620004438162000629565b92915050565b6000602082840312156200045c57600080fd5b60006200046c8482850162000432565b91505092915050565b60006200048460298362000507565b91506200049182620005b1565b604082019050919050565b6000620004ab60208362000507565b9150620004b88262000600565b602082019050919050565b60006020820190508181036000830152620004de8162000475565b9050919050565b6000602082019050818103600083015262000500816200049c565b9050919050565b600082825260208201905092915050565b600062000525826200052c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200056557607f821691505b602082108114156200057c576200057b62000582565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f536c6173686573535647416464726573732063616e206e6f742062652061646460008201527f72657373207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620006348162000518565b81146200064057600080fd5b50565b6151cf80620006536000396000f3fe6080604052600436106101c25760003560e01c80636a627842116100f7578063a22cb46511610095578063e8a3d48511610064578063e8a3d4851461064c578063e985e9c514610677578063f2fde38b146106b4578063f3fef3a3146106dd576101c2565b8063a22cb46514610592578063ab0bcc41146105bb578063b88d4fde146105e6578063c87b56dd1461060f576101c2565b8063776237fb116100d1578063776237fb146104e85780638d859f3e146105115780638da5cb5b1461053c57806395d89b4114610567576101c2565b80636a6278421461046457806370a0823114610494578063715018a6146104d1576101c2565b80632f745c591161016457806342842e0e1161013e57806342842e0e146103a557806343508b05146103ce5780634f6ccce7146103ea5780636352211e14610427576101c2565b80632f745c591461031257806332cb6b0c1461034f57806340cab6341461037a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f181f54146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906133aa565b610706565b6040516101fb9190613b6e565b60405180910390f35b34801561021057600080fd5b50610219610718565b6040516102269190613b89565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613468565b6107aa565b6040516102639190613b07565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061336e565b61082f565b005b3480156102a157600080fd5b506102aa610947565b6040516102b79190613eeb565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190613268565b610964565b005b3480156102f557600080fd5b50610310600480360381019061030b9190613468565b6109c4565b005b34801561031e57600080fd5b506103396004803603810190610334919061336e565b610a4a565b6040516103469190613eeb565b60405180910390f35b34801561035b57600080fd5b50610364610aef565b6040516103719190613eeb565b60405180910390f35b34801561038657600080fd5b5061038f610af5565b60405161039c9190613b07565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613268565b610b1b565b005b6103e860048036038101906103e3919061336e565b610b3b565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613468565b610d00565b60405161041e9190613eeb565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613468565b610d97565b60405161045b9190613b07565b60405180910390f35b61047e600480360381019061047991906131c7565b610e49565b60405161048b9190613eeb565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906131c7565b610f50565b6040516104c89190613eeb565b60405180910390f35b3480156104dd57600080fd5b506104e6611008565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906131c7565b611090565b005b34801561051d57600080fd5b506105266111c0565b6040516105339190613eeb565b60405180910390f35b34801561054857600080fd5b506105516111cc565b60405161055e9190613b07565b60405180910390f35b34801561057357600080fd5b5061057c6111f6565b6040516105899190613b89565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613332565b611288565b005b3480156105c757600080fd5b506105d0611409565b6040516105dd9190613eeb565b60405180910390f35b3480156105f257600080fd5b5061060d600480360381019061060891906132b7565b61140f565b005b34801561061b57600080fd5b5061063660048036038101906106319190613468565b611471565b6040516106439190613b89565b60405180910390f35b34801561065857600080fd5b506106616115c4565b60405161066e9190613b89565b60405180910390f35b34801561068357600080fd5b5061069e6004803603810190610699919061322c565b6116f3565b6040516106ab9190613b6e565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d691906131c7565b611787565b005b3480156106e957600080fd5b5061070460048036038101906106ff91906131f0565b61187f565b005b600061071182611a7b565b9050919050565b60606000805461072790614437565b80601f016020809104026020016040519081016040528092919081815260200182805461075390614437565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b582611af5565b6107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb90613dab565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083a82610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290613e4b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ca611b61565b73ffffffffffffffffffffffffffffffffffffffff1614806108f957506108f8816108f3611b61565b6116f3565b5b610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90613d0b565b60405180910390fd5b6109428383611b69565b505050565b60006001610955600c611c22565b61095f91906142d0565b905090565b61097561096f611b61565b82611c30565b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90613e8b565b60405180910390fd5b6109bf838383611d0e565b505050565b6109cc611b61565b73ffffffffffffffffffffffffffffffffffffffff166109ea6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790613dcb565b60405180910390fd5b80600d8190555050565b6000610a5583610f50565b8210610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90613bab565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61040081565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b368383836040518060200160405280600081525061140f565b505050565b600d544211610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613eab565b60405180910390fd5b610400610b8a610947565b10610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613e6b565b60405180910390fd5b60008111610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613c4b565b60405180910390fd5b61040081610c19610947565b610c239190613fdb565b1115610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613e2b565b60405180910390fd5b806702c68af0bb140000610c78919061423b565b341015610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613ccb565b60405180910390fd5b60005b81811015610cfb576000610cd1600c611c22565b9050610cdd8482611f6a565b610ce7600c611a65565b508080610cf39061449a565b915050610cbd565b505050565b6000610d0a611f88565b8210610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613ecb565b60405180910390fd5b60088281548110610d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613d4b565b60405180910390fd5b80915050919050565b6000600d544211610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613eab565b60405180910390fd5b610400610e9a610947565b10610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613e6b565b60405180910390fd5b6000610ee6600c611c22565b90506702c68af0bb140000341015610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613cab565b60405180910390fd5b610f3d8382611f6a565b610f47600c611a65565b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613d2b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611010611b61565b73ffffffffffffffffffffffffffffffffffffffff1661102e6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613dcb565b60405180910390fd5b61108e6000611f95565b565b611098611b61565b73ffffffffffffffffffffffffffffffffffffffff166110b66111cc565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613c0b565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6702c68af0bb14000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461120590614437565b80601f016020809104026020016040519081016040528092919081815260200182805461123190614437565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b5050505050905090565b611290611b61565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590613c8b565b60405180910390fd5b806005600061130b611b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b8611b61565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fd9190613b6e565b60405180910390a35050565b600d5481565b61142061141a611b61565b83611c30565b61145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690613e8b565b60405180910390fd5b61146b8484848461205b565b50505050565b60606000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506060806114a5610947565b851161153e578273ffffffffffffffffffffffffffffffffffffffff16636dcee4ca866040518263ffffffff1660e01b81526004016114e49190613eeb565b60006040518083038186803b1580156114fc57600080fd5b505afa158015611510573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061153991906133fc565b61155f565b60405180602001604052806000815250604051806020016040528060008152505b809250819350505061159b611573866120b7565b838360405160200161158793929190613a2e565b604051602081830303815290604052612280565b6040516020016115ab9190613a8b565b6040516020818303038152906040529350505050919050565b60606000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506060808273ffffffffffffffffffffffffffffffffffffffff16636dcee4ca611616600c611c22565b4261162191906144e3565b6040518263ffffffff1660e01b815260040161163d9190613eeb565b60006040518083038186803b15801561165557600080fd5b505afa158015611669573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061169291906133fc565b80925081935050506116cc826116a73061243e565b6040516020016116b8929190613aad565b604051602081830303815290604052612280565b6040516020016116dc9190613a8b565b604051602081830303815290604052935050505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178f611b61565b73ffffffffffffffffffffffffffffffffffffffff166117ad6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90613dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90613beb565b60405180910390fd5b61187c81611f95565b50565b611887611b61565b73ffffffffffffffffffffffffffffffffffffffff166118a56111cc565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290613dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613c0b565b60405180910390fd5b6000479050600081116119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613d8b565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff16836040516119d990613af2565b60006040518083038185875af1925050503d8060008114611a16576040519150601f19603f3d011682016040523d82523d6000602084013e611a1b565b606091505b5050905080611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690613e0b565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aee5750611aed82612673565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bdc83610d97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611c3b82611af5565b611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190613ceb565b60405180910390fd5b6000611c8583610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cf457508373ffffffffffffffffffffffffffffffffffffffff16611cdc846107aa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d055750611d0481856116f3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d2e82610d97565b73ffffffffffffffffffffffffffffffffffffffff1614611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613c6b565b60405180910390fd5b611dff838383612755565b611e0a600082611b69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5a91906142d0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb19190613fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f84828260405180602001604052806000815250612765565b5050565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612066848484611d0e565b612072848484846127c0565b6120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613bcb565b60405180910390fd5b50505050565b606060008214156120ff576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061227b565b600082905060005b6000821461213157808061211a9061449a565b915050600a8261212a9190614068565b9150612107565b60008167ffffffffffffffff811115612173577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121a55781602001600182028036833780820191505090505b50905060008290508593505b6000841461227357600a80876121c79190614068565b6121d1919061423b565b866121dc91906142d0565b60306121e89190614031565b60f81b82826121f69061440d565b92508281518110612230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8461226c9190614068565b93506121b1565b819450505050505b919050565b606060008251905060008114156122a95760405180602001604052806000815250915050612439565b600060036002836122ba9190613fdb565b6122c49190614068565b60046122d0919061423b565b905060006020826122e19190613fdb565b67ffffffffffffffff811115612320577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123525781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161515a604091399050600181016020830160005b868110156123f65760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505061237d565b50600386066001811461241057600281146124205761242b565b613d3d60f01b600283035261242b565b603d60f81b60018303525b508484525050819450505050505b919050565b60606000602867ffffffffffffffff811115612483577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b55781602001600182028036833780820191505090505b50905060005b60148110156126695760008160136124d391906142d0565b60086124df919061423b565b60026124eb919061411d565b8573ffffffffffffffffffffffffffffffffffffffff1661250c9190614068565b60f81b9050600060108260f81c6125239190614099565b60f81b905060008160f81c601061253a9190614295565b8360f81c6125489190614304565b60f81b905061255682612957565b85856002612564919061423b565b8151811061259b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125d381612957565b8560018660026125e3919061423b565b6125ed9190613fdb565b81518110612624577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505080806126619061449a565b9150506124bb565b5080915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061274e575061274d8261299d565b5b9050919050565b612760838383612a07565b505050565b61276f8383612b1b565b61277c60008484846127c0565b6127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b290613bcb565b60405180910390fd5b505050565b60006127e18473ffffffffffffffffffffffffffffffffffffffff16612ce9565b1561294a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261280a611b61565b8786866040518563ffffffff1660e01b815260040161282c9493929190613b22565b602060405180830381600087803b15801561284657600080fd5b505af192505050801561287757506040513d601f19601f8201168201806040525081019061287491906133d3565b60015b6128fa573d80600081146128a7576040519150601f19603f3d011682016040523d82523d6000602084013e6128ac565b606091505b506000815114156128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990613bcb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061294f565b600190505b949350505050565b6000600a8260f81c60ff1610156129825760308260f81c6129789190614031565b60f81b9050612998565b60578260f81c6129929190614031565b60f81b90505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a12838383612cfc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5557612a5081612d01565b612a94565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a9357612a928382612d4a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad757612ad281612eb7565b612b16565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b1557612b148282612ffa565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8290613d6b565b60405180910390fd5b612b9481611af5565b15612bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcb90613c2b565b60405180910390fd5b612be060008383612755565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c309190613fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d5784610f50565b612d6191906142d0565b9050600060076000848152602001908152602001600020549050818114612e46576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ecb91906142d0565b9050600060096000848152602001908152602001600020549050600060088381548110612f21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612f69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612fde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061300583610f50565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600061308c61308784613f2b565b613f06565b9050828152602081018484840111156130a457600080fd5b6130af8482856143cb565b509392505050565b60006130ca6130c584613f5c565b613f06565b9050828152602081018484840111156130e257600080fd5b6130ed8482856143da565b509392505050565b600081359050613104816150e6565b92915050565b600081359050613119816150fd565b92915050565b60008135905061312e81615114565b92915050565b6000813590506131438161512b565b92915050565b6000815190506131588161512b565b92915050565b600082601f83011261316f57600080fd5b813561317f848260208601613079565b91505092915050565b600082601f83011261319957600080fd5b81516131a98482602086016130b7565b91505092915050565b6000813590506131c181615142565b92915050565b6000602082840312156131d957600080fd5b60006131e7848285016130f5565b91505092915050565b6000806040838503121561320357600080fd5b60006132118582860161310a565b9250506020613222858286016131b2565b9150509250929050565b6000806040838503121561323f57600080fd5b600061324d858286016130f5565b925050602061325e858286016130f5565b9150509250929050565b60008060006060848603121561327d57600080fd5b600061328b868287016130f5565b935050602061329c868287016130f5565b92505060406132ad868287016131b2565b9150509250925092565b600080600080608085870312156132cd57600080fd5b60006132db878288016130f5565b94505060206132ec878288016130f5565b93505060406132fd878288016131b2565b925050606085013567ffffffffffffffff81111561331a57600080fd5b6133268782880161315e565b91505092959194509250565b6000806040838503121561334557600080fd5b6000613353858286016130f5565b92505060206133648582860161311f565b9150509250929050565b6000806040838503121561338157600080fd5b600061338f858286016130f5565b92505060206133a0858286016131b2565b9150509250929050565b6000602082840312156133bc57600080fd5b60006133ca84828501613134565b91505092915050565b6000602082840312156133e557600080fd5b60006133f384828501613149565b91505092915050565b6000806040838503121561340f57600080fd5b600083015167ffffffffffffffff81111561342957600080fd5b61343585828601613188565b925050602083015167ffffffffffffffff81111561345257600080fd5b61345e85828601613188565b9150509250929050565b60006020828403121561347a57600080fd5b6000613488848285016131b2565b91505092915050565b61349a81614338565b82525050565b6134a98161435c565b82525050565b60006134ba82613f8d565b6134c48185613fa3565b93506134d48185602086016143da565b6134dd816145d0565b840191505092915050565b60006134f382613f98565b6134fd8185613fbf565b935061350d8185602086016143da565b613516816145d0565b840191505092915050565b600061352c82613f98565b6135368185613fd0565b93506135468185602086016143da565b80840191505092915050565b600061355f600b83613fd0565b915061356a826145ee565b600b82019050919050565b6000613582602b83613fbf565b915061358d82614617565b604082019050919050565b60006135a5603283613fbf565b91506135b082614666565b604082019050919050565b60006135c8602683613fbf565b91506135d3826146b5565b604082019050919050565b60006135eb602983613fbf565b91506135f682614704565b604082019050919050565b600061360f61013f83613fd0565b915061361a82614753565b61013f82019050919050565b6000613633601c83613fbf565b915061363e826148d4565b602082019050919050565b6000613656601a83613fbf565b9150613661826148fd565b602082019050919050565b6000613679602483613fbf565b915061368482614926565b604082019050919050565b600061369c601983613fbf565b91506136a782614975565b602082019050919050565b60006136bf602883613fbf565b91506136ca8261499e565b604082019050919050565b60006136e2601f83613fbf565b91506136ed826149ed565b602082019050919050565b6000613705602c83613fbf565b915061371082614a16565b604082019050919050565b6000613728603883613fbf565b915061373382614a65565b604082019050919050565b600061374b602a83613fbf565b915061375682614ab4565b604082019050919050565b600061376e602983613fbf565b915061377982614b03565b604082019050919050565b6000613791601083613fd0565b915061379c82614b52565b601082019050919050565b60006137b4600283613fd0565b91506137bf82614b7b565b600282019050919050565b60006137d7602083613fbf565b91506137e282614ba4565b602082019050919050565b60006137fa601983613fbf565b915061380582614bcd565b602082019050919050565b600061381d602c83613fbf565b915061382882614bf6565b604082019050919050565b6000613840602083613fbf565b915061384b82614c45565b602082019050919050565b6000613863602983613fbf565b915061386e82614c6e565b604082019050919050565b6000613886600283613fd0565b915061389182614cbd565b600282019050919050565b60006138a9601883613fbf565b91506138b482614ce6565b602082019050919050565b60006138cc601283613fbf565b91506138d782614d0f565b602082019050919050565b60006138ef602183613fbf565b91506138fa82614d38565b604082019050919050565b6000613912601683613fbf565b915061391d82614d87565b602082019050919050565b6000613935601d83613fd0565b915061394082614db0565b601d82019050919050565b600061395961014a83613fd0565b915061396482614dd9565b61014a82019050919050565b600061397d600083613fb4565b915061398882614f81565b600082019050919050565b60006139a0606783613fd0565b91506139ab82614f84565b606782019050919050565b60006139c3603183613fbf565b91506139ce8261501f565b604082019050919050565b60006139e6601a83613fbf565b91506139f18261506e565b602082019050919050565b6000613a09602c83613fbf565b9150613a1482615097565b604082019050919050565b613a28816143b4565b82525050565b6000613a3982613601565b9150613a458286613521565b9150613a5082613552565b9150613a5c8285613521565b9150613a6782613784565b9150613a738284613521565b9150613a7e82613879565b9150819050949350505050565b6000613a9682613928565b9150613aa28284613521565b915081905092915050565b6000613ab88261394b565b9150613ac48285613521565b9150613acf82613993565b9150613adb8284613521565b9150613ae6826137a7565b91508190509392505050565b6000613afd82613970565b9150819050919050565b6000602082019050613b1c6000830184613491565b92915050565b6000608082019050613b376000830187613491565b613b446020830186613491565b613b516040830185613a1f565b8181036060830152613b6381846134af565b905095945050505050565b6000602082019050613b8360008301846134a0565b92915050565b60006020820190508181036000830152613ba381846134e8565b905092915050565b60006020820190508181036000830152613bc481613575565b9050919050565b60006020820190508181036000830152613be481613598565b9050919050565b60006020820190508181036000830152613c04816135bb565b9050919050565b60006020820190508181036000830152613c24816135de565b9050919050565b60006020820190508181036000830152613c4481613626565b9050919050565b60006020820190508181036000830152613c6481613649565b9050919050565b60006020820190508181036000830152613c848161366c565b9050919050565b60006020820190508181036000830152613ca48161368f565b9050919050565b60006020820190508181036000830152613cc4816136b2565b9050919050565b60006020820190508181036000830152613ce4816136d5565b9050919050565b60006020820190508181036000830152613d04816136f8565b9050919050565b60006020820190508181036000830152613d248161371b565b9050919050565b60006020820190508181036000830152613d448161373e565b9050919050565b60006020820190508181036000830152613d6481613761565b9050919050565b60006020820190508181036000830152613d84816137ca565b9050919050565b60006020820190508181036000830152613da4816137ed565b9050919050565b60006020820190508181036000830152613dc481613810565b9050919050565b60006020820190508181036000830152613de481613833565b9050919050565b60006020820190508181036000830152613e0481613856565b9050919050565b60006020820190508181036000830152613e248161389c565b9050919050565b60006020820190508181036000830152613e44816138bf565b9050919050565b60006020820190508181036000830152613e64816138e2565b9050919050565b60006020820190508181036000830152613e8481613905565b9050919050565b60006020820190508181036000830152613ea4816139b6565b9050919050565b60006020820190508181036000830152613ec4816139d9565b9050919050565b60006020820190508181036000830152613ee4816139fc565b9050919050565b6000602082019050613f006000830184613a1f565b92915050565b6000613f10613f21565b9050613f1c8282614469565b919050565b6000604051905090565b600067ffffffffffffffff821115613f4657613f456145a1565b5b613f4f826145d0565b9050602081019050919050565b600067ffffffffffffffff821115613f7757613f766145a1565b5b613f80826145d0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fe6826143b4565b9150613ff1836143b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402657614025614514565b5b828201905092915050565b600061403c826143be565b9150614047836143be565b92508260ff0382111561405d5761405c614514565b5b828201905092915050565b6000614073826143b4565b915061407e836143b4565b92508261408e5761408d614543565b5b828204905092915050565b60006140a4826143be565b91506140af836143be565b9250826140bf576140be614543565b5b828204905092915050565b6000808291508390505b6001851115614114578086048111156140f0576140ef614514565b5b60018516156140ff5780820291505b808102905061410d856145e1565b94506140d4565b94509492505050565b6000614128826143b4565b9150614133836143b4565b92506141607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614168565b905092915050565b6000826141785760019050614234565b816141865760009050614234565b816001811461419c57600281146141a6576141d5565b6001915050614234565b60ff8411156141b8576141b7614514565b5b8360020a9150848211156141cf576141ce614514565b5b50614234565b5060208310610133831016604e8410600b841016171561420a5782820a90508381111561420557614204614514565b5b614234565b61421784848460016140ca565b9250905081840481111561422e5761422d614514565b5b81810290505b9392505050565b6000614246826143b4565b9150614251836143b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428a57614289614514565b5b828202905092915050565b60006142a0826143be565b91506142ab836143be565b92508160ff04831182151516156142c5576142c4614514565b5b828202905092915050565b60006142db826143b4565b91506142e6836143b4565b9250828210156142f9576142f8614514565b5b828203905092915050565b600061430f826143be565b915061431a836143be565b92508282101561432d5761432c614514565b5b828203905092915050565b600061434382614394565b9050919050565b600061435582614394565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156143f85780820151818401526020810190506143dd565b83811115614407576000848401525b50505050565b6000614418826143b4565b9150600082141561442c5761442b614514565b5b600182039050919050565b6000600282049050600182168061444f57607f821691505b6020821081141561446357614462614572565b5b50919050565b614472826145d0565b810181811067ffffffffffffffff82111715614491576144906145a1565b5b80604052505050565b60006144a5826143b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144d8576144d7614514565b5b600182019050919050565b60006144ee826143b4565b91506144f9836143b4565b92508261450957614508614543565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f222c22696d616765223a22000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536c6173686573535647416464726573732063616e206e6f742062652061646460008201527f72657373207a65726f0000000000000000000000000000000000000000000000602082015250565b7f7b226465736372697074696f6e223a2254686520536c6173686573207069656360008201527f652070726f706f736573206120766973696f6e206f662074686520706174687360208201527f2077652074616b6520616e64206f66207468652070656f706c6520746861742060408201527f776520656e636f756e746572207468726f7567686f7574206f7572206c69766560608201527f732e2054686973206973207468652066697273742031303025206f6e2d63686160808201527f696e2067656e657261746976652061727420736572696573207573696e67205360a08201527f6f6c696469747920736d6172742d636f6e747261637473206f6e20746865204560c08201527f7468657265756d20626c6f636b636861696e2061732061206d656469756d207460e08201527f6f206f75747075742053564773206279206d616b696f3133352e6574682026206101008201527f636c656d736f732e6574682e222c226e616d65223a22536c617368657320230061012082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e756d626572206f66204e4654732063616e6e6f742062652030000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f7567682045544820746f2070757263686173653a206368656360008201527f6b2070726963652e000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f222c2261747472696275746573223a5b00000000000000000000000000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b7f45786365656473204d41585f535550504c590000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f7b226e616d65223a2022536c6173686573222c226465736372697074696f6e2260008201527f3a202254686520536c61736865732070696563652070726f706f73657320612060208201527f766973696f6e206f66207468652070617468732077652074616b6520616e642060408201527f6f66207468652070656f706c65207468617420776520656e636f756e7465722060608201527f7468726f7567686f7574206f7572206c697665732e205468697320697320746860808201527f652066697273742031303025206f6e2d636861696e2067656e6572617469766560a08201527f2061727420736572696573207573696e6720536f6c696469747920736d61727460c08201527f2d636f6e747261637473206f6e2074686520457468657265756d20626c6f636b60e08201527f636861696e2061732061206d656469756d20746f206f757470757420535647736101008201527f206279206d616b696f3133352e657468202620636c656d736f732e6574682e226101208201527f2c22696d616765223a220000000000000000000000000000000000000000000061014082015250565b50565b7f222c202265787465726e616c5f6c696e6b223a202268747470733a2f2f6d616b60008201527f696f3133352e696f2f736c6173686573222c202273656c6c65725f6665655f6260208201527f617369735f706f696e7473223a20313530302c20226665655f7265636970696560408201527f6e74223a22307800000000000000000000000000000000000000000000000000606082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c79206f70656e000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6150ef81614338565b81146150fa57600080fd5b50565b6151068161434a565b811461511157600080fd5b50565b61511d8161435c565b811461512857600080fd5b50565b61513481614368565b811461513f57600080fd5b50565b61514b816143b4565b811461515657600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122024bc6c12705fd56dd00f12efdf68cfd7a837ce320603b818da67fc05bbda296064736f6c63430008040033000000000000000000000000dc2ff59fd1ec4a2b5af53fc0cd73af2f59e3da96

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636a627842116100f7578063a22cb46511610095578063e8a3d48511610064578063e8a3d4851461064c578063e985e9c514610677578063f2fde38b146106b4578063f3fef3a3146106dd576101c2565b8063a22cb46514610592578063ab0bcc41146105bb578063b88d4fde146105e6578063c87b56dd1461060f576101c2565b8063776237fb116100d1578063776237fb146104e85780638d859f3e146105115780638da5cb5b1461053c57806395d89b4114610567576101c2565b80636a6278421461046457806370a0823114610494578063715018a6146104d1576101c2565b80632f745c591161016457806342842e0e1161013e57806342842e0e146103a557806343508b05146103ce5780634f6ccce7146103ea5780636352211e14610427576101c2565b80632f745c591461031257806332cb6b0c1461034f57806340cab6341461037a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f181f54146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906133aa565b610706565b6040516101fb9190613b6e565b60405180910390f35b34801561021057600080fd5b50610219610718565b6040516102269190613b89565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613468565b6107aa565b6040516102639190613b07565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061336e565b61082f565b005b3480156102a157600080fd5b506102aa610947565b6040516102b79190613eeb565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190613268565b610964565b005b3480156102f557600080fd5b50610310600480360381019061030b9190613468565b6109c4565b005b34801561031e57600080fd5b506103396004803603810190610334919061336e565b610a4a565b6040516103469190613eeb565b60405180910390f35b34801561035b57600080fd5b50610364610aef565b6040516103719190613eeb565b60405180910390f35b34801561038657600080fd5b5061038f610af5565b60405161039c9190613b07565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613268565b610b1b565b005b6103e860048036038101906103e3919061336e565b610b3b565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613468565b610d00565b60405161041e9190613eeb565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613468565b610d97565b60405161045b9190613b07565b60405180910390f35b61047e600480360381019061047991906131c7565b610e49565b60405161048b9190613eeb565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906131c7565b610f50565b6040516104c89190613eeb565b60405180910390f35b3480156104dd57600080fd5b506104e6611008565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906131c7565b611090565b005b34801561051d57600080fd5b506105266111c0565b6040516105339190613eeb565b60405180910390f35b34801561054857600080fd5b506105516111cc565b60405161055e9190613b07565b60405180910390f35b34801561057357600080fd5b5061057c6111f6565b6040516105899190613b89565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613332565b611288565b005b3480156105c757600080fd5b506105d0611409565b6040516105dd9190613eeb565b60405180910390f35b3480156105f257600080fd5b5061060d600480360381019061060891906132b7565b61140f565b005b34801561061b57600080fd5b5061063660048036038101906106319190613468565b611471565b6040516106439190613b89565b60405180910390f35b34801561065857600080fd5b506106616115c4565b60405161066e9190613b89565b60405180910390f35b34801561068357600080fd5b5061069e6004803603810190610699919061322c565b6116f3565b6040516106ab9190613b6e565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d691906131c7565b611787565b005b3480156106e957600080fd5b5061070460048036038101906106ff91906131f0565b61187f565b005b600061071182611a7b565b9050919050565b60606000805461072790614437565b80601f016020809104026020016040519081016040528092919081815260200182805461075390614437565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b582611af5565b6107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb90613dab565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083a82610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290613e4b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ca611b61565b73ffffffffffffffffffffffffffffffffffffffff1614806108f957506108f8816108f3611b61565b6116f3565b5b610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90613d0b565b60405180910390fd5b6109428383611b69565b505050565b60006001610955600c611c22565b61095f91906142d0565b905090565b61097561096f611b61565b82611c30565b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90613e8b565b60405180910390fd5b6109bf838383611d0e565b505050565b6109cc611b61565b73ffffffffffffffffffffffffffffffffffffffff166109ea6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790613dcb565b60405180910390fd5b80600d8190555050565b6000610a5583610f50565b8210610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90613bab565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61040081565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b368383836040518060200160405280600081525061140f565b505050565b600d544211610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613eab565b60405180910390fd5b610400610b8a610947565b10610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613e6b565b60405180910390fd5b60008111610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613c4b565b60405180910390fd5b61040081610c19610947565b610c239190613fdb565b1115610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613e2b565b60405180910390fd5b806702c68af0bb140000610c78919061423b565b341015610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613ccb565b60405180910390fd5b60005b81811015610cfb576000610cd1600c611c22565b9050610cdd8482611f6a565b610ce7600c611a65565b508080610cf39061449a565b915050610cbd565b505050565b6000610d0a611f88565b8210610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613ecb565b60405180910390fd5b60088281548110610d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613d4b565b60405180910390fd5b80915050919050565b6000600d544211610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613eab565b60405180910390fd5b610400610e9a610947565b10610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613e6b565b60405180910390fd5b6000610ee6600c611c22565b90506702c68af0bb140000341015610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613cab565b60405180910390fd5b610f3d8382611f6a565b610f47600c611a65565b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613d2b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611010611b61565b73ffffffffffffffffffffffffffffffffffffffff1661102e6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613dcb565b60405180910390fd5b61108e6000611f95565b565b611098611b61565b73ffffffffffffffffffffffffffffffffffffffff166110b66111cc565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613c0b565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6702c68af0bb14000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461120590614437565b80601f016020809104026020016040519081016040528092919081815260200182805461123190614437565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b5050505050905090565b611290611b61565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590613c8b565b60405180910390fd5b806005600061130b611b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b8611b61565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fd9190613b6e565b60405180910390a35050565b600d5481565b61142061141a611b61565b83611c30565b61145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690613e8b565b60405180910390fd5b61146b8484848461205b565b50505050565b60606000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506060806114a5610947565b851161153e578273ffffffffffffffffffffffffffffffffffffffff16636dcee4ca866040518263ffffffff1660e01b81526004016114e49190613eeb565b60006040518083038186803b1580156114fc57600080fd5b505afa158015611510573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061153991906133fc565b61155f565b60405180602001604052806000815250604051806020016040528060008152505b809250819350505061159b611573866120b7565b838360405160200161158793929190613a2e565b604051602081830303815290604052612280565b6040516020016115ab9190613a8b565b6040516020818303038152906040529350505050919050565b60606000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506060808273ffffffffffffffffffffffffffffffffffffffff16636dcee4ca611616600c611c22565b4261162191906144e3565b6040518263ffffffff1660e01b815260040161163d9190613eeb565b60006040518083038186803b15801561165557600080fd5b505afa158015611669573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061169291906133fc565b80925081935050506116cc826116a73061243e565b6040516020016116b8929190613aad565b604051602081830303815290604052612280565b6040516020016116dc9190613a8b565b604051602081830303815290604052935050505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178f611b61565b73ffffffffffffffffffffffffffffffffffffffff166117ad6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90613dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90613beb565b60405180910390fd5b61187c81611f95565b50565b611887611b61565b73ffffffffffffffffffffffffffffffffffffffff166118a56111cc565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290613dcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613c0b565b60405180910390fd5b6000479050600081116119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613d8b565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff16836040516119d990613af2565b60006040518083038185875af1925050503d8060008114611a16576040519150601f19603f3d011682016040523d82523d6000602084013e611a1b565b606091505b5050905080611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690613e0b565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aee5750611aed82612673565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bdc83610d97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611c3b82611af5565b611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190613ceb565b60405180910390fd5b6000611c8583610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cf457508373ffffffffffffffffffffffffffffffffffffffff16611cdc846107aa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d055750611d0481856116f3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d2e82610d97565b73ffffffffffffffffffffffffffffffffffffffff1614611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613c6b565b60405180910390fd5b611dff838383612755565b611e0a600082611b69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5a91906142d0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb19190613fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f84828260405180602001604052806000815250612765565b5050565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612066848484611d0e565b612072848484846127c0565b6120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613bcb565b60405180910390fd5b50505050565b606060008214156120ff576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061227b565b600082905060005b6000821461213157808061211a9061449a565b915050600a8261212a9190614068565b9150612107565b60008167ffffffffffffffff811115612173577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121a55781602001600182028036833780820191505090505b50905060008290508593505b6000841461227357600a80876121c79190614068565b6121d1919061423b565b866121dc91906142d0565b60306121e89190614031565b60f81b82826121f69061440d565b92508281518110612230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8461226c9190614068565b93506121b1565b819450505050505b919050565b606060008251905060008114156122a95760405180602001604052806000815250915050612439565b600060036002836122ba9190613fdb565b6122c49190614068565b60046122d0919061423b565b905060006020826122e19190613fdb565b67ffffffffffffffff811115612320577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123525781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161515a604091399050600181016020830160005b868110156123f65760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505061237d565b50600386066001811461241057600281146124205761242b565b613d3d60f01b600283035261242b565b603d60f81b60018303525b508484525050819450505050505b919050565b60606000602867ffffffffffffffff811115612483577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b55781602001600182028036833780820191505090505b50905060005b60148110156126695760008160136124d391906142d0565b60086124df919061423b565b60026124eb919061411d565b8573ffffffffffffffffffffffffffffffffffffffff1661250c9190614068565b60f81b9050600060108260f81c6125239190614099565b60f81b905060008160f81c601061253a9190614295565b8360f81c6125489190614304565b60f81b905061255682612957565b85856002612564919061423b565b8151811061259b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125d381612957565b8560018660026125e3919061423b565b6125ed9190613fdb565b81518110612624577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505080806126619061449a565b9150506124bb565b5080915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061274e575061274d8261299d565b5b9050919050565b612760838383612a07565b505050565b61276f8383612b1b565b61277c60008484846127c0565b6127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b290613bcb565b60405180910390fd5b505050565b60006127e18473ffffffffffffffffffffffffffffffffffffffff16612ce9565b1561294a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261280a611b61565b8786866040518563ffffffff1660e01b815260040161282c9493929190613b22565b602060405180830381600087803b15801561284657600080fd5b505af192505050801561287757506040513d601f19601f8201168201806040525081019061287491906133d3565b60015b6128fa573d80600081146128a7576040519150601f19603f3d011682016040523d82523d6000602084013e6128ac565b606091505b506000815114156128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990613bcb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061294f565b600190505b949350505050565b6000600a8260f81c60ff1610156129825760308260f81c6129789190614031565b60f81b9050612998565b60578260f81c6129929190614031565b60f81b90505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a12838383612cfc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5557612a5081612d01565b612a94565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a9357612a928382612d4a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad757612ad281612eb7565b612b16565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b1557612b148282612ffa565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8290613d6b565b60405180910390fd5b612b9481611af5565b15612bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcb90613c2b565b60405180910390fd5b612be060008383612755565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c309190613fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d5784610f50565b612d6191906142d0565b9050600060076000848152602001908152602001600020549050818114612e46576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ecb91906142d0565b9050600060096000848152602001908152602001600020549050600060088381548110612f21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612f69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612fde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061300583610f50565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600061308c61308784613f2b565b613f06565b9050828152602081018484840111156130a457600080fd5b6130af8482856143cb565b509392505050565b60006130ca6130c584613f5c565b613f06565b9050828152602081018484840111156130e257600080fd5b6130ed8482856143da565b509392505050565b600081359050613104816150e6565b92915050565b600081359050613119816150fd565b92915050565b60008135905061312e81615114565b92915050565b6000813590506131438161512b565b92915050565b6000815190506131588161512b565b92915050565b600082601f83011261316f57600080fd5b813561317f848260208601613079565b91505092915050565b600082601f83011261319957600080fd5b81516131a98482602086016130b7565b91505092915050565b6000813590506131c181615142565b92915050565b6000602082840312156131d957600080fd5b60006131e7848285016130f5565b91505092915050565b6000806040838503121561320357600080fd5b60006132118582860161310a565b9250506020613222858286016131b2565b9150509250929050565b6000806040838503121561323f57600080fd5b600061324d858286016130f5565b925050602061325e858286016130f5565b9150509250929050565b60008060006060848603121561327d57600080fd5b600061328b868287016130f5565b935050602061329c868287016130f5565b92505060406132ad868287016131b2565b9150509250925092565b600080600080608085870312156132cd57600080fd5b60006132db878288016130f5565b94505060206132ec878288016130f5565b93505060406132fd878288016131b2565b925050606085013567ffffffffffffffff81111561331a57600080fd5b6133268782880161315e565b91505092959194509250565b6000806040838503121561334557600080fd5b6000613353858286016130f5565b92505060206133648582860161311f565b9150509250929050565b6000806040838503121561338157600080fd5b600061338f858286016130f5565b92505060206133a0858286016131b2565b9150509250929050565b6000602082840312156133bc57600080fd5b60006133ca84828501613134565b91505092915050565b6000602082840312156133e557600080fd5b60006133f384828501613149565b91505092915050565b6000806040838503121561340f57600080fd5b600083015167ffffffffffffffff81111561342957600080fd5b61343585828601613188565b925050602083015167ffffffffffffffff81111561345257600080fd5b61345e85828601613188565b9150509250929050565b60006020828403121561347a57600080fd5b6000613488848285016131b2565b91505092915050565b61349a81614338565b82525050565b6134a98161435c565b82525050565b60006134ba82613f8d565b6134c48185613fa3565b93506134d48185602086016143da565b6134dd816145d0565b840191505092915050565b60006134f382613f98565b6134fd8185613fbf565b935061350d8185602086016143da565b613516816145d0565b840191505092915050565b600061352c82613f98565b6135368185613fd0565b93506135468185602086016143da565b80840191505092915050565b600061355f600b83613fd0565b915061356a826145ee565b600b82019050919050565b6000613582602b83613fbf565b915061358d82614617565b604082019050919050565b60006135a5603283613fbf565b91506135b082614666565b604082019050919050565b60006135c8602683613fbf565b91506135d3826146b5565b604082019050919050565b60006135eb602983613fbf565b91506135f682614704565b604082019050919050565b600061360f61013f83613fd0565b915061361a82614753565b61013f82019050919050565b6000613633601c83613fbf565b915061363e826148d4565b602082019050919050565b6000613656601a83613fbf565b9150613661826148fd565b602082019050919050565b6000613679602483613fbf565b915061368482614926565b604082019050919050565b600061369c601983613fbf565b91506136a782614975565b602082019050919050565b60006136bf602883613fbf565b91506136ca8261499e565b604082019050919050565b60006136e2601f83613fbf565b91506136ed826149ed565b602082019050919050565b6000613705602c83613fbf565b915061371082614a16565b604082019050919050565b6000613728603883613fbf565b915061373382614a65565b604082019050919050565b600061374b602a83613fbf565b915061375682614ab4565b604082019050919050565b600061376e602983613fbf565b915061377982614b03565b604082019050919050565b6000613791601083613fd0565b915061379c82614b52565b601082019050919050565b60006137b4600283613fd0565b91506137bf82614b7b565b600282019050919050565b60006137d7602083613fbf565b91506137e282614ba4565b602082019050919050565b60006137fa601983613fbf565b915061380582614bcd565b602082019050919050565b600061381d602c83613fbf565b915061382882614bf6565b604082019050919050565b6000613840602083613fbf565b915061384b82614c45565b602082019050919050565b6000613863602983613fbf565b915061386e82614c6e565b604082019050919050565b6000613886600283613fd0565b915061389182614cbd565b600282019050919050565b60006138a9601883613fbf565b91506138b482614ce6565b602082019050919050565b60006138cc601283613fbf565b91506138d782614d0f565b602082019050919050565b60006138ef602183613fbf565b91506138fa82614d38565b604082019050919050565b6000613912601683613fbf565b915061391d82614d87565b602082019050919050565b6000613935601d83613fd0565b915061394082614db0565b601d82019050919050565b600061395961014a83613fd0565b915061396482614dd9565b61014a82019050919050565b600061397d600083613fb4565b915061398882614f81565b600082019050919050565b60006139a0606783613fd0565b91506139ab82614f84565b606782019050919050565b60006139c3603183613fbf565b91506139ce8261501f565b604082019050919050565b60006139e6601a83613fbf565b91506139f18261506e565b602082019050919050565b6000613a09602c83613fbf565b9150613a1482615097565b604082019050919050565b613a28816143b4565b82525050565b6000613a3982613601565b9150613a458286613521565b9150613a5082613552565b9150613a5c8285613521565b9150613a6782613784565b9150613a738284613521565b9150613a7e82613879565b9150819050949350505050565b6000613a9682613928565b9150613aa28284613521565b915081905092915050565b6000613ab88261394b565b9150613ac48285613521565b9150613acf82613993565b9150613adb8284613521565b9150613ae6826137a7565b91508190509392505050565b6000613afd82613970565b9150819050919050565b6000602082019050613b1c6000830184613491565b92915050565b6000608082019050613b376000830187613491565b613b446020830186613491565b613b516040830185613a1f565b8181036060830152613b6381846134af565b905095945050505050565b6000602082019050613b8360008301846134a0565b92915050565b60006020820190508181036000830152613ba381846134e8565b905092915050565b60006020820190508181036000830152613bc481613575565b9050919050565b60006020820190508181036000830152613be481613598565b9050919050565b60006020820190508181036000830152613c04816135bb565b9050919050565b60006020820190508181036000830152613c24816135de565b9050919050565b60006020820190508181036000830152613c4481613626565b9050919050565b60006020820190508181036000830152613c6481613649565b9050919050565b60006020820190508181036000830152613c848161366c565b9050919050565b60006020820190508181036000830152613ca48161368f565b9050919050565b60006020820190508181036000830152613cc4816136b2565b9050919050565b60006020820190508181036000830152613ce4816136d5565b9050919050565b60006020820190508181036000830152613d04816136f8565b9050919050565b60006020820190508181036000830152613d248161371b565b9050919050565b60006020820190508181036000830152613d448161373e565b9050919050565b60006020820190508181036000830152613d6481613761565b9050919050565b60006020820190508181036000830152613d84816137ca565b9050919050565b60006020820190508181036000830152613da4816137ed565b9050919050565b60006020820190508181036000830152613dc481613810565b9050919050565b60006020820190508181036000830152613de481613833565b9050919050565b60006020820190508181036000830152613e0481613856565b9050919050565b60006020820190508181036000830152613e248161389c565b9050919050565b60006020820190508181036000830152613e44816138bf565b9050919050565b60006020820190508181036000830152613e64816138e2565b9050919050565b60006020820190508181036000830152613e8481613905565b9050919050565b60006020820190508181036000830152613ea4816139b6565b9050919050565b60006020820190508181036000830152613ec4816139d9565b9050919050565b60006020820190508181036000830152613ee4816139fc565b9050919050565b6000602082019050613f006000830184613a1f565b92915050565b6000613f10613f21565b9050613f1c8282614469565b919050565b6000604051905090565b600067ffffffffffffffff821115613f4657613f456145a1565b5b613f4f826145d0565b9050602081019050919050565b600067ffffffffffffffff821115613f7757613f766145a1565b5b613f80826145d0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fe6826143b4565b9150613ff1836143b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402657614025614514565b5b828201905092915050565b600061403c826143be565b9150614047836143be565b92508260ff0382111561405d5761405c614514565b5b828201905092915050565b6000614073826143b4565b915061407e836143b4565b92508261408e5761408d614543565b5b828204905092915050565b60006140a4826143be565b91506140af836143be565b9250826140bf576140be614543565b5b828204905092915050565b6000808291508390505b6001851115614114578086048111156140f0576140ef614514565b5b60018516156140ff5780820291505b808102905061410d856145e1565b94506140d4565b94509492505050565b6000614128826143b4565b9150614133836143b4565b92506141607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614168565b905092915050565b6000826141785760019050614234565b816141865760009050614234565b816001811461419c57600281146141a6576141d5565b6001915050614234565b60ff8411156141b8576141b7614514565b5b8360020a9150848211156141cf576141ce614514565b5b50614234565b5060208310610133831016604e8410600b841016171561420a5782820a90508381111561420557614204614514565b5b614234565b61421784848460016140ca565b9250905081840481111561422e5761422d614514565b5b81810290505b9392505050565b6000614246826143b4565b9150614251836143b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428a57614289614514565b5b828202905092915050565b60006142a0826143be565b91506142ab836143be565b92508160ff04831182151516156142c5576142c4614514565b5b828202905092915050565b60006142db826143b4565b91506142e6836143b4565b9250828210156142f9576142f8614514565b5b828203905092915050565b600061430f826143be565b915061431a836143be565b92508282101561432d5761432c614514565b5b828203905092915050565b600061434382614394565b9050919050565b600061435582614394565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156143f85780820151818401526020810190506143dd565b83811115614407576000848401525b50505050565b6000614418826143b4565b9150600082141561442c5761442b614514565b5b600182039050919050565b6000600282049050600182168061444f57607f821691505b6020821081141561446357614462614572565b5b50919050565b614472826145d0565b810181811067ffffffffffffffff82111715614491576144906145a1565b5b80604052505050565b60006144a5826143b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144d8576144d7614514565b5b600182019050919050565b60006144ee826143b4565b91506144f9836143b4565b92508261450957614508614543565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f222c22696d616765223a22000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536c6173686573535647416464726573732063616e206e6f742062652061646460008201527f72657373207a65726f0000000000000000000000000000000000000000000000602082015250565b7f7b226465736372697074696f6e223a2254686520536c6173686573207069656360008201527f652070726f706f736573206120766973696f6e206f662074686520706174687360208201527f2077652074616b6520616e64206f66207468652070656f706c6520746861742060408201527f776520656e636f756e746572207468726f7567686f7574206f7572206c69766560608201527f732e2054686973206973207468652066697273742031303025206f6e2d63686160808201527f696e2067656e657261746976652061727420736572696573207573696e67205360a08201527f6f6c696469747920736d6172742d636f6e747261637473206f6e20746865204560c08201527f7468657265756d20626c6f636b636861696e2061732061206d656469756d207460e08201527f6f206f75747075742053564773206279206d616b696f3133352e6574682026206101008201527f636c656d736f732e6574682e222c226e616d65223a22536c617368657320230061012082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e756d626572206f66204e4654732063616e6e6f742062652030000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f7567682045544820746f2070757263686173653a206368656360008201527f6b2070726963652e000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f222c2261747472696275746573223a5b00000000000000000000000000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b7f45786365656473204d41585f535550504c590000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f7b226e616d65223a2022536c6173686573222c226465736372697074696f6e2260008201527f3a202254686520536c61736865732070696563652070726f706f73657320612060208201527f766973696f6e206f66207468652070617468732077652074616b6520616e642060408201527f6f66207468652070656f706c65207468617420776520656e636f756e7465722060608201527f7468726f7567686f7574206f7572206c697665732e205468697320697320746860808201527f652066697273742031303025206f6e2d636861696e2067656e6572617469766560a08201527f2061727420736572696573207573696e6720536f6c696469747920736d61727460c08201527f2d636f6e747261637473206f6e2074686520457468657265756d20626c6f636b60e08201527f636861696e2061732061206d656469756d20746f206f757470757420535647736101008201527f206279206d616b696f3133352e657468202620636c656d736f732e6574682e226101208201527f2c22696d616765223a220000000000000000000000000000000000000000000061014082015250565b50565b7f222c202265787465726e616c5f6c696e6b223a202268747470733a2f2f6d616b60008201527f696f3133352e696f2f736c6173686573222c202273656c6c65725f6665655f6260208201527f617369735f706f696e7473223a20313530302c20226665655f7265636970696560408201527f6e74223a22307800000000000000000000000000000000000000000000000000606082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c79206f70656e000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6150ef81614338565b81146150fa57600080fd5b50565b6151068161434a565b811461511157600080fd5b50565b61511d8161435c565b811461512857600080fd5b50565b61513481614368565b811461513f57600080fd5b50565b61514b816143b4565b811461515657600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122024bc6c12705fd56dd00f12efdf68cfd7a837ce320603b818da67fc05bbda296064736f6c63430008040033

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

000000000000000000000000dc2ff59fd1ec4a2b5af53fc0cd73af2f59e3da96

-----Decoded View---------------
Arg [0] : _SlashesSVGAddress (address): 0xdC2Ff59Fd1Ec4a2b5Af53fC0CD73Af2f59e3DA96

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dc2ff59fd1ec4a2b5af53fc0cd73af2f59e3da96


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.