ETH Price: $3,095.73 (-1.05%)

Token

StrangerStrains (STRN)
 

Overview

Max Total Supply

42 STRN

Holders

24

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
StrangerStrains

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : StrangerStrains.sol
// SPDX-License-Identifier: MIT

/***
*     ____  ____  ____   __   __ _   ___  ____  ____    ____  ____  ____   __   __  __ _  ____ 
*    / ___)(_  _)(  _ \ / _\ (  ( \ / __)(  __)(  _ \  / ___)(_  _)(  _ \ / _\ (  )(  ( \/ ___)
*    \___ \  )(   )   //    \/    /( (_ \ ) _)  )   /  \___ \  )(   )   //    \ )( /    /\___ \
*    (____/ (__) (__\_)\_/\_/\_)__) \___/(____)(__\_)  (____/ (__) (__\_)\_/\_/(__)\_)__)(____/
*/

pragma solidity ^0.8.13;

import '@openzeppelin/contracts/token/ERC1155/ERC1155.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import "https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol";

/** @title Stranger Strains */
contract StrangerStrains is ERC1155, Ownable, ReentrancyGuard, DefaultOperatorFilterer {
    
  string public name;
  string public symbol;

  uint public strainCount = 0;
  uint public totalSupply = 0;

  bool public paused = true;

  struct Strains {
    string name;
    string uri;
    uint id;
    uint maxSupply;
    uint supply;
    uint mintPrice;
  }
  
  mapping(uint => Strains) public strains;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC1155("") {
    name = _tokenName;
    symbol = _tokenSymbol;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
  modifier activeStrain(uint256 _id) {
    require(_exists(_id), "This strain does not exist yet, check back later!");
    _;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Mint functions ~~~~~~~~~~~~~~~~~~~~
  function mint(uint _id) public payable activeStrain(_id) {
    require(!paused, "The contract is paused!");
    require(strains[_id].supply + 1 <= strains[_id].maxSupply, "Max supply for this strain would be exceeded!");
    require(msg.value >= strains[_id].mintPrice, "Insufficient funds!");

    strains[_id].supply++;
    totalSupply++;
    _mint(_msgSender(), _id, 1, "");
  }

  // ~~~~~~~~~~~~~~~~~~~~ Burn functions ~~~~~~~~~~~~~~~~~~~~
  function burn(uint _id, uint _amount) public activeStrain(_id) {
    require(balanceOf(_msgSender(), _id) >= _amount, "Burnt amount would exceed balance");
    strains[_id].supply -= _amount;
    _burn(_msgSender(), _id, _amount);
  }

  // ~~~~~~~~~~~~~~~~~~~~ Various Checks ~~~~~~~~~~~~~~~~~~~~
  function _exists(uint _id) internal view virtual returns (bool) {
    return strains[_id].id != 0;
  }

  function uri(uint _id) public view virtual override returns (string memory) {
    require(_exists(_id), "This strain does not exist yet, check back later!");

    return strains[_id].uri;
  }

  // ~~~~~~~~~~~~~~~~~~~~ OpenSea Filtering overrides ~~~~~~~~~~~~~~~~~~~~ 
  function setApprovalForAll(address operator, bool approved) 
    public 
    override 
    onlyAllowedOperator(operator) 
  {
      super.setApprovalForAll(operator, approved);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, uint256 amount, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
      super.safeTransferFrom(from, to, tokenId, amount, data);
  }

  function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) 
    public 
    virtual 
    override 
    onlyAllowedOperator(from) 
  {
      super.safeBatchTransferFrom(from, to, ids, amounts, data);
  }

  // ~~~~~~~~~~~~~~~~~~~~ Owner functions ~~~~~~~~~~~~~~~~~~~~
  /** @notice Adds new strain with next available id. 
    * @param _name Name of token. Should match name in metadata.
    * @param _uri FULL URI link to id's metadata.
    * @param _maxSupply Max supply for this specific id. 
    * @param _mintPrice Mint price expressed in WEI.
  */
  function addStrain(string memory _name, string memory _uri, uint _maxSupply, uint _mintPrice) external onlyOwner {
    strainCount++;

    Strains memory newStrain = Strains(
      _name,
      _uri,
      strainCount,
      _maxSupply,
      0,
      _mintPrice
    );

    strains[strainCount] = newStrain;
    emit URI(_uri, strainCount);
  }

  function setURI(uint _id, string memory _newUri) external onlyOwner activeStrain(_id) {
    strains[_id].uri = _newUri;
    emit URI(_newUri, _id);
  }

  function setCost(uint _id, uint _newPrice) external onlyOwner activeStrain(_id) {
    strains[_id].mintPrice = _newPrice;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Withdraw functions ~~~~~~~~~~~~~~~~~~~~
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
/*__            __    __                     
 /\ \          /\ \__/\ \              __    
 \_\ \     __  \ \ ,_\ \ \____    ___ /\_\   
 /'_` \  /'__`\ \ \ \/\ \ '__`\  / __`\/\ \  
/\ \L\ \/\ \L\.\_\ \ \_\ \ \L\ \/\ \L\ \ \ \ 
\ \___,_\ \__/.\_\\ \__\\ \_,__/\ \____/\ \_\
 \/__,_ /\/__/\/_/ \/__/ \/___/  \/___/  \/_/
*/
}

File 2 of 14 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 14 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 11 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 13 of 14 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"addStrain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","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":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_newUri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strainCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"strains","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"stateMutability":"view","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060075560006008556001600960006101000a81548160ff0219169083151502179055503480156200003657600080fd5b50604051620052c6380380620052c683398181016040528101906200005c919062000556565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806020016040528060008152506200009481620002e060201b60201c565b50620000b5620000a9620002f560201b60201c565b620002fd60201b60201c565b600160048190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002b257801562000178576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200013e92919062000620565b600060405180830381600087803b1580156200015957600080fd5b505af11580156200016e573d6000803e3d6000fd5b50505050620002b1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000232576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001f892919062000620565b600060405180830381600087803b1580156200021357600080fd5b505af115801562000228573d6000803e3d6000fd5b50505050620002b0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200027b91906200064d565b600060405180830381600087803b1580156200029657600080fd5b505af1158015620002ab573d6000803e3d6000fd5b505050505b5b5b50508160059081620002c59190620008b5565b508060069081620002d79190620008b5565b5050506200099c565b8060029081620002f19190620008b5565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042c82620003e1565b810181811067ffffffffffffffff821117156200044e576200044d620003f2565b5b80604052505050565b600062000463620003c3565b905062000471828262000421565b919050565b600067ffffffffffffffff821115620004945762000493620003f2565b5b6200049f82620003e1565b9050602081019050919050565b60005b83811015620004cc578082015181840152602081019050620004af565b60008484015250505050565b6000620004ef620004e98462000476565b62000457565b9050828152602081018484840111156200050e576200050d620003dc565b5b6200051b848285620004ac565b509392505050565b600082601f8301126200053b576200053a620003d7565b5b81516200054d848260208601620004d8565b91505092915050565b6000806040838503121562000570576200056f620003cd565b5b600083015167ffffffffffffffff811115620005915762000590620003d2565b5b6200059f8582860162000523565b925050602083015167ffffffffffffffff811115620005c357620005c2620003d2565b5b620005d18582860162000523565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060882620005db565b9050919050565b6200061a81620005fb565b82525050565b60006040820190506200063760008301856200060f565b6200064660208301846200060f565b9392505050565b60006020820190506200066460008301846200060f565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006bd57607f821691505b602082108103620006d357620006d262000675565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200073d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006fe565b620007498683620006fe565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000796620007906200078a8462000761565b6200076b565b62000761565b9050919050565b6000819050919050565b620007b28362000775565b620007ca620007c1826200079d565b8484546200070b565b825550505050565b600090565b620007e1620007d2565b620007ee818484620007a7565b505050565b5b8181101562000816576200080a600082620007d7565b600181019050620007f4565b5050565b601f82111562000865576200082f81620006d9565b6200083a84620006ee565b810160208510156200084a578190505b620008626200085985620006ee565b830182620007f3565b50505b505050565b600082821c905092915050565b60006200088a600019846008026200086a565b1980831691505092915050565b6000620008a5838362000877565b9150826002028217905092915050565b620008c0826200066a565b67ffffffffffffffff811115620008dc57620008db620003f2565b5b620008e88254620006a4565b620008f58282856200081a565b600060209050601f8311600181146200092d576000841562000918578287015190505b62000924858262000897565b86555062000994565b601f1984166200093d86620006d9565b60005b82811015620009675784890151825560018201915060208501945060208101905062000940565b8683101562000987578489015162000983601f89168262000877565b8355505b6001600288020188555050505b505050505050565b61491a80620009ac6000396000f3fe60806040526004361061014a5760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb46514610473578063b390c0ab1461049c578063e985e9c5146104c5578063edeed52214610502578063f242432a1461052d578063f2fde38b146105565761014a565b8063715018a6146103985780637696e088146103af578063862440e2146103d85780638da5cb5b1461040157806395d89b411461042c578063a0712d68146104575761014a565b806328d9dd441161010857806328d9dd44146102855780632eb2c2d6146102ae5780633ccfd60b146102d75780633eefcb35146102ee5780634e1273f4146103305780635c975abb1461036d5761014a565b8062fdd58e1461014f57806301ffc9a71461018c57806306fdde03146101c95780630e89341c146101f457806316c38b3c1461023157806318160ddd1461025a575b600080fd5b34801561015b57600080fd5b5061017660048036038101906101719190612c02565b61057f565b6040516101839190612c51565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190612cc4565b610647565b6040516101c09190612d0c565b60405180910390f35b3480156101d557600080fd5b506101de610729565b6040516101eb9190612db7565b60405180910390f35b34801561020057600080fd5b5061021b60048036038101906102169190612dd9565b6107b7565b6040516102289190612db7565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190612e32565b6108a7565b005b34801561026657600080fd5b5061026f6108cc565b60405161027c9190612c51565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612f94565b6108d2565b005b3480156102ba57600080fd5b506102d560048036038101906102d0919061319c565b6109d4565b005b3480156102e357600080fd5b506102ec610bbc565b005b3480156102fa57600080fd5b5061031560048036038101906103109190612dd9565b610c54565b6040516103279695949392919061326b565b60405180910390f35b34801561033c57600080fd5b506103576004803603810190610352919061339d565b610da0565b60405161036491906134d3565b60405180910390f35b34801561037957600080fd5b50610382610eb9565b60405161038f9190612d0c565b60405180910390f35b3480156103a457600080fd5b506103ad610ecc565b005b3480156103bb57600080fd5b506103d660048036038101906103d191906134f5565b610ee0565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613535565b610f51565b005b34801561040d57600080fd5b50610416611003565b60405161042391906135a0565b60405180910390f35b34801561043857600080fd5b5061044161102d565b60405161044e9190612db7565b60405180910390f35b610471600480360381019061046c9190612dd9565b6110bb565b005b34801561047f57600080fd5b5061049a600480360381019061049591906135bb565b611293565b005b3480156104a857600080fd5b506104c360048036038101906104be91906134f5565b611472565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906135fb565b611552565b6040516104f99190612d0c565b60405180910390f35b34801561050e57600080fd5b506105176115e6565b6040516105249190612c51565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f919061363b565b6115ec565b005b34801561056257600080fd5b5061057d600480360381019061057891906136d2565b6117d4565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e690613771565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610722575061072182611857565b5b9050919050565b60058054610736906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610762906137c0565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b505050505081565b60606107c2826118c1565b610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f890613863565b60405180910390fd5b600a60008381526020019081526020016000206001018054610822906137c0565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906137c0565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b50505050509050919050565b6108af6118e4565b80600960006101000a81548160ff02191690831515021790555050565b60085481565b6108da6118e4565b600760008154809291906108ed906138b2565b919050555060006040518060c0016040528086815260200185815260200160075481526020018481526020016000815260200183815250905080600a6000600754815260200190815260200160002060008201518160000190816109519190613aa6565b5060208201518160010190816109679190613aa6565b5060408201518160020155606082015181600301556080820151816004015560a082015181600501559050506007547f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b856040516109c59190612db7565b60405180910390a25050505050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ba6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a4857610a438686868686611962565b610bb4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a91929190613b78565b602060405180830381865afa158015610aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad29190613bb6565b8015610b6457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b22929190613b78565b602060405180830381865afa158015610b3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b639190613bb6565b5b610ba557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b9c91906135a0565b60405180910390fd5b5b610bb38686868686611962565b5b505050505050565b610bc46118e4565b610bcc611a03565b6000610bd6611003565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bf990613c14565b60006040518083038185875af1925050503d8060008114610c36576040519150601f19603f3d011682016040523d82523d6000602084013e610c3b565b606091505b5050905080610c4957600080fd5b50610c52611a52565b565b600a602052806000526040600020600091509050806000018054610c77906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca3906137c0565b8015610cf05780601f10610cc557610100808354040283529160200191610cf0565b820191906000526020600020905b815481529060010190602001808311610cd357829003601f168201915b505050505090806001018054610d05906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d31906137c0565b8015610d7e5780601f10610d5357610100808354040283529160200191610d7e565b820191906000526020600020905b815481529060010190602001808311610d6157829003601f168201915b5050505050908060020154908060030154908060040154908060050154905086565b60608151835114610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613c9b565b60405180910390fd5b6000835167ffffffffffffffff811115610e0357610e02612e69565b5b604051908082528060200260200182016040528015610e315781602001602082028036833780820191505090505b50905060005b8451811015610eae57610e7e858281518110610e5657610e55613cbb565b5b6020026020010151858381518110610e7157610e70613cbb565b5b602002602001015161057f565b828281518110610e9157610e90613cbb565b5b60200260200101818152505080610ea7906138b2565b9050610e37565b508091505092915050565b600960009054906101000a900460ff1681565b610ed46118e4565b610ede6000611a5c565b565b610ee86118e4565b81610ef2816118c1565b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613863565b60405180910390fd5b81600a600085815260200190815260200160002060050181905550505050565b610f596118e4565b81610f63816118c1565b610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613863565b60405180910390fd5b81600a60008581526020019081526020016000206001019081610fc59190613aa6565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b83604051610ff69190612db7565b60405180910390a2505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6006805461103a906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611066906137c0565b80156110b35780601f10611088576101008083540402835291602001916110b3565b820191906000526020600020905b81548152906001019060200180831161109657829003601f168201915b505050505081565b806110c5816118c1565b611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90613863565b60405180910390fd5b600960009054906101000a900460ff1615611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90613d36565b60405180910390fd5b600a6000838152602001908152602001600020600301546001600a60008581526020019081526020016000206004015461118e9190613d56565b11156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613dfc565b60405180910390fd5b600a600083815260200190815260200160002060050154341015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613e68565b60405180910390fd5b600a6000838152602001908152602001600020600401600081548092919061124f906138b2565b919050555060086000815480929190611267906138b2565b919050555061128f611277611b22565b83600160405180602001604052806000815250611b2a565b5050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611462573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611304576112ff8383611cda565b61146d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161134d929190613b78565b602060405180830381865afa15801561136a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138e9190613bb6565b801561142057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113de929190613b78565b602060405180830381865afa1580156113fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141f9190613bb6565b5b61146157336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161145891906135a0565b60405180910390fd5b5b61146c8383611cda565b5b505050565b8161147c816118c1565b6114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290613863565b60405180910390fd5b816114cd6114c7611b22565b8561057f565b101561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590613efa565b60405180910390fd5b81600a600085815260200190815260200160002060040160008282546115349190613f1a565b9250508190555061154d611546611b22565b8484611cf0565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156117be573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116605761165b8686868686611f36565b6117cc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116a9929190613b78565b602060405180830381865afa1580156116c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ea9190613bb6565b801561177c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161173a929190613b78565b602060405180830381865afa158015611757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177b9190613bb6565b5b6117bd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117b491906135a0565b60405180910390fd5b5b6117cb8686868686611f36565b5b505050505050565b6117dc6118e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290613fc0565b60405180910390fd5b61185481611a5c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080600a60008481526020019081526020016000206002015414159050919050565b6118ec611b22565b73ffffffffffffffffffffffffffffffffffffffff1661190a611003565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061402c565b60405180910390fd5b565b61196a611b22565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806119b057506119af856119aa611b22565b611552565b5b6119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e6906140be565b60405180910390fd5b6119fc8585858585611fd7565b5050505050565b600260045403611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f9061412a565b60405180910390fd5b6002600481905550565b6001600481905550565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906141bc565b60405180910390fd5b6000611ba3611b22565b90506000611bb0856122f8565b90506000611bbd856122f8565b9050611bce83600089858589612372565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2d9190613d56565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611cab9291906141dc565b60405180910390a4611cc28360008985858961237a565b611cd183600089898989612382565b50505050505050565b611cec611ce5611b22565b8383612559565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690614277565b60405180910390fd5b6000611d69611b22565b90506000611d76846122f8565b90506000611d83846122f8565b9050611da383876000858560405180602001604052806000815250612372565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190614309565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611f079291906141dc565b60405180910390a4611f2d8488600086866040518060200160405280600081525061237a565b50505050505050565b611f3e611b22565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f845750611f8385611f7e611b22565b611552565b5b611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba906140be565b60405180910390fd5b611fd085858585856126c5565b5050505050565b815183511461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061439b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361208a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120819061442d565b60405180910390fd5b6000612094611b22565b90506120a4818787878787612372565b60005b84518110156122555760008582815181106120c5576120c4613cbb565b5b6020026020010151905060008583815181106120e4576120e3613cbb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c906144bf565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223a9190613d56565b925050819055505050508061224e906138b2565b90506120a7565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122cc9291906144df565b60405180910390a46122e281878787878761237a565b6122f0818787878787612960565b505050505050565b60606000600167ffffffffffffffff81111561231757612316612e69565b5b6040519080825280602002602001820160405280156123455781602001602082028036833780820191505090505b509050828160008151811061235d5761235c613cbb565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6123a18473ffffffffffffffffffffffffffffffffffffffff16612b37565b15612551578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016123e795949392919061456b565b6020604051808303816000875af192505050801561242357506040513d601f19601f8201168201806040525081019061242091906145da565b60015b6124c85761242f614614565b806308c379a00361248b5750612443614636565b8061244e575061248d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124829190612db7565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90614738565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461254f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612546906147ca565b60405180910390fd5b505b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be9061485c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126b89190612d0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b9061442d565b60405180910390fd5b600061273e611b22565b9050600061274b856122f8565b90506000612758856122f8565b9050612768838989858589612372565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f6906144bf565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b49190613d56565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516129319291906141dc565b60405180910390a4612947848a8a86868a61237a565b612955848a8a8a8a8a612382565b505050505050505050565b61297f8473ffffffffffffffffffffffffffffffffffffffff16612b37565b15612b2f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016129c595949392919061487c565b6020604051808303816000875af1925050508015612a0157506040513d601f19601f820116820180604052508101906129fe91906145da565b60015b612aa657612a0d614614565b806308c379a003612a695750612a21614636565b80612a2c5750612a6b565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a609190612db7565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d90614738565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b24906147ca565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9982612b6e565b9050919050565b612ba981612b8e565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b6000819050919050565b612bdf81612bcc565b8114612bea57600080fd5b50565b600081359050612bfc81612bd6565b92915050565b60008060408385031215612c1957612c18612b64565b5b6000612c2785828601612bb7565b9250506020612c3885828601612bed565b9150509250929050565b612c4b81612bcc565b82525050565b6000602082019050612c666000830184612c42565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ca181612c6c565b8114612cac57600080fd5b50565b600081359050612cbe81612c98565b92915050565b600060208284031215612cda57612cd9612b64565b5b6000612ce884828501612caf565b91505092915050565b60008115159050919050565b612d0681612cf1565b82525050565b6000602082019050612d216000830184612cfd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d61578082015181840152602081019050612d46565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d8982612d27565b612d938185612d32565b9350612da3818560208601612d43565b612dac81612d6d565b840191505092915050565b60006020820190508181036000830152612dd18184612d7e565b905092915050565b600060208284031215612def57612dee612b64565b5b6000612dfd84828501612bed565b91505092915050565b612e0f81612cf1565b8114612e1a57600080fd5b50565b600081359050612e2c81612e06565b92915050565b600060208284031215612e4857612e47612b64565b5b6000612e5684828501612e1d565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ea182612d6d565b810181811067ffffffffffffffff82111715612ec057612ebf612e69565b5b80604052505050565b6000612ed3612b5a565b9050612edf8282612e98565b919050565b600067ffffffffffffffff821115612eff57612efe612e69565b5b612f0882612d6d565b9050602081019050919050565b82818337600083830152505050565b6000612f37612f3284612ee4565b612ec9565b905082815260208101848484011115612f5357612f52612e64565b5b612f5e848285612f15565b509392505050565b600082601f830112612f7b57612f7a612e5f565b5b8135612f8b848260208601612f24565b91505092915050565b60008060008060808587031215612fae57612fad612b64565b5b600085013567ffffffffffffffff811115612fcc57612fcb612b69565b5b612fd887828801612f66565b945050602085013567ffffffffffffffff811115612ff957612ff8612b69565b5b61300587828801612f66565b935050604061301687828801612bed565b925050606061302787828801612bed565b91505092959194509250565b600067ffffffffffffffff82111561304e5761304d612e69565b5b602082029050602081019050919050565b600080fd5b600061307761307284613033565b612ec9565b9050808382526020820190506020840283018581111561309a5761309961305f565b5b835b818110156130c357806130af8882612bed565b84526020840193505060208101905061309c565b5050509392505050565b600082601f8301126130e2576130e1612e5f565b5b81356130f2848260208601613064565b91505092915050565b600067ffffffffffffffff82111561311657613115612e69565b5b61311f82612d6d565b9050602081019050919050565b600061313f61313a846130fb565b612ec9565b90508281526020810184848401111561315b5761315a612e64565b5b613166848285612f15565b509392505050565b600082601f83011261318357613182612e5f565b5b813561319384826020860161312c565b91505092915050565b600080600080600060a086880312156131b8576131b7612b64565b5b60006131c688828901612bb7565b95505060206131d788828901612bb7565b945050604086013567ffffffffffffffff8111156131f8576131f7612b69565b5b613204888289016130cd565b935050606086013567ffffffffffffffff81111561322557613224612b69565b5b613231888289016130cd565b925050608086013567ffffffffffffffff81111561325257613251612b69565b5b61325e8882890161316e565b9150509295509295909350565b600060c08201905081810360008301526132858189612d7e565b905081810360208301526132998188612d7e565b90506132a86040830187612c42565b6132b56060830186612c42565b6132c26080830185612c42565b6132cf60a0830184612c42565b979650505050505050565b600067ffffffffffffffff8211156132f5576132f4612e69565b5b602082029050602081019050919050565b6000613319613314846132da565b612ec9565b9050808382526020820190506020840283018581111561333c5761333b61305f565b5b835b8181101561336557806133518882612bb7565b84526020840193505060208101905061333e565b5050509392505050565b600082601f83011261338457613383612e5f565b5b8135613394848260208601613306565b91505092915050565b600080604083850312156133b4576133b3612b64565b5b600083013567ffffffffffffffff8111156133d2576133d1612b69565b5b6133de8582860161336f565b925050602083013567ffffffffffffffff8111156133ff576133fe612b69565b5b61340b858286016130cd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61344a81612bcc565b82525050565b600061345c8383613441565b60208301905092915050565b6000602082019050919050565b600061348082613415565b61348a8185613420565b935061349583613431565b8060005b838110156134c65781516134ad8882613450565b97506134b883613468565b925050600181019050613499565b5085935050505092915050565b600060208201905081810360008301526134ed8184613475565b905092915050565b6000806040838503121561350c5761350b612b64565b5b600061351a85828601612bed565b925050602061352b85828601612bed565b9150509250929050565b6000806040838503121561354c5761354b612b64565b5b600061355a85828601612bed565b925050602083013567ffffffffffffffff81111561357b5761357a612b69565b5b61358785828601612f66565b9150509250929050565b61359a81612b8e565b82525050565b60006020820190506135b56000830184613591565b92915050565b600080604083850312156135d2576135d1612b64565b5b60006135e085828601612bb7565b92505060206135f185828601612e1d565b9150509250929050565b6000806040838503121561361257613611612b64565b5b600061362085828601612bb7565b925050602061363185828601612bb7565b9150509250929050565b600080600080600060a0868803121561365757613656612b64565b5b600061366588828901612bb7565b955050602061367688828901612bb7565b945050604061368788828901612bed565b935050606061369888828901612bed565b925050608086013567ffffffffffffffff8111156136b9576136b8612b69565b5b6136c58882890161316e565b9150509295509295909350565b6000602082840312156136e8576136e7612b64565b5b60006136f684828501612bb7565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061375b602a83612d32565b9150613766826136ff565b604082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137d857607f821691505b6020821081036137eb576137ea613791565b5b50919050565b7f546869732073747261696e20646f6573206e6f74206578697374207965742c2060008201527f636865636b206261636b206c6174657221000000000000000000000000000000602082015250565b600061384d603183612d32565b9150613858826137f1565b604082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138bd82612bcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138ef576138ee613883565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261395c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261391f565b613966868361391f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006139a361399e61399984612bcc565b61397e565b612bcc565b9050919050565b6000819050919050565b6139bd83613988565b6139d16139c9826139aa565b84845461392c565b825550505050565b600090565b6139e66139d9565b6139f18184846139b4565b505050565b5b81811015613a1557613a0a6000826139de565b6001810190506139f7565b5050565b601f821115613a5a57613a2b816138fa565b613a348461390f565b81016020851015613a43578190505b613a57613a4f8561390f565b8301826139f6565b50505b505050565b600082821c905092915050565b6000613a7d60001984600802613a5f565b1980831691505092915050565b6000613a968383613a6c565b9150826002028217905092915050565b613aaf82612d27565b67ffffffffffffffff811115613ac857613ac7612e69565b5b613ad282546137c0565b613add828285613a19565b600060209050601f831160018114613b105760008415613afe578287015190505b613b088582613a8a565b865550613b70565b601f198416613b1e866138fa565b60005b82811015613b4657848901518255600182019150602085019450602081019050613b21565b86831015613b635784890151613b5f601f891682613a6c565b8355505b6001600288020188555050505b505050505050565b6000604082019050613b8d6000830185613591565b613b9a6020830184613591565b9392505050565b600081519050613bb081612e06565b92915050565b600060208284031215613bcc57613bcb612b64565b5b6000613bda84828501613ba1565b91505092915050565b600081905092915050565b50565b6000613bfe600083613be3565b9150613c0982613bee565b600082019050919050565b6000613c1f82613bf1565b9150819050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613c85602983612d32565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613d20601783612d32565b9150613d2b82613cea565b602082019050919050565b60006020820190508181036000830152613d4f81613d13565b9050919050565b6000613d6182612bcc565b9150613d6c83612bcc565b9250828201905080821115613d8457613d83613883565b5b92915050565b7f4d617820737570706c7920666f7220746869732073747261696e20776f756c6460008201527f2062652065786365656465642100000000000000000000000000000000000000602082015250565b6000613de6602d83612d32565b9150613df182613d8a565b604082019050919050565b60006020820190508181036000830152613e1581613dd9565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613e52601383612d32565b9150613e5d82613e1c565b602082019050919050565b60006020820190508181036000830152613e8181613e45565b9050919050565b7f4275726e7420616d6f756e7420776f756c64206578636565642062616c616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ee4602183612d32565b9150613eef82613e88565b604082019050919050565b60006020820190508181036000830152613f1381613ed7565b9050919050565b6000613f2582612bcc565b9150613f3083612bcc565b9250828203905081811115613f4857613f47613883565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613faa602683612d32565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614016602083612d32565b915061402182613fe0565b602082019050919050565b6000602082019050818103600083015261404581614009565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006140a8602e83612d32565b91506140b38261404c565b604082019050919050565b600060208201905081810360008301526140d78161409b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614114601f83612d32565b915061411f826140de565b602082019050919050565b6000602082019050818103600083015261414381614107565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006141a6602183612d32565b91506141b18261414a565b604082019050919050565b600060208201905081810360008301526141d581614199565b9050919050565b60006040820190506141f16000830185612c42565b6141fe6020830184612c42565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614261602383612d32565b915061426c82614205565b604082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006142f3602483612d32565b91506142fe82614297565b604082019050919050565b60006020820190508181036000830152614322816142e6565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614385602883612d32565b915061439082614329565b604082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614417602583612d32565b9150614422826143bb565b604082019050919050565b600060208201905081810360008301526144468161440a565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006144a9602a83612d32565b91506144b48261444d565b604082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b600060408201905081810360008301526144f98185613475565b9050818103602083015261450d8184613475565b90509392505050565b600081519050919050565b600082825260208201905092915050565b600061453d82614516565b6145478185614521565b9350614557818560208601612d43565b61456081612d6d565b840191505092915050565b600060a0820190506145806000830188613591565b61458d6020830187613591565b61459a6040830186612c42565b6145a76060830185612c42565b81810360808301526145b98184614532565b90509695505050505050565b6000815190506145d481612c98565b92915050565b6000602082840312156145f0576145ef612b64565b5b60006145fe848285016145c5565b91505092915050565b60008160e01c9050919050565b600060033d11156146335760046000803e614630600051614607565b90505b90565b600060443d106146c357614648612b5a565b60043d036004823e80513d602482011167ffffffffffffffff821117156146705750506146c3565b808201805167ffffffffffffffff81111561468e57505050506146c3565b80602083010160043d0385018111156146ab5750505050506146c3565b6146ba82602001850186612e98565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614722603483612d32565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006147b4602883612d32565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614846602983612d32565b9150614851826147ea565b604082019050919050565b6000602082019050818103600083015261487581614839565b9050919050565b600060a0820190506148916000830188613591565b61489e6020830187613591565b81810360408301526148b08186613475565b905081810360608301526148c48185613475565b905081810360808301526148d88184614532565b9050969550505050505056fea26469706673582212206c4e6ae89b0761958bc18fa2eb8955e976225235c1f4fca4235d4454951b65f964736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f537472616e67657253747261696e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045354524e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061014a5760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb46514610473578063b390c0ab1461049c578063e985e9c5146104c5578063edeed52214610502578063f242432a1461052d578063f2fde38b146105565761014a565b8063715018a6146103985780637696e088146103af578063862440e2146103d85780638da5cb5b1461040157806395d89b411461042c578063a0712d68146104575761014a565b806328d9dd441161010857806328d9dd44146102855780632eb2c2d6146102ae5780633ccfd60b146102d75780633eefcb35146102ee5780634e1273f4146103305780635c975abb1461036d5761014a565b8062fdd58e1461014f57806301ffc9a71461018c57806306fdde03146101c95780630e89341c146101f457806316c38b3c1461023157806318160ddd1461025a575b600080fd5b34801561015b57600080fd5b5061017660048036038101906101719190612c02565b61057f565b6040516101839190612c51565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190612cc4565b610647565b6040516101c09190612d0c565b60405180910390f35b3480156101d557600080fd5b506101de610729565b6040516101eb9190612db7565b60405180910390f35b34801561020057600080fd5b5061021b60048036038101906102169190612dd9565b6107b7565b6040516102289190612db7565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190612e32565b6108a7565b005b34801561026657600080fd5b5061026f6108cc565b60405161027c9190612c51565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612f94565b6108d2565b005b3480156102ba57600080fd5b506102d560048036038101906102d0919061319c565b6109d4565b005b3480156102e357600080fd5b506102ec610bbc565b005b3480156102fa57600080fd5b5061031560048036038101906103109190612dd9565b610c54565b6040516103279695949392919061326b565b60405180910390f35b34801561033c57600080fd5b506103576004803603810190610352919061339d565b610da0565b60405161036491906134d3565b60405180910390f35b34801561037957600080fd5b50610382610eb9565b60405161038f9190612d0c565b60405180910390f35b3480156103a457600080fd5b506103ad610ecc565b005b3480156103bb57600080fd5b506103d660048036038101906103d191906134f5565b610ee0565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613535565b610f51565b005b34801561040d57600080fd5b50610416611003565b60405161042391906135a0565b60405180910390f35b34801561043857600080fd5b5061044161102d565b60405161044e9190612db7565b60405180910390f35b610471600480360381019061046c9190612dd9565b6110bb565b005b34801561047f57600080fd5b5061049a600480360381019061049591906135bb565b611293565b005b3480156104a857600080fd5b506104c360048036038101906104be91906134f5565b611472565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906135fb565b611552565b6040516104f99190612d0c565b60405180910390f35b34801561050e57600080fd5b506105176115e6565b6040516105249190612c51565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f919061363b565b6115ec565b005b34801561056257600080fd5b5061057d600480360381019061057891906136d2565b6117d4565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e690613771565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610722575061072182611857565b5b9050919050565b60058054610736906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610762906137c0565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b505050505081565b60606107c2826118c1565b610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f890613863565b60405180910390fd5b600a60008381526020019081526020016000206001018054610822906137c0565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906137c0565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b50505050509050919050565b6108af6118e4565b80600960006101000a81548160ff02191690831515021790555050565b60085481565b6108da6118e4565b600760008154809291906108ed906138b2565b919050555060006040518060c0016040528086815260200185815260200160075481526020018481526020016000815260200183815250905080600a6000600754815260200190815260200160002060008201518160000190816109519190613aa6565b5060208201518160010190816109679190613aa6565b5060408201518160020155606082015181600301556080820151816004015560a082015181600501559050506007547f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b856040516109c59190612db7565b60405180910390a25050505050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ba6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a4857610a438686868686611962565b610bb4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a91929190613b78565b602060405180830381865afa158015610aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad29190613bb6565b8015610b6457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b22929190613b78565b602060405180830381865afa158015610b3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b639190613bb6565b5b610ba557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b9c91906135a0565b60405180910390fd5b5b610bb38686868686611962565b5b505050505050565b610bc46118e4565b610bcc611a03565b6000610bd6611003565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bf990613c14565b60006040518083038185875af1925050503d8060008114610c36576040519150601f19603f3d011682016040523d82523d6000602084013e610c3b565b606091505b5050905080610c4957600080fd5b50610c52611a52565b565b600a602052806000526040600020600091509050806000018054610c77906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca3906137c0565b8015610cf05780601f10610cc557610100808354040283529160200191610cf0565b820191906000526020600020905b815481529060010190602001808311610cd357829003601f168201915b505050505090806001018054610d05906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d31906137c0565b8015610d7e5780601f10610d5357610100808354040283529160200191610d7e565b820191906000526020600020905b815481529060010190602001808311610d6157829003601f168201915b5050505050908060020154908060030154908060040154908060050154905086565b60608151835114610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613c9b565b60405180910390fd5b6000835167ffffffffffffffff811115610e0357610e02612e69565b5b604051908082528060200260200182016040528015610e315781602001602082028036833780820191505090505b50905060005b8451811015610eae57610e7e858281518110610e5657610e55613cbb565b5b6020026020010151858381518110610e7157610e70613cbb565b5b602002602001015161057f565b828281518110610e9157610e90613cbb565b5b60200260200101818152505080610ea7906138b2565b9050610e37565b508091505092915050565b600960009054906101000a900460ff1681565b610ed46118e4565b610ede6000611a5c565b565b610ee86118e4565b81610ef2816118c1565b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613863565b60405180910390fd5b81600a600085815260200190815260200160002060050181905550505050565b610f596118e4565b81610f63816118c1565b610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613863565b60405180910390fd5b81600a60008581526020019081526020016000206001019081610fc59190613aa6565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b83604051610ff69190612db7565b60405180910390a2505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6006805461103a906137c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611066906137c0565b80156110b35780601f10611088576101008083540402835291602001916110b3565b820191906000526020600020905b81548152906001019060200180831161109657829003601f168201915b505050505081565b806110c5816118c1565b611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90613863565b60405180910390fd5b600960009054906101000a900460ff1615611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90613d36565b60405180910390fd5b600a6000838152602001908152602001600020600301546001600a60008581526020019081526020016000206004015461118e9190613d56565b11156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613dfc565b60405180910390fd5b600a600083815260200190815260200160002060050154341015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613e68565b60405180910390fd5b600a6000838152602001908152602001600020600401600081548092919061124f906138b2565b919050555060086000815480929190611267906138b2565b919050555061128f611277611b22565b83600160405180602001604052806000815250611b2a565b5050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611462573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611304576112ff8383611cda565b61146d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161134d929190613b78565b602060405180830381865afa15801561136a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138e9190613bb6565b801561142057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113de929190613b78565b602060405180830381865afa1580156113fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141f9190613bb6565b5b61146157336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161145891906135a0565b60405180910390fd5b5b61146c8383611cda565b5b505050565b8161147c816118c1565b6114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290613863565b60405180910390fd5b816114cd6114c7611b22565b8561057f565b101561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590613efa565b60405180910390fd5b81600a600085815260200190815260200160002060040160008282546115349190613f1a565b9250508190555061154d611546611b22565b8484611cf0565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156117be573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116605761165b8686868686611f36565b6117cc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116a9929190613b78565b602060405180830381865afa1580156116c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ea9190613bb6565b801561177c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161173a929190613b78565b602060405180830381865afa158015611757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177b9190613bb6565b5b6117bd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117b491906135a0565b60405180910390fd5b5b6117cb8686868686611f36565b5b505050505050565b6117dc6118e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290613fc0565b60405180910390fd5b61185481611a5c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080600a60008481526020019081526020016000206002015414159050919050565b6118ec611b22565b73ffffffffffffffffffffffffffffffffffffffff1661190a611003565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061402c565b60405180910390fd5b565b61196a611b22565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806119b057506119af856119aa611b22565b611552565b5b6119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e6906140be565b60405180910390fd5b6119fc8585858585611fd7565b5050505050565b600260045403611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f9061412a565b60405180910390fd5b6002600481905550565b6001600481905550565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906141bc565b60405180910390fd5b6000611ba3611b22565b90506000611bb0856122f8565b90506000611bbd856122f8565b9050611bce83600089858589612372565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2d9190613d56565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611cab9291906141dc565b60405180910390a4611cc28360008985858961237a565b611cd183600089898989612382565b50505050505050565b611cec611ce5611b22565b8383612559565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690614277565b60405180910390fd5b6000611d69611b22565b90506000611d76846122f8565b90506000611d83846122f8565b9050611da383876000858560405180602001604052806000815250612372565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190614309565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611f079291906141dc565b60405180910390a4611f2d8488600086866040518060200160405280600081525061237a565b50505050505050565b611f3e611b22565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f845750611f8385611f7e611b22565b611552565b5b611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba906140be565b60405180910390fd5b611fd085858585856126c5565b5050505050565b815183511461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061439b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361208a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120819061442d565b60405180910390fd5b6000612094611b22565b90506120a4818787878787612372565b60005b84518110156122555760008582815181106120c5576120c4613cbb565b5b6020026020010151905060008583815181106120e4576120e3613cbb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c906144bf565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223a9190613d56565b925050819055505050508061224e906138b2565b90506120a7565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122cc9291906144df565b60405180910390a46122e281878787878761237a565b6122f0818787878787612960565b505050505050565b60606000600167ffffffffffffffff81111561231757612316612e69565b5b6040519080825280602002602001820160405280156123455781602001602082028036833780820191505090505b509050828160008151811061235d5761235c613cbb565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6123a18473ffffffffffffffffffffffffffffffffffffffff16612b37565b15612551578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016123e795949392919061456b565b6020604051808303816000875af192505050801561242357506040513d601f19601f8201168201806040525081019061242091906145da565b60015b6124c85761242f614614565b806308c379a00361248b5750612443614636565b8061244e575061248d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124829190612db7565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90614738565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461254f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612546906147ca565b60405180910390fd5b505b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be9061485c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126b89190612d0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b9061442d565b60405180910390fd5b600061273e611b22565b9050600061274b856122f8565b90506000612758856122f8565b9050612768838989858589612372565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f6906144bf565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b49190613d56565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516129319291906141dc565b60405180910390a4612947848a8a86868a61237a565b612955848a8a8a8a8a612382565b505050505050505050565b61297f8473ffffffffffffffffffffffffffffffffffffffff16612b37565b15612b2f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016129c595949392919061487c565b6020604051808303816000875af1925050508015612a0157506040513d601f19601f820116820180604052508101906129fe91906145da565b60015b612aa657612a0d614614565b806308c379a003612a695750612a21614636565b80612a2c5750612a6b565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a609190612db7565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d90614738565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b24906147ca565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9982612b6e565b9050919050565b612ba981612b8e565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b6000819050919050565b612bdf81612bcc565b8114612bea57600080fd5b50565b600081359050612bfc81612bd6565b92915050565b60008060408385031215612c1957612c18612b64565b5b6000612c2785828601612bb7565b9250506020612c3885828601612bed565b9150509250929050565b612c4b81612bcc565b82525050565b6000602082019050612c666000830184612c42565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ca181612c6c565b8114612cac57600080fd5b50565b600081359050612cbe81612c98565b92915050565b600060208284031215612cda57612cd9612b64565b5b6000612ce884828501612caf565b91505092915050565b60008115159050919050565b612d0681612cf1565b82525050565b6000602082019050612d216000830184612cfd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d61578082015181840152602081019050612d46565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d8982612d27565b612d938185612d32565b9350612da3818560208601612d43565b612dac81612d6d565b840191505092915050565b60006020820190508181036000830152612dd18184612d7e565b905092915050565b600060208284031215612def57612dee612b64565b5b6000612dfd84828501612bed565b91505092915050565b612e0f81612cf1565b8114612e1a57600080fd5b50565b600081359050612e2c81612e06565b92915050565b600060208284031215612e4857612e47612b64565b5b6000612e5684828501612e1d565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ea182612d6d565b810181811067ffffffffffffffff82111715612ec057612ebf612e69565b5b80604052505050565b6000612ed3612b5a565b9050612edf8282612e98565b919050565b600067ffffffffffffffff821115612eff57612efe612e69565b5b612f0882612d6d565b9050602081019050919050565b82818337600083830152505050565b6000612f37612f3284612ee4565b612ec9565b905082815260208101848484011115612f5357612f52612e64565b5b612f5e848285612f15565b509392505050565b600082601f830112612f7b57612f7a612e5f565b5b8135612f8b848260208601612f24565b91505092915050565b60008060008060808587031215612fae57612fad612b64565b5b600085013567ffffffffffffffff811115612fcc57612fcb612b69565b5b612fd887828801612f66565b945050602085013567ffffffffffffffff811115612ff957612ff8612b69565b5b61300587828801612f66565b935050604061301687828801612bed565b925050606061302787828801612bed565b91505092959194509250565b600067ffffffffffffffff82111561304e5761304d612e69565b5b602082029050602081019050919050565b600080fd5b600061307761307284613033565b612ec9565b9050808382526020820190506020840283018581111561309a5761309961305f565b5b835b818110156130c357806130af8882612bed565b84526020840193505060208101905061309c565b5050509392505050565b600082601f8301126130e2576130e1612e5f565b5b81356130f2848260208601613064565b91505092915050565b600067ffffffffffffffff82111561311657613115612e69565b5b61311f82612d6d565b9050602081019050919050565b600061313f61313a846130fb565b612ec9565b90508281526020810184848401111561315b5761315a612e64565b5b613166848285612f15565b509392505050565b600082601f83011261318357613182612e5f565b5b813561319384826020860161312c565b91505092915050565b600080600080600060a086880312156131b8576131b7612b64565b5b60006131c688828901612bb7565b95505060206131d788828901612bb7565b945050604086013567ffffffffffffffff8111156131f8576131f7612b69565b5b613204888289016130cd565b935050606086013567ffffffffffffffff81111561322557613224612b69565b5b613231888289016130cd565b925050608086013567ffffffffffffffff81111561325257613251612b69565b5b61325e8882890161316e565b9150509295509295909350565b600060c08201905081810360008301526132858189612d7e565b905081810360208301526132998188612d7e565b90506132a86040830187612c42565b6132b56060830186612c42565b6132c26080830185612c42565b6132cf60a0830184612c42565b979650505050505050565b600067ffffffffffffffff8211156132f5576132f4612e69565b5b602082029050602081019050919050565b6000613319613314846132da565b612ec9565b9050808382526020820190506020840283018581111561333c5761333b61305f565b5b835b8181101561336557806133518882612bb7565b84526020840193505060208101905061333e565b5050509392505050565b600082601f83011261338457613383612e5f565b5b8135613394848260208601613306565b91505092915050565b600080604083850312156133b4576133b3612b64565b5b600083013567ffffffffffffffff8111156133d2576133d1612b69565b5b6133de8582860161336f565b925050602083013567ffffffffffffffff8111156133ff576133fe612b69565b5b61340b858286016130cd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61344a81612bcc565b82525050565b600061345c8383613441565b60208301905092915050565b6000602082019050919050565b600061348082613415565b61348a8185613420565b935061349583613431565b8060005b838110156134c65781516134ad8882613450565b97506134b883613468565b925050600181019050613499565b5085935050505092915050565b600060208201905081810360008301526134ed8184613475565b905092915050565b6000806040838503121561350c5761350b612b64565b5b600061351a85828601612bed565b925050602061352b85828601612bed565b9150509250929050565b6000806040838503121561354c5761354b612b64565b5b600061355a85828601612bed565b925050602083013567ffffffffffffffff81111561357b5761357a612b69565b5b61358785828601612f66565b9150509250929050565b61359a81612b8e565b82525050565b60006020820190506135b56000830184613591565b92915050565b600080604083850312156135d2576135d1612b64565b5b60006135e085828601612bb7565b92505060206135f185828601612e1d565b9150509250929050565b6000806040838503121561361257613611612b64565b5b600061362085828601612bb7565b925050602061363185828601612bb7565b9150509250929050565b600080600080600060a0868803121561365757613656612b64565b5b600061366588828901612bb7565b955050602061367688828901612bb7565b945050604061368788828901612bed565b935050606061369888828901612bed565b925050608086013567ffffffffffffffff8111156136b9576136b8612b69565b5b6136c58882890161316e565b9150509295509295909350565b6000602082840312156136e8576136e7612b64565b5b60006136f684828501612bb7565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061375b602a83612d32565b9150613766826136ff565b604082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137d857607f821691505b6020821081036137eb576137ea613791565b5b50919050565b7f546869732073747261696e20646f6573206e6f74206578697374207965742c2060008201527f636865636b206261636b206c6174657221000000000000000000000000000000602082015250565b600061384d603183612d32565b9150613858826137f1565b604082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138bd82612bcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138ef576138ee613883565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261395c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261391f565b613966868361391f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006139a361399e61399984612bcc565b61397e565b612bcc565b9050919050565b6000819050919050565b6139bd83613988565b6139d16139c9826139aa565b84845461392c565b825550505050565b600090565b6139e66139d9565b6139f18184846139b4565b505050565b5b81811015613a1557613a0a6000826139de565b6001810190506139f7565b5050565b601f821115613a5a57613a2b816138fa565b613a348461390f565b81016020851015613a43578190505b613a57613a4f8561390f565b8301826139f6565b50505b505050565b600082821c905092915050565b6000613a7d60001984600802613a5f565b1980831691505092915050565b6000613a968383613a6c565b9150826002028217905092915050565b613aaf82612d27565b67ffffffffffffffff811115613ac857613ac7612e69565b5b613ad282546137c0565b613add828285613a19565b600060209050601f831160018114613b105760008415613afe578287015190505b613b088582613a8a565b865550613b70565b601f198416613b1e866138fa565b60005b82811015613b4657848901518255600182019150602085019450602081019050613b21565b86831015613b635784890151613b5f601f891682613a6c565b8355505b6001600288020188555050505b505050505050565b6000604082019050613b8d6000830185613591565b613b9a6020830184613591565b9392505050565b600081519050613bb081612e06565b92915050565b600060208284031215613bcc57613bcb612b64565b5b6000613bda84828501613ba1565b91505092915050565b600081905092915050565b50565b6000613bfe600083613be3565b9150613c0982613bee565b600082019050919050565b6000613c1f82613bf1565b9150819050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613c85602983612d32565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613d20601783612d32565b9150613d2b82613cea565b602082019050919050565b60006020820190508181036000830152613d4f81613d13565b9050919050565b6000613d6182612bcc565b9150613d6c83612bcc565b9250828201905080821115613d8457613d83613883565b5b92915050565b7f4d617820737570706c7920666f7220746869732073747261696e20776f756c6460008201527f2062652065786365656465642100000000000000000000000000000000000000602082015250565b6000613de6602d83612d32565b9150613df182613d8a565b604082019050919050565b60006020820190508181036000830152613e1581613dd9565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613e52601383612d32565b9150613e5d82613e1c565b602082019050919050565b60006020820190508181036000830152613e8181613e45565b9050919050565b7f4275726e7420616d6f756e7420776f756c64206578636565642062616c616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ee4602183612d32565b9150613eef82613e88565b604082019050919050565b60006020820190508181036000830152613f1381613ed7565b9050919050565b6000613f2582612bcc565b9150613f3083612bcc565b9250828203905081811115613f4857613f47613883565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613faa602683612d32565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614016602083612d32565b915061402182613fe0565b602082019050919050565b6000602082019050818103600083015261404581614009565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006140a8602e83612d32565b91506140b38261404c565b604082019050919050565b600060208201905081810360008301526140d78161409b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614114601f83612d32565b915061411f826140de565b602082019050919050565b6000602082019050818103600083015261414381614107565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006141a6602183612d32565b91506141b18261414a565b604082019050919050565b600060208201905081810360008301526141d581614199565b9050919050565b60006040820190506141f16000830185612c42565b6141fe6020830184612c42565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614261602383612d32565b915061426c82614205565b604082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006142f3602483612d32565b91506142fe82614297565b604082019050919050565b60006020820190508181036000830152614322816142e6565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614385602883612d32565b915061439082614329565b604082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614417602583612d32565b9150614422826143bb565b604082019050919050565b600060208201905081810360008301526144468161440a565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006144a9602a83612d32565b91506144b48261444d565b604082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b600060408201905081810360008301526144f98185613475565b9050818103602083015261450d8184613475565b90509392505050565b600081519050919050565b600082825260208201905092915050565b600061453d82614516565b6145478185614521565b9350614557818560208601612d43565b61456081612d6d565b840191505092915050565b600060a0820190506145806000830188613591565b61458d6020830187613591565b61459a6040830186612c42565b6145a76060830185612c42565b81810360808301526145b98184614532565b90509695505050505050565b6000815190506145d481612c98565b92915050565b6000602082840312156145f0576145ef612b64565b5b60006145fe848285016145c5565b91505092915050565b60008160e01c9050919050565b600060033d11156146335760046000803e614630600051614607565b90505b90565b600060443d106146c357614648612b5a565b60043d036004823e80513d602482011167ffffffffffffffff821117156146705750506146c3565b808201805167ffffffffffffffff81111561468e57505050506146c3565b80602083010160043d0385018111156146ab5750505050506146c3565b6146ba82602001850186612e98565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614722603483612d32565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006147b4602883612d32565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614846602983612d32565b9150614851826147ea565b604082019050919050565b6000602082019050818103600083015261487581614839565b9050919050565b600060a0820190506148916000830188613591565b61489e6020830187613591565b81810360408301526148b08186613475565b905081810360608301526148c48185613475565b905081810360808301526148d88184614532565b9050969550505050505056fea26469706673582212206c4e6ae89b0761958bc18fa2eb8955e976225235c1f4fca4235d4454951b65f964736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f537472616e67657253747261696e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045354524e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): StrangerStrains
Arg [1] : _tokenSymbol (string): STRN

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 537472616e67657253747261696e730000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5354524e00000000000000000000000000000000000000000000000000000000


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.