ETH Price: $3,405.58 (-0.97%)
Gas: 20 Gwei

Token

 

Overview

Max Total Supply

138

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jasonnaylor.eth
0x19dBcF92Ab399C5E05Df253Caf36A8F1aF8902ab
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:
TokenOfKindness

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 15000 runs

Other Settings:
default evmVersion, None license
File 1 of 14 : TokenOfKindness.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/finance/PaymentSplitter.sol';
import "@openzeppelin/contracts/utils/Counters.sol";
import '@openzeppelin/contracts/utils/Strings.sol';

/// @author no-op (nftlab: https://discord.gg/kH7Gvnr2qp)
/// @title Token of Kindness / Project-K
contract TokenOfKindness is ERC1155, Ownable, PaymentSplitter {
  /** Wallets list */
  mapping(address => uint256) public whitelist;

  /** Maximum number of tokens per tx */
  uint256 public constant MAX_TX = 10;
  /** Maximum amount of tokens in collection */
  uint256 public constant MAX_SUPPLY = 10000;
  /** Price per token */
  uint256 public constant COST = 0.1 ether;

  /** Public sale state */
  bool public sale_active = false;
  /** Presale state */
  bool public presale_active = false;

  /** Total supply */
  Counters.Counter private _supply;
  /** Notify on pay it forward */
  event PayForward(address indexed from, address indexed to, uint256 id);

  /** For URI conversions */
  using Strings for uint256;
  /** For supply count */
  using Counters for Counters.Counter;

  constructor(
    string memory _uri, 
    address[] memory shareholders, 
    uint256[] memory shares
  ) ERC1155(_uri) PaymentSplitter(shareholders, shares) {}

  /// @notice Adds addresses to whitelist with a max buy count
  /// @param wallets The wallets to be added to whitelist
  /// @param count The maximum buy count during presale
  function addWhitelist(address[] memory wallets, uint256[] memory count) external onlyOwner {
    for (uint256 i = 0; i < wallets.length; i++) {
      whitelist[wallets[i]] = count[i];
    }
  }

  /// @notice Sets public sale state
  /// @param val The new value
  function setSaleState(bool val) external onlyOwner {
    sale_active = val;
  }

  /// @notice Sets presale state
  /// @param val The new value
  function setPresaleState(bool val) external onlyOwner {
    presale_active = val;
  }

  /// @notice Sets the base metadata URI
  /// @param val The new URI
  function setBaseURI(string memory val) external onlyOwner {
    _setURI(val);
  }

  /// @notice Returns the amount of OG tokens sold
  /// @return supply The number of OG tokens sold
  function supply() public view returns (uint256) {
    return _supply.current();
  }

  /// @notice Returns the URI for a given token ID
  /// @param id The ID to return URI for
  /// @return Token URI
  function uri(uint256 id) public view override returns (string memory) {
    return string(abi.encodePacked(super.uri(id), id.toString()));
  }

  /// @notice Reserves a set of NFTs for collection owner (giveaways, etc)
  /// @param amt The amount to reserve
  function reserve(uint256 amt) external onlyOwner {
    uint256 _currentSupply = _supply.current();
    for (uint256 i = 0; i < amt; i++) {
      _supply.increment();
      _mint(msg.sender, _currentSupply + i, 1, "0x0000");
    }
  }

  /// @notice Mints a new token in public sale
  /// @param amt The number of tokens to mint
  /// @dev Must send COST * amt in ETH
  function mint(uint256 amt) external payable {
    uint256 _currentSupply = _supply.current();
    require(sale_active, "Sale is not yet active.");
    require(amt <= MAX_TX, "Amount of tokens exceeds transaction limit.");
    require(_currentSupply + amt <= MAX_SUPPLY, "Amount exceeds supply.");
    require(COST * amt <= msg.value, "ETH sent is below cost.");

    for (uint256 i = 0; i < amt; i++) {
      _supply.increment();
      _mint(msg.sender, _currentSupply + i, 1, "0x0000");
    }
  }

  /// @notice Mints a new token in presale
  /// @param amt The number of tokens to mint
  /// @dev Must send COST * amt in ETH
  function preMint(uint256 amt) external payable {
    uint256 _currentSupply = _supply.current();
    require(presale_active, "Presale is not yet active.");
    require(amt <= whitelist[msg.sender], "Amount of tokens exceeds whitelist limit.");
    require(_currentSupply + amt <= MAX_SUPPLY, "Amount exceeds supply.");
    require(COST * amt <= msg.value, "ETH sent is below cost.");

    for (uint256 i = 0; i < amt; i++) {
      _supply.increment();
      whitelist[msg.sender] -= 1;
      _mint(msg.sender, _currentSupply + i, 1, "0x0000");
    }
  }

  /// @notice Pay forward a token in your posession.  Clones the original
  /// @param id The token to pay forward
  /// @param to The address to pay forward to
  function forward(uint256 id, address to) external {
    require(msg.sender != to, "Cannot send to self.");
    require(balanceOf(msg.sender, id) > 0, "Only token owner can pay forward.");
    emit PayForward(msg.sender, to, id);
    _mint(to, id, 1, "0x0000");
  }
}

File 2 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 owner nor 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: transfer caller is not owner nor 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();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

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

        _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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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);

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, account, address(0), id, amount);
    }

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

        address operator = _msgSender();

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

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

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

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @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 `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 _beforeTokenTransfer(
        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 3 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT

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 be 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 4 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 9 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 11 of 14 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 12 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 13 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 14 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address[]","name":"shareholders","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"PayForward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"count","type":"uint256[]"}],"name":"addWhitelist","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":"address","name":"to","type":"address"}],"name":"forward","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":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"reserve","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":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a805461ffff191690553480156200001c57600080fd5b50604051620039c1380380620039c18339810160408190526200003f916200059a565b8181846200004d8162000196565b506200005933620001af565b8051825114620000cb5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200011e5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620000c2565b60005b82518110156200018a57620001758382815181106200014457620001446200078b565b60200260200101518383815181106200016157620001616200078b565b60200260200101516200020160201b60201c565b80620001818162000757565b91505062000121565b505050505050620007b7565b8051620001ab906002906020840190620003ef565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200026e5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620000c2565b60008111620002c05760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620000c2565b6001600160a01b038216600090815260066020526040902054156200033c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620000c2565b60088054600181019091557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319166001600160a01b0384169081179091556000908152600660205260409020819055600454620003a6908290620006ff565b600455604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620003fd906200071a565b90600052602060002090601f0160209004810192826200042157600085556200046c565b82601f106200043c57805160ff19168380011785556200046c565b828001600101855582156200046c579182015b828111156200046c5782518255916020019190600101906200044f565b506200047a9291506200047e565b5090565b5b808211156200047a57600081556001016200047f565b600082601f830112620004a757600080fd5b81516020620004c0620004ba83620006d9565b620006a6565b80838252828201915082860187848660051b8901011115620004e157600080fd5b6000805b86811015620005185782516001600160a01b038116811462000505578283fd5b85529385019391850191600101620004e5565b509198975050505050505050565b600082601f8301126200053857600080fd5b815160206200054b620004ba83620006d9565b80838252828201915082860187848660051b89010111156200056c57600080fd5b60005b858110156200058d578151845292840192908401906001016200056f565b5090979650505050505050565b600080600060608486031215620005b057600080fd5b83516001600160401b0380821115620005c857600080fd5b818601915086601f830112620005dd57600080fd5b815181811115620005f257620005f2620007a1565b602062000608601f8301601f19168201620006a6565b82815289828487010111156200061d57600080fd5b60005b838110156200063d57858101830151828201840152820162000620565b838111156200064f5760008385840101525b5090880151909650925050808211156200066857600080fd5b620006768783880162000495565b935060408601519150808211156200068d57600080fd5b506200069c8682870162000526565b9150509250925092565b604051601f8201601f191681016001600160401b0381118282101715620006d157620006d1620007a1565b604052919050565b60006001600160401b03821115620006f557620006f5620007a1565b5060051b60200190565b6000821982111562000715576200071562000775565b500190565b600181811c908216806200072f57607f821691505b602082108114156200075157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200076e576200076e62000775565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6131fa80620007c76000396000f3fe6080604052600436106101e65760003560e01c80638da5cb5b11610102578063ce7c2ac211610095578063e985e9c511610064578063e985e9c514610628578063f242432a1461067e578063f2fde38b1461069e578063f3b2db3f146106be57600080fd5b8063ce7c2ac214610596578063e0df7216146105d9578063e33b7de3146105f3578063e6d4269d1461060857600080fd5b8063a22cb465116100d1578063a22cb4651461051a578063bce4d6ae1461053a578063bf8fbbd21461055a578063c4e370951461057657600080fd5b80638da5cb5b1461046c5780639852595c146104975780639b19251a146104da578063a0712d681461050757600080fd5b80633a98ef391161017a578063715018a611610149578063715018a6146103df578063819b25ba146103f45780638ad433ac146104145780638b83209b1461042757600080fd5b80633a98ef391461035e5780633eafffdb146103735780634e1273f41461039257806355f804b3146103bf57600080fd5b80630e89341c116101b65780630e89341c146102db57806319165587146103085780632eb2c2d61461032857806332cb6b0c1461034857600080fd5b8062fdd58e1461024157806301ffc9a714610274578063047fc9aa146102a4578063050414bb146102b957600080fd5b3661023c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561024d57600080fd5b5061026161025c366004612a96565b6106d3565b6040519081526020015b60405180910390f35b34801561028057600080fd5b5061029461028f366004612bb0565b610796565b604051901515815260200161026b565b3480156102b057600080fd5b5061026161087b565b3480156102c557600080fd5b506102d96102d4366004612ac2565b61088b565b005b3480156102e757600080fd5b506102fb6102f6366004612c33565b61098c565b60405161026b9190612e21565b34801561031457600080fd5b506102d96103233660046128f4565b6109c7565b34801561033457600080fd5b506102d961034336600461294a565b610c02565b34801561035457600080fd5b5061026161271081565b34801561036a57600080fd5b50600454610261565b34801561037f57600080fd5b50600a5461029490610100900460ff1681565b34801561039e57600080fd5b506103b26103ad366004612ac2565b610cb1565b60405161026b9190612de0565b3480156103cb57600080fd5b506102d96103da366004612bea565b610def565b3480156103eb57600080fd5b506102d9610e62565b34801561040057600080fd5b506102d961040f366004612c33565b610ed5565b6102d9610422366004612c33565b610fbf565b34801561043357600080fd5b50610447610442366004612c33565b6111c4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026b565b34801561047857600080fd5b5060035473ffffffffffffffffffffffffffffffffffffffff16610447565b3480156104a357600080fd5b506102616104b23660046128f4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b3480156104e657600080fd5b506102616104f53660046128f4565b60096020526000908152604090205481565b6102d9610515366004612c33565b611201565b34801561052657600080fd5b506102d9610535366004612a61565b6113cd565b34801561054657600080fd5b506102d9610555366004612b95565b6114f0565b34801561056657600080fd5b5061026167016345785d8a000081565b34801561058257600080fd5b506102d9610591366004612b95565b61158e565b3480156105a257600080fd5b506102616105b13660046128f4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b3480156105e557600080fd5b50600a546102949060ff1681565b3480156105ff57600080fd5b50600554610261565b34801561061457600080fd5b506102d9610623366004612c4c565b611626565b34801561063457600080fd5b50610294610643366004612911565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561068a57600080fd5b506102d96106993660046129f8565b61179e565b3480156106aa57600080fd5b506102d96106b93660046128f4565b611846565b3480156106ca57600080fd5b50610261600a81565b600073ffffffffffffffffffffffffffffffffffffffff83166107635760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061082957507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061087557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6000610886600b5490565b905090565b60035473ffffffffffffffffffffffffffffffffffffffff1633146108f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b60005b82518110156109875781818151811061091057610910613052565b60200260200101516009600085848151811061092e5761092e613052565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061097f90612fa7565b9150506108f5565b505050565b60606109978261193f565b6109a0836119d3565b6040516020016109b1929190612cf6565b6040516020818303038152906040529050919050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040902054610a5f5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f7368617265730000000000000000000000000000000000000000000000000000606482015260840161075a565b600060055447610a6f9190612e58565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600760209081526040808320546004546006909352908320549394509192610ab39085612e84565b610abd9190612e70565b610ac79190612ec1565b905080610b3c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e74000000000000000000000000000000000000000000606482015260840161075a565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260076020526040902054610b6d908290612e58565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020526040902055600554610ba1908290612e58565b600555610bae8382611b0d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480610c2b5750610c2b8533610643565b610c9d5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161075a565b610caa8585858585611c33565b5050505050565b60608151835114610d2a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d617463680000000000000000000000000000000000000000000000606482015260840161075a565b6000835167ffffffffffffffff811115610d4657610d46613081565b604051908082528060200260200182016040528015610d6f578160200160208202803683370190505b50905060005b8451811015610de757610dba858281518110610d9357610d93613052565b6020026020010151858381518110610dad57610dad613052565b60200260200101516106d3565b828281518110610dcc57610dcc613052565b6020908102919091010152610de081612fa7565b9050610d75565b509392505050565b60035473ffffffffffffffffffffffffffffffffffffffff163314610e565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b610e5f81611f1f565b50565b60035473ffffffffffffffffffffffffffffffffffffffff163314610ec95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b610ed36000611f32565b565b60035473ffffffffffffffffffffffffffffffffffffffff163314610f3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b6000610f47600b5490565b905060005b8281101561098757610f62600b80546001019055565b610fad33610f708385612e58565b60016040518060400160405280600681526020017f3078303030300000000000000000000000000000000000000000000000000000815250611fa9565b80610fb781612fa7565b915050610f4c565b6000610fca600b5490565b600a54909150610100900460ff166110245760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f7420796574206163746976652e000000000000604482015260640161075a565b336000908152600960205260409020548211156110a95760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206f6620746f6b656e7320657863656564732077686974656c6960448201527f7374206c696d69742e0000000000000000000000000000000000000000000000606482015260840161075a565b6127106110b68383612e58565b11156111045760405162461bcd60e51b815260206004820152601660248201527f416d6f756e74206578636565647320737570706c792e00000000000000000000604482015260640161075a565b346111178367016345785d8a0000612e84565b11156111655760405162461bcd60e51b815260206004820152601760248201527f4554482073656e742069732062656c6f7720636f73742e000000000000000000604482015260640161075a565b60005b828110156109875761117e600b80546001019055565b33600090815260096020526040812080546001929061119e908490612ec1565b909155506111b2905033610f708385612e58565b806111bc81612fa7565b915050611168565b6000600882815481106111d9576111d9613052565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600061120c600b5490565b600a5490915060ff166112615760405162461bcd60e51b815260206004820152601760248201527f53616c65206973206e6f7420796574206163746976652e000000000000000000604482015260640161075a565b600a8211156112d85760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620746f6b656e732065786365656473207472616e73616360448201527f74696f6e206c696d69742e000000000000000000000000000000000000000000606482015260840161075a565b6127106112e58383612e58565b11156113335760405162461bcd60e51b815260206004820152601660248201527f416d6f756e74206578636565647320737570706c792e00000000000000000000604482015260640161075a565b346113468367016345785d8a0000612e84565b11156113945760405162461bcd60e51b815260206004820152601760248201527f4554482073656e742069732062656c6f7720636f73742e000000000000000000604482015260640161075a565b60005b82811015610987576113ad600b80546001019055565b6113bb33610f708385612e58565b806113c581612fa7565b915050611397565b3373ffffffffffffffffffffffffffffffffffffffff831614156114595760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c660000000000000000000000000000000000000000000000606482015260840161075a565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60035473ffffffffffffffffffffffffffffffffffffffff1633146115575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b600a8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60035473ffffffffffffffffffffffffffffffffffffffff1633146115f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3373ffffffffffffffffffffffffffffffffffffffff8216141561168c5760405162461bcd60e51b815260206004820152601460248201527f43616e6e6f742073656e6420746f2073656c662e000000000000000000000000604482015260640161075a565b600061169833846106d3565b1161170b5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c7920746f6b656e206f776e65722063616e2070617920666f727761726460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015260840161075a565b60405182815273ffffffffffffffffffffffffffffffffffffffff82169033907fa4b8b7287ef879bb3e00b5b16d671b3198dcaf8e9a5f5e7e09e6af69eae037bf9060200160405180910390a361179a818360016040518060400160405280600681526020017f3078303030300000000000000000000000000000000000000000000000000000815250611fa9565b5050565b73ffffffffffffffffffffffffffffffffffffffff85163314806117c757506117c78533610643565b6118395760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f7665640000000000000000000000000000000000000000000000606482015260840161075a565b610caa85858585856120f6565b60035473ffffffffffffffffffffffffffffffffffffffff1633146118ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b73ffffffffffffffffffffffffffffffffffffffff81166119365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161075a565b610e5f81611f32565b60606002805461194e90612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461197a90612f08565b80156119c75780601f1061199c576101008083540402835291602001916119c7565b820191906000526020600020905b8154815290600101906020018083116119aa57829003601f168201915b50505050509050919050565b606081611a1357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a3d5780611a2781612fa7565b9150611a369050600a83612e70565b9150611a17565b60008167ffffffffffffffff811115611a5857611a58613081565b6040519080825280601f01601f191660200182016040528015611a82576020820181803683370190505b5090505b8415611b0557611a97600183612ec1565b9150611aa4600a86612fe0565b611aaf906030612e58565b60f81b818381518110611ac457611ac4613052565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611afe600a86612e70565b9450611a86565b949350505050565b80471015611b5d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161075a565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611bb7576040519150601f19603f3d011682016040523d82523d6000602084013e611bbc565b606091505b50509050806109875760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161075a565b8151835114611caa5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161075a565b73ffffffffffffffffffffffffffffffffffffffff8416611d335760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161075a565b3360005b8451811015611e8a576000858281518110611d5457611d54613052565b602002602001015190506000858381518110611d7257611d72613052565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e168352909352919091205490915081811015611e255760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161075a565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b16825281208054849290611e6f908490612e58565b9250508190555050505080611e8390612fa7565b9050611d37565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f01929190612df3565b60405180910390a4611f178187878787876122f3565b505050505050565b805161179a90600290602084019061272c565b6003805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff84166120325760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161075a565b3361204c816000876120438861253f565b610caa8861253f565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8916845290915281208054859290612089908490612e58565b9091555050604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff80881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610caa8160008787878761258a565b73ffffffffffffffffffffffffffffffffffffffff841661217f5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161075a565b3361218f8187876120438861253f565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a168452909152902054838110156122335760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161075a565b60008581526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b811685529252808320878503905590881682528120805486929061227d908490612e58565b9091555050604080518681526020810186905273ffffffffffffffffffffffffffffffffffffffff808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122ea82888888888861258a565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611f17576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c819061236a9089908990889088908890600401612d25565b602060405180830381600087803b15801561238457600080fd5b505af19250505080156123d2575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526123cf91810190612bcd565b60015b612488576123de6130b0565b806308c379a0141561241857506123f36130cc565b806123fe575061241a565b8060405162461bcd60e51b815260040161075a9190612e21565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840161075a565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146122ea5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161075a565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061257957612579613052565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611f17576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906126019089908990889088908890600401612d90565b602060405180830381600087803b15801561261b57600080fd5b505af1925050508015612669575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261266691810190612bcd565b60015b612675576123de6130b0565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146122ea5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161075a565b82805461273890612f08565b90600052602060002090601f01602090048101928261275a57600085556127a0565b82601f1061277357805160ff19168380011785556127a0565b828001600101855582156127a0579182015b828111156127a0578251825591602001919060010190612785565b506127ac9291506127b0565b5090565b5b808211156127ac57600081556001016127b1565b600067ffffffffffffffff8311156127df576127df613081565b60405161281460207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701160182612f5c565b80915083815284848401111561282957600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261285257600080fd5b8135602061285f82612e34565b60405161286c8282612f5c565b8381528281019150858301600585901b8701840188101561288c57600080fd5b60005b858110156128ab5781358452928401929084019060010161288f565b5090979650505050505050565b803580151581146128c857600080fd5b919050565b600082601f8301126128de57600080fd5b6128ed838335602085016127c5565b9392505050565b60006020828403121561290657600080fd5b81356128ed81613174565b6000806040838503121561292457600080fd5b823561292f81613174565b9150602083013561293f81613174565b809150509250929050565b600080600080600060a0868803121561296257600080fd5b853561296d81613174565b9450602086013561297d81613174565b9350604086013567ffffffffffffffff8082111561299a57600080fd5b6129a689838a01612841565b945060608801359150808211156129bc57600080fd5b6129c889838a01612841565b935060808801359150808211156129de57600080fd5b506129eb888289016128cd565b9150509295509295909350565b600080600080600060a08688031215612a1057600080fd5b8535612a1b81613174565b94506020860135612a2b81613174565b93506040860135925060608601359150608086013567ffffffffffffffff811115612a5557600080fd5b6129eb888289016128cd565b60008060408385031215612a7457600080fd5b8235612a7f81613174565b9150612a8d602084016128b8565b90509250929050565b60008060408385031215612aa957600080fd5b8235612ab481613174565b946020939093013593505050565b60008060408385031215612ad557600080fd5b823567ffffffffffffffff80821115612aed57600080fd5b818501915085601f830112612b0157600080fd5b81356020612b0e82612e34565b604051612b1b8282612f5c565b8381528281019150858301600585901b870184018b1015612b3b57600080fd5b600096505b84871015612b67578035612b5381613174565b835260019690960195918301918301612b40565b5096505086013592505080821115612b7e57600080fd5b50612b8b85828601612841565b9150509250929050565b600060208284031215612ba757600080fd5b6128ed826128b8565b600060208284031215612bc257600080fd5b81356128ed81613196565b600060208284031215612bdf57600080fd5b81516128ed81613196565b600060208284031215612bfc57600080fd5b813567ffffffffffffffff811115612c1357600080fd5b8201601f81018413612c2457600080fd5b611b05848235602084016127c5565b600060208284031215612c4557600080fd5b5035919050565b60008060408385031215612c5f57600080fd5b82359150602083013561293f81613174565b600081518084526020808501945080840160005b83811015612ca157815187529582019590820190600101612c85565b509495945050505050565b60008151808452612cc4816020860160208601612ed8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612d08818460208801612ed8565b835190830190612d1c818360208801612ed8565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152612d5e60a0830186612c71565b8281036060840152612d708186612c71565b90508281036080840152612d848185612cac565b98975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152612dd560a0830184612cac565b979650505050505050565b6020815260006128ed6020830184612c71565b604081526000612e066040830185612c71565b8281036020840152612e188185612c71565b95945050505050565b6020815260006128ed6020830184612cac565b600067ffffffffffffffff821115612e4e57612e4e613081565b5060051b60200190565b60008219821115612e6b57612e6b612ff4565b500190565b600082612e7f57612e7f613023565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ebc57612ebc612ff4565b500290565b600082821015612ed357612ed3612ff4565b500390565b60005b83811015612ef3578181015183820152602001612edb565b83811115612f02576000848401525b50505050565b600181811c90821680612f1c57607f821691505b60208210811415612f56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715612fa057612fa0613081565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fd957612fd9612ff4565b5060010190565b600082612fef57612fef613023565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156130c95760046000803e5060005160e01c5b90565b600060443d10156130da5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561312857505050505090565b82850191508151818111156131405750505050505090565b843d870101602082850101111561315a5750505050505090565b61316960208286010187612f5c565b509095945050505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e5f57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e5f57600080fdfea26469706673582212202976db9bbcce43314284384891deac70e07c52f4add81d134702844bee335c4064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000355524900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000597bd936cb3de880e75c1202c48a6c8ad0025e700000000000000000000000003a2aaafa00cac5796c12f1bee149682e1d07fa1f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005a

Deployed Bytecode

0x6080604052600436106101e65760003560e01c80638da5cb5b11610102578063ce7c2ac211610095578063e985e9c511610064578063e985e9c514610628578063f242432a1461067e578063f2fde38b1461069e578063f3b2db3f146106be57600080fd5b8063ce7c2ac214610596578063e0df7216146105d9578063e33b7de3146105f3578063e6d4269d1461060857600080fd5b8063a22cb465116100d1578063a22cb4651461051a578063bce4d6ae1461053a578063bf8fbbd21461055a578063c4e370951461057657600080fd5b80638da5cb5b1461046c5780639852595c146104975780639b19251a146104da578063a0712d681461050757600080fd5b80633a98ef391161017a578063715018a611610149578063715018a6146103df578063819b25ba146103f45780638ad433ac146104145780638b83209b1461042757600080fd5b80633a98ef391461035e5780633eafffdb146103735780634e1273f41461039257806355f804b3146103bf57600080fd5b80630e89341c116101b65780630e89341c146102db57806319165587146103085780632eb2c2d61461032857806332cb6b0c1461034857600080fd5b8062fdd58e1461024157806301ffc9a714610274578063047fc9aa146102a4578063050414bb146102b957600080fd5b3661023c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561024d57600080fd5b5061026161025c366004612a96565b6106d3565b6040519081526020015b60405180910390f35b34801561028057600080fd5b5061029461028f366004612bb0565b610796565b604051901515815260200161026b565b3480156102b057600080fd5b5061026161087b565b3480156102c557600080fd5b506102d96102d4366004612ac2565b61088b565b005b3480156102e757600080fd5b506102fb6102f6366004612c33565b61098c565b60405161026b9190612e21565b34801561031457600080fd5b506102d96103233660046128f4565b6109c7565b34801561033457600080fd5b506102d961034336600461294a565b610c02565b34801561035457600080fd5b5061026161271081565b34801561036a57600080fd5b50600454610261565b34801561037f57600080fd5b50600a5461029490610100900460ff1681565b34801561039e57600080fd5b506103b26103ad366004612ac2565b610cb1565b60405161026b9190612de0565b3480156103cb57600080fd5b506102d96103da366004612bea565b610def565b3480156103eb57600080fd5b506102d9610e62565b34801561040057600080fd5b506102d961040f366004612c33565b610ed5565b6102d9610422366004612c33565b610fbf565b34801561043357600080fd5b50610447610442366004612c33565b6111c4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026b565b34801561047857600080fd5b5060035473ffffffffffffffffffffffffffffffffffffffff16610447565b3480156104a357600080fd5b506102616104b23660046128f4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b3480156104e657600080fd5b506102616104f53660046128f4565b60096020526000908152604090205481565b6102d9610515366004612c33565b611201565b34801561052657600080fd5b506102d9610535366004612a61565b6113cd565b34801561054657600080fd5b506102d9610555366004612b95565b6114f0565b34801561056657600080fd5b5061026167016345785d8a000081565b34801561058257600080fd5b506102d9610591366004612b95565b61158e565b3480156105a257600080fd5b506102616105b13660046128f4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b3480156105e557600080fd5b50600a546102949060ff1681565b3480156105ff57600080fd5b50600554610261565b34801561061457600080fd5b506102d9610623366004612c4c565b611626565b34801561063457600080fd5b50610294610643366004612911565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561068a57600080fd5b506102d96106993660046129f8565b61179e565b3480156106aa57600080fd5b506102d96106b93660046128f4565b611846565b3480156106ca57600080fd5b50610261600a81565b600073ffffffffffffffffffffffffffffffffffffffff83166107635760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061082957507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061087557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6000610886600b5490565b905090565b60035473ffffffffffffffffffffffffffffffffffffffff1633146108f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b60005b82518110156109875781818151811061091057610910613052565b60200260200101516009600085848151811061092e5761092e613052565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061097f90612fa7565b9150506108f5565b505050565b60606109978261193f565b6109a0836119d3565b6040516020016109b1929190612cf6565b6040516020818303038152906040529050919050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040902054610a5f5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f7368617265730000000000000000000000000000000000000000000000000000606482015260840161075a565b600060055447610a6f9190612e58565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600760209081526040808320546004546006909352908320549394509192610ab39085612e84565b610abd9190612e70565b610ac79190612ec1565b905080610b3c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e74000000000000000000000000000000000000000000606482015260840161075a565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260076020526040902054610b6d908290612e58565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020526040902055600554610ba1908290612e58565b600555610bae8382611b0d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480610c2b5750610c2b8533610643565b610c9d5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161075a565b610caa8585858585611c33565b5050505050565b60608151835114610d2a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d617463680000000000000000000000000000000000000000000000606482015260840161075a565b6000835167ffffffffffffffff811115610d4657610d46613081565b604051908082528060200260200182016040528015610d6f578160200160208202803683370190505b50905060005b8451811015610de757610dba858281518110610d9357610d93613052565b6020026020010151858381518110610dad57610dad613052565b60200260200101516106d3565b828281518110610dcc57610dcc613052565b6020908102919091010152610de081612fa7565b9050610d75565b509392505050565b60035473ffffffffffffffffffffffffffffffffffffffff163314610e565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b610e5f81611f1f565b50565b60035473ffffffffffffffffffffffffffffffffffffffff163314610ec95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b610ed36000611f32565b565b60035473ffffffffffffffffffffffffffffffffffffffff163314610f3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b6000610f47600b5490565b905060005b8281101561098757610f62600b80546001019055565b610fad33610f708385612e58565b60016040518060400160405280600681526020017f3078303030300000000000000000000000000000000000000000000000000000815250611fa9565b80610fb781612fa7565b915050610f4c565b6000610fca600b5490565b600a54909150610100900460ff166110245760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f7420796574206163746976652e000000000000604482015260640161075a565b336000908152600960205260409020548211156110a95760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206f6620746f6b656e7320657863656564732077686974656c6960448201527f7374206c696d69742e0000000000000000000000000000000000000000000000606482015260840161075a565b6127106110b68383612e58565b11156111045760405162461bcd60e51b815260206004820152601660248201527f416d6f756e74206578636565647320737570706c792e00000000000000000000604482015260640161075a565b346111178367016345785d8a0000612e84565b11156111655760405162461bcd60e51b815260206004820152601760248201527f4554482073656e742069732062656c6f7720636f73742e000000000000000000604482015260640161075a565b60005b828110156109875761117e600b80546001019055565b33600090815260096020526040812080546001929061119e908490612ec1565b909155506111b2905033610f708385612e58565b806111bc81612fa7565b915050611168565b6000600882815481106111d9576111d9613052565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600061120c600b5490565b600a5490915060ff166112615760405162461bcd60e51b815260206004820152601760248201527f53616c65206973206e6f7420796574206163746976652e000000000000000000604482015260640161075a565b600a8211156112d85760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620746f6b656e732065786365656473207472616e73616360448201527f74696f6e206c696d69742e000000000000000000000000000000000000000000606482015260840161075a565b6127106112e58383612e58565b11156113335760405162461bcd60e51b815260206004820152601660248201527f416d6f756e74206578636565647320737570706c792e00000000000000000000604482015260640161075a565b346113468367016345785d8a0000612e84565b11156113945760405162461bcd60e51b815260206004820152601760248201527f4554482073656e742069732062656c6f7720636f73742e000000000000000000604482015260640161075a565b60005b82811015610987576113ad600b80546001019055565b6113bb33610f708385612e58565b806113c581612fa7565b915050611397565b3373ffffffffffffffffffffffffffffffffffffffff831614156114595760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c660000000000000000000000000000000000000000000000606482015260840161075a565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60035473ffffffffffffffffffffffffffffffffffffffff1633146115575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b600a8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60035473ffffffffffffffffffffffffffffffffffffffff1633146115f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3373ffffffffffffffffffffffffffffffffffffffff8216141561168c5760405162461bcd60e51b815260206004820152601460248201527f43616e6e6f742073656e6420746f2073656c662e000000000000000000000000604482015260640161075a565b600061169833846106d3565b1161170b5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c7920746f6b656e206f776e65722063616e2070617920666f727761726460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015260840161075a565b60405182815273ffffffffffffffffffffffffffffffffffffffff82169033907fa4b8b7287ef879bb3e00b5b16d671b3198dcaf8e9a5f5e7e09e6af69eae037bf9060200160405180910390a361179a818360016040518060400160405280600681526020017f3078303030300000000000000000000000000000000000000000000000000000815250611fa9565b5050565b73ffffffffffffffffffffffffffffffffffffffff85163314806117c757506117c78533610643565b6118395760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f7665640000000000000000000000000000000000000000000000606482015260840161075a565b610caa85858585856120f6565b60035473ffffffffffffffffffffffffffffffffffffffff1633146118ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b73ffffffffffffffffffffffffffffffffffffffff81166119365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161075a565b610e5f81611f32565b60606002805461194e90612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461197a90612f08565b80156119c75780601f1061199c576101008083540402835291602001916119c7565b820191906000526020600020905b8154815290600101906020018083116119aa57829003601f168201915b50505050509050919050565b606081611a1357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a3d5780611a2781612fa7565b9150611a369050600a83612e70565b9150611a17565b60008167ffffffffffffffff811115611a5857611a58613081565b6040519080825280601f01601f191660200182016040528015611a82576020820181803683370190505b5090505b8415611b0557611a97600183612ec1565b9150611aa4600a86612fe0565b611aaf906030612e58565b60f81b818381518110611ac457611ac4613052565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611afe600a86612e70565b9450611a86565b949350505050565b80471015611b5d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161075a565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611bb7576040519150601f19603f3d011682016040523d82523d6000602084013e611bbc565b606091505b50509050806109875760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161075a565b8151835114611caa5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161075a565b73ffffffffffffffffffffffffffffffffffffffff8416611d335760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161075a565b3360005b8451811015611e8a576000858281518110611d5457611d54613052565b602002602001015190506000858381518110611d7257611d72613052565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e168352909352919091205490915081811015611e255760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161075a565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b16825281208054849290611e6f908490612e58565b9250508190555050505080611e8390612fa7565b9050611d37565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f01929190612df3565b60405180910390a4611f178187878787876122f3565b505050505050565b805161179a90600290602084019061272c565b6003805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff84166120325760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161075a565b3361204c816000876120438861253f565b610caa8861253f565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8916845290915281208054859290612089908490612e58565b9091555050604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff80881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610caa8160008787878761258a565b73ffffffffffffffffffffffffffffffffffffffff841661217f5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161075a565b3361218f8187876120438861253f565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a168452909152902054838110156122335760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161075a565b60008581526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b811685529252808320878503905590881682528120805486929061227d908490612e58565b9091555050604080518681526020810186905273ffffffffffffffffffffffffffffffffffffffff808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122ea82888888888861258a565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611f17576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c819061236a9089908990889088908890600401612d25565b602060405180830381600087803b15801561238457600080fd5b505af19250505080156123d2575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526123cf91810190612bcd565b60015b612488576123de6130b0565b806308c379a0141561241857506123f36130cc565b806123fe575061241a565b8060405162461bcd60e51b815260040161075a9190612e21565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840161075a565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146122ea5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161075a565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061257957612579613052565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611f17576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906126019089908990889088908890600401612d90565b602060405180830381600087803b15801561261b57600080fd5b505af1925050508015612669575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261266691810190612bcd565b60015b612675576123de6130b0565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146122ea5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161075a565b82805461273890612f08565b90600052602060002090601f01602090048101928261275a57600085556127a0565b82601f1061277357805160ff19168380011785556127a0565b828001600101855582156127a0579182015b828111156127a0578251825591602001919060010190612785565b506127ac9291506127b0565b5090565b5b808211156127ac57600081556001016127b1565b600067ffffffffffffffff8311156127df576127df613081565b60405161281460207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701160182612f5c565b80915083815284848401111561282957600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261285257600080fd5b8135602061285f82612e34565b60405161286c8282612f5c565b8381528281019150858301600585901b8701840188101561288c57600080fd5b60005b858110156128ab5781358452928401929084019060010161288f565b5090979650505050505050565b803580151581146128c857600080fd5b919050565b600082601f8301126128de57600080fd5b6128ed838335602085016127c5565b9392505050565b60006020828403121561290657600080fd5b81356128ed81613174565b6000806040838503121561292457600080fd5b823561292f81613174565b9150602083013561293f81613174565b809150509250929050565b600080600080600060a0868803121561296257600080fd5b853561296d81613174565b9450602086013561297d81613174565b9350604086013567ffffffffffffffff8082111561299a57600080fd5b6129a689838a01612841565b945060608801359150808211156129bc57600080fd5b6129c889838a01612841565b935060808801359150808211156129de57600080fd5b506129eb888289016128cd565b9150509295509295909350565b600080600080600060a08688031215612a1057600080fd5b8535612a1b81613174565b94506020860135612a2b81613174565b93506040860135925060608601359150608086013567ffffffffffffffff811115612a5557600080fd5b6129eb888289016128cd565b60008060408385031215612a7457600080fd5b8235612a7f81613174565b9150612a8d602084016128b8565b90509250929050565b60008060408385031215612aa957600080fd5b8235612ab481613174565b946020939093013593505050565b60008060408385031215612ad557600080fd5b823567ffffffffffffffff80821115612aed57600080fd5b818501915085601f830112612b0157600080fd5b81356020612b0e82612e34565b604051612b1b8282612f5c565b8381528281019150858301600585901b870184018b1015612b3b57600080fd5b600096505b84871015612b67578035612b5381613174565b835260019690960195918301918301612b40565b5096505086013592505080821115612b7e57600080fd5b50612b8b85828601612841565b9150509250929050565b600060208284031215612ba757600080fd5b6128ed826128b8565b600060208284031215612bc257600080fd5b81356128ed81613196565b600060208284031215612bdf57600080fd5b81516128ed81613196565b600060208284031215612bfc57600080fd5b813567ffffffffffffffff811115612c1357600080fd5b8201601f81018413612c2457600080fd5b611b05848235602084016127c5565b600060208284031215612c4557600080fd5b5035919050565b60008060408385031215612c5f57600080fd5b82359150602083013561293f81613174565b600081518084526020808501945080840160005b83811015612ca157815187529582019590820190600101612c85565b509495945050505050565b60008151808452612cc4816020860160208601612ed8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612d08818460208801612ed8565b835190830190612d1c818360208801612ed8565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152612d5e60a0830186612c71565b8281036060840152612d708186612c71565b90508281036080840152612d848185612cac565b98975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152612dd560a0830184612cac565b979650505050505050565b6020815260006128ed6020830184612c71565b604081526000612e066040830185612c71565b8281036020840152612e188185612c71565b95945050505050565b6020815260006128ed6020830184612cac565b600067ffffffffffffffff821115612e4e57612e4e613081565b5060051b60200190565b60008219821115612e6b57612e6b612ff4565b500190565b600082612e7f57612e7f613023565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ebc57612ebc612ff4565b500290565b600082821015612ed357612ed3612ff4565b500390565b60005b83811015612ef3578181015183820152602001612edb565b83811115612f02576000848401525b50505050565b600181811c90821680612f1c57607f821691505b60208210811415612f56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715612fa057612fa0613081565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fd957612fd9612ff4565b5060010190565b600082612fef57612fef613023565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156130c95760046000803e5060005160e01c5b90565b600060443d10156130da5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561312857505050505090565b82850191508151818111156131405750505050505090565b843d870101602082850101111561315a5750505050505090565b61316960208286010187612f5c565b509095945050505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e5f57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e5f57600080fdfea26469706673582212202976db9bbcce43314284384891deac70e07c52f4add81d134702844bee335c4064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000355524900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000597bd936cb3de880e75c1202c48a6c8ad0025e700000000000000000000000003a2aaafa00cac5796c12f1bee149682e1d07fa1f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005a

-----Decoded View---------------
Arg [0] : _uri (string): URI
Arg [1] : shareholders (address[]): 0x597bd936CB3de880E75C1202C48a6C8AD0025e70,0x3A2aaaFA00cAC5796c12f1bEe149682e1D07FA1f
Arg [2] : shares (uint256[]): 10,90

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 5552490000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 000000000000000000000000597bd936cb3de880e75c1202c48a6c8ad0025e70
Arg [7] : 0000000000000000000000003a2aaafa00cac5796c12f1bee149682e1d07fa1f
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [10] : 000000000000000000000000000000000000000000000000000000000000005a


Deployed Bytecode Sourcemap

444:4339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2661:40:2;666:10:8;2661:40:2;;;9867:42:14;9855:55;;;9837:74;;2691:9:2;9942:2:14;9927:18;;9920:34;9810:18;2661:40:2;;;;;;;444:4339:0;;;;;2109:228:3;;;;;;;;;;-1:-1:-1;2109:228:3;;;;;:::i;:::-;;:::i;:::-;;;22881:25:14;;;22869:2;22854:18;2109:228:3;;;;;;;;1160:305;;;;;;;;;;-1:-1:-1;1160:305:3;;;;;:::i;:::-;;:::i;:::-;;;12610:14:14;;12603:22;12585:41;;12573:2;12558:18;1160:305:3;12445:187:14;2338:83:0;;;;;;;;;;;;;:::i;1581:193::-;;;;;;;;;;-1:-1:-1;1581:193:0;;;;;:::i;:::-;;:::i;:::-;;2541:142;;;;;;;;;;-1:-1:-1;2541:142:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3825:600:2:-;;;;;;;;;;-1:-1:-1;3825:600:2;;;;;:::i;:::-;;:::i;4137:430:3:-;;;;;;;;;;-1:-1:-1;4137:430:3;;;;;:::i;:::-;;:::i;709:42:0:-;;;;;;;;;;;;746:5;709:42;;2786:89:2;;;;;;;;;;-1:-1:-1;2856:12:2;;2786:89;;910:34:0;;;;;;;;;;-1:-1:-1;910:34:0;;;;;;;;;;;2494:508:3;;;;;;;;;;-1:-1:-1;2494:508:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2152:81:0:-;;;;;;;;;;-1:-1:-1;2152:81:0;;;;;:::i;:::-;;:::i;1605:92:1:-;;;;;;;;;;;;;:::i;2801:233:0:-;;;;;;;;;;-1:-1:-1;2801:233:0;;;;;:::i;:::-;;:::i;3799:553::-;;;;;;:::i;:::-;;:::i;3533:98:2:-;;;;;;;;;;-1:-1:-1;3533:98:2;;;;;:::i;:::-;;:::i;:::-;;;9600:42:14;9588:55;;;9570:74;;9558:2;9543:18;3533:98:2;9424:226:14;973:85:1;;;;;;;;;;-1:-1:-1;1045:6:1;;;;973:85;;3340:107:2;;;;;;;;;;-1:-1:-1;3340:107:2;;;;;:::i;:::-;3422:18;;3396:7;3422:18;;;:9;:18;;;;;;;3340:107;532:44:0;;;;;;;;;;-1:-1:-1;532:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;3170:497;;;;;;:::i;:::-;;:::i;3070:306:3:-;;;;;;;;;;-1:-1:-1;3070:306:3;;;;;:::i;:::-;;:::i;1993:85:0:-;;;;;;;;;;-1:-1:-1;1993:85:0;;;;;:::i;:::-;;:::i;780:40::-;;;;;;;;;;;;811:9;780:40;;1846:79;;;;;;;;;;-1:-1:-1;1846:79:0;;;;;:::i;:::-;;:::i;3143:103:2:-;;;;;;;;;;-1:-1:-1;3143:103:2;;;;;:::i;:::-;3223:16;;3197:7;3223:16;;;:7;:16;;;;;;;3143:103;852:31:0;;;;;;;;;;-1:-1:-1;852:31:0;;;;;;;;2964:93:2;;;;;;;;;;-1:-1:-1;3036:14:2;;2964:93;;4517:264:0;;;;;;;;;;-1:-1:-1;4517:264:0;;;;;:::i;:::-;;:::i;3443:166:3:-;;;;;;;;;;-1:-1:-1;3443:166:3;;;;;:::i;:::-;3565:27;;;;3542:4;3565:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3443:166;3676:389;;;;;;;;;;-1:-1:-1;3676:389:3;;;;;:::i;:::-;;:::i;1846:189:1:-;;;;;;;;;;-1:-1:-1;1846:189:1;;;;;:::i;:::-;;:::i;622:35:0:-;;;;;;;;;;;;655:2;622:35;;2109:228:3;2195:7;2222:21;;;2214:77;;;;-1:-1:-1;;;2214:77:3;;14655:2:14;2214:77:3;;;14637:21:14;14694:2;14674:18;;;14667:30;14733:34;14713:18;;;14706:62;14804:13;14784:18;;;14777:41;14835:19;;2214:77:3;;;;;;;;;-1:-1:-1;2308:9:3;:13;;;;;;;;;;;:22;;;;;;;;;;;;;2109:228::o;1160:305::-;1262:4;1297:41;;;1312:26;1297:41;;:109;;-1:-1:-1;1354:52:3;;;1369:37;1354:52;1297:109;:161;;;-1:-1:-1;886:25:11;871:40;;;;1422:36:3;1278:180;1160:305;-1:-1:-1;;1160:305:3:o;2338:83:0:-;2377:7;2399:17;:7;864:14:9;;773:112;2399:17:0;2392:24;;2338:83;:::o;1581:193::-;1045:6:1;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;1683:9:0::1;1678:92;1702:7;:14;1698:1;:18;1678:92;;;1755:5;1761:1;1755:8;;;;;;;;:::i;:::-;;;;;;;1731:9;:21;1741:7;1749:1;1741:10;;;;;;;;:::i;:::-;;;;;;;1731:21;;;;;;;;;;;;;;;:32;;;;1718:3;;;;;:::i;:::-;;;;1678:92;;;;1581:193:::0;;:::o;2541:142::-;2596:13;2648;2658:2;2648:9;:13::i;:::-;2663;:2;:11;:13::i;:::-;2631:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2617:61;;2541:142;;;:::o;3825:600:2:-;3900:16;;;3919:1;3900:16;;;:7;:16;;;;;;3892:71;;;;-1:-1:-1;;;3892:71:2;;15884:2:14;3892:71:2;;;15866:21:14;15923:2;15903:18;;;15896:30;15962:34;15942:18;;;15935:62;16033:8;16013:18;;;16006:36;16059:19;;3892:71:2;15682:402:14;3892:71:2;3974:21;4022:14;;3998:21;:38;;;;:::i;:::-;4116:18;;;4046:15;4116:18;;;:9;:18;;;;;;;;;4101:12;;4081:7;:16;;;;;;;3974:62;;-1:-1:-1;4046:15:2;;4065:32;;3974:62;4065:32;:::i;:::-;4064:49;;;;:::i;:::-;:70;;;;:::i;:::-;4046:88;-1:-1:-1;4153:12:2;4145:68;;;;-1:-1:-1;;;4145:68:2;;17076:2:14;4145:68:2;;;17058:21:14;17115:2;17095:18;;;17088:30;17154:34;17134:18;;;17127:62;17225:13;17205:18;;;17198:41;17256:19;;4145:68:2;16874:407:14;4145:68:2;4245:18;;;;;;;:9;:18;;;;;;:28;;4266:7;;4245:28;:::i;:::-;4224:18;;;;;;;:9;:18;;;;;:49;4300:14;;:24;;4317:7;;4300:24;:::i;:::-;4283:14;:41;4335:35;4353:7;4362;4335:17;:35::i;:::-;4385:33;;;9867:42:14;9855:55;;9837:74;;9942:2;9927:18;;9920:34;;;4385:33:2;;9810:18:14;4385:33:2;;;;;;;3882:543;;3825:600;:::o;4137:430:3:-;4362:20;;;666:10:8;4362:20:3;;:60;;-1:-1:-1;4386:36:3;4403:4;666:10:8;3443:166:3;:::i;4386:36::-;4341:157;;;;-1:-1:-1;;;4341:157:3;;18245:2:14;4341:157:3;;;18227:21:14;18284:2;18264:18;;;18257:30;18323:34;18303:18;;;18296:62;18394:20;18374:18;;;18367:48;18432:19;;4341:157:3;18043:414:14;4341:157:3;4508:52;4531:4;4537:2;4541:3;4546:7;4555:4;4508:22;:52::i;:::-;4137:430;;;;;:::o;2494:508::-;2645:16;2704:3;:10;2685:8;:15;:29;2677:83;;;;-1:-1:-1;;;2677:83:3;;21361:2:14;2677:83:3;;;21343:21:14;21400:2;21380:18;;;21373:30;21439:34;21419:18;;;21412:62;21510:11;21490:18;;;21483:39;21539:19;;2677:83:3;21159:405:14;2677:83:3;2771:30;2818:8;:15;2804:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2804:30:3;;2771:63;;2850:9;2845:120;2869:8;:15;2865:1;:19;2845:120;;;2924:30;2934:8;2943:1;2934:11;;;;;;;;:::i;:::-;;;;;;;2947:3;2951:1;2947:6;;;;;;;;:::i;:::-;;;;;;;2924:9;:30::i;:::-;2905:13;2919:1;2905:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2886:3;;;:::i;:::-;;;2845:120;;;-1:-1:-1;2982:13:3;2494:508;-1:-1:-1;;;2494:508:3:o;2152:81:0:-;1045:6:1;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;2216:12:0::1;2224:3;2216:7;:12::i;:::-;2152:81:::0;:::o;1605:92:1:-;1045:6;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2801:233:0:-;1045:6:1;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;2856:22:0::1;2881:17;:7;864:14:9::0;;773:112;2881:17:0::1;2856:42;;2909:9;2904:126;2928:3;2924:1;:7;2904:126;;;2946:19;:7;978:19:9::0;;996:1;978:19;;;891:123;2946:19:0::1;2973:50;2979:10;2991:18;3008:1:::0;2991:14;:18:::1;:::i;:::-;3011:1;2973:50;;;;;;;;;;;;;;;;::::0;:5:::1;:50::i;:::-;2933:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2904:126;;3799:553:::0;3852:22;3877:17;:7;864:14:9;;773:112;3877:17:0;3908:14;;3852:42;;-1:-1:-1;3908:14:0;;;;;3900:53;;;;-1:-1:-1;;;3900:53:0;;22582:2:14;3900:53:0;;;22564:21:14;22621:2;22601:18;;;22594:30;22660:28;22640:18;;;22633:56;22706:18;;3900:53:0;22380:350:14;3900:53:0;3984:10;3974:21;;;;:9;:21;;;;;;3967:28;;;3959:82;;;;-1:-1:-1;;;3959:82:0;;14245:2:14;3959:82:0;;;14227:21:14;14284:2;14264:18;;;14257:30;14323:34;14303:18;;;14296:62;14394:11;14374:18;;;14367:39;14423:19;;3959:82:0;14043:405:14;3959:82:0;746:5;4055:20;4072:3;4055:14;:20;:::i;:::-;:34;;4047:69;;;;-1:-1:-1;;;4047:69:0;;17488:2:14;4047:69:0;;;17470:21:14;17527:2;17507:18;;;17500:30;17566:24;17546:18;;;17539:52;17608:18;;4047:69:0;17286:346:14;4047:69:0;4144:9;4130:10;4137:3;811:9;4130:10;:::i;:::-;:23;;4122:59;;;;-1:-1:-1;;;4122:59:0;;13893:2:14;4122:59:0;;;13875:21:14;13932:2;13912:18;;;13905:30;13971:25;13951:18;;;13944:53;14014:18;;4122:59:0;13691:347:14;4122:59:0;4193:9;4188:160;4212:3;4208:1;:7;4188:160;;;4230:19;:7;978:19:9;;996:1;978:19;;;891:123;4230:19:0;4267:10;4257:21;;;;:9;:21;;;;;:26;;4282:1;;4257:21;:26;;4282:1;;4257:26;:::i;:::-;;;;-1:-1:-1;4291:50:0;;-1:-1:-1;4297:10:0;4309:18;4326:1;4309:14;:18;:::i;4291:50::-;4217:3;;;;:::i;:::-;;;;4188:160;;3533:98:2;3584:7;3610;3618:5;3610:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3533:98;-1:-1:-1;;3533:98:2:o;3170:497:0:-;3220:22;3245:17;:7;864:14:9;;773:112;3245:17:0;3276:11;;3220:42;;-1:-1:-1;3276:11:0;;3268:47;;;;-1:-1:-1;;;3268:47:0;;19785:2:14;3268:47:0;;;19767:21:14;19824:2;19804:18;;;19797:30;19863:25;19843:18;;;19836:53;19906:18;;3268:47:0;19583:347:14;3268:47:0;655:2;3329:3;:13;;3321:69;;;;-1:-1:-1;;;3321:69:0;;20539:2:14;3321:69:0;;;20521:21:14;20578:2;20558:18;;;20551:30;20617:34;20597:18;;;20590:62;20688:13;20668:18;;;20661:41;20719:19;;3321:69:0;20337:407:14;3321:69:0;746:5;3404:20;3421:3;3404:14;:20;:::i;:::-;:34;;3396:69;;;;-1:-1:-1;;;3396:69:0;;17488:2:14;3396:69:0;;;17470:21:14;17527:2;17507:18;;;17500:30;17566:24;17546:18;;;17539:52;17608:18;;3396:69:0;17286:346:14;3396:69:0;3493:9;3479:10;3486:3;811:9;3479:10;:::i;:::-;:23;;3471:59;;;;-1:-1:-1;;;3471:59:0;;13893:2:14;3471:59:0;;;13875:21:14;13932:2;13912:18;;;13905:30;13971:25;13951:18;;;13944:53;14014:18;;3471:59:0;13691:347:14;3471:59:0;3542:9;3537:126;3561:3;3557:1;:7;3537:126;;;3579:19;:7;978:19:9;;996:1;978:19;;;891:123;3579:19:0;3606:50;3612:10;3624:18;3641:1;3624:14;:18;:::i;3606:50::-;3566:3;;;;:::i;:::-;;;;3537:126;;3070:306:3;666:10:8;3172:24:3;;;;;3164:78;;;;-1:-1:-1;;;3164:78:3;;20951:2:14;3164:78:3;;;20933:21:14;20990:2;20970:18;;;20963:30;21029:34;21009:18;;;21002:62;21100:11;21080:18;;;21073:39;21129:19;;3164:78:3;20749:405:14;3164:78:3;666:10:8;3253:32:3;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;3321:48;;12585:41:14;;;3253:42:3;;666:10:8;3321:48:3;;12558:18:14;3321:48:3;;;;;;;3070:306;;:::o;1993:85:0:-;1045:6:1;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;2053:14:0::1;:20:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;1993:85::o;1846:79::-;1045:6:1;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;1903:11:0::1;:17:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;1846:79::o;4517:264::-;4581:10;:16;;;;;4573:49;;;;-1:-1:-1;;;4573:49:0;;18664:2:14;4573:49:0;;;18646:21:14;18703:2;18683:18;;;18676:30;18742:22;18722:18;;;18715:50;18782:18;;4573:49:0;18462:344:14;4573:49:0;4664:1;4636:25;4646:10;4658:2;4636:9;:25::i;:::-;:29;4628:75;;;;-1:-1:-1;;;4628:75:0;;20137:2:14;4628:75:0;;;20119:21:14;20176:2;20156:18;;;20149:30;20215:34;20195:18;;;20188:62;20286:3;20266:18;;;20259:31;20307:19;;4628:75:0;19935:397:14;4628:75:0;4714:30;;22881:25:14;;;4714:30:0;;;;4725:10;;4714:30;;22869:2:14;22854:18;4714:30:0;;;;;;;4750:26;4756:2;4760;4764:1;4750:26;;;;;;;;;;;;;;;;;:5;:26::i;:::-;4517:264;;:::o;3676:389:3:-;3876:20;;;666:10:8;3876:20:3;;:60;;-1:-1:-1;3900:36:3;3917:4;666:10:8;3443:166:3;:::i;3900:36::-;3855:148;;;;-1:-1:-1;;;3855:148:3;;15474:2:14;3855:148:3;;;15456:21:14;15513:2;15493:18;;;15486:30;15552:34;15532:18;;;15525:62;15623:11;15603:18;;;15596:39;15652:19;;3855:148:3;15272:405:14;3855:148:3;4013:45;4031:4;4037:2;4041;4045:6;4053:4;4013:17;:45::i;1846:189:1:-;1045:6;;1185:23;1045:6;666:10:8;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;19424:2:14;1177:68:1;;;19406:21:14;;;19443:18;;;19436:30;19502:34;19482:18;;;19475:62;19554:18;;1177:68:1;19222:356:14;1177:68:1;1934:22:::1;::::0;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:1;;15067:2:14;1926:73:1::1;::::0;::::1;15049:21:14::0;15106:2;15086:18;;;15079:30;15145:34;15125:18;;;15118:62;15216:8;15196:18;;;15189:36;15242:19;;1926:73:1::1;14865:402:14::0;1926:73:1::1;2009:19;2019:8;2009:9;:19::i;1864:103:3:-:0;1924:13;1956:4;1949:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1864:103;;;:::o;275:703:10:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:10;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:10;;-1:-1:-1;720:2:10;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:10;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:10;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:10;928:2;919:11;;:::i;:::-;;;791:150;;;964:6;275:703;-1:-1:-1;;;;275:703:10:o;2012:312:7:-;2126:6;2101:21;:31;;2093:73;;;;-1:-1:-1;;;2093:73:7;;16718:2:14;2093:73:7;;;16700:21:14;16757:2;16737:18;;;16730:30;16796:31;16776:18;;;16769:59;16845:18;;2093:73:7;16516:353:14;2093:73:7;2178:12;2196:9;:14;;2218:6;2196:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;-1:-1:-1;;;2239:78:7;;16291:2:14;2239:78:7;;;16273:21:14;16330:2;16310:18;;;16303:30;16369:34;16349:18;;;16342:62;16440:28;16420:18;;;16413:56;16486:19;;2239:78:7;16089:422:14;6160:1045:3;6380:7;:14;6366:3;:10;:28;6358:81;;;;-1:-1:-1;;;6358:81:3;;21771:2:14;6358:81:3;;;21753:21:14;21810:2;21790:18;;;21783:30;21849:34;21829:18;;;21822:62;21920:10;21900:18;;;21893:38;21948:19;;6358:81:3;21569:404:14;6358:81:3;6457:16;;;6449:66;;;;-1:-1:-1;;;6449:66:3;;17839:2:14;6449:66:3;;;17821:21:14;17878:2;17858:18;;;17851:30;17917:34;17897:18;;;17890:62;17988:7;17968:18;;;17961:35;18013:19;;6449:66:3;17637:401:14;6449:66:3;666:10:8;6526:16:3;6639:411;6663:3;:10;6659:1;:14;6639:411;;;6694:10;6707:3;6711:1;6707:6;;;;;;;;:::i;:::-;;;;;;;6694:19;;6727:14;6744:7;6752:1;6744:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6769:19;6791:13;;;;;;;;;;:19;;;;;;;;;;;;;6744:10;;-1:-1:-1;6832:21:3;;;;6824:76;;;;-1:-1:-1;;;6824:76:3;;19013:2:14;6824:76:3;;;18995:21:14;19052:2;19032:18;;;19025:30;19091:34;19071:18;;;19064:62;19162:12;19142:18;;;19135:40;19192:19;;6824:76:3;18811:406:14;6824:76:3;6942:9;:13;;;;;;;;;;;:19;;;;;;;;;;;6964:20;;;6942:42;;7012:17;;;;;;;:27;;6964:20;;6942:9;7012:27;;6964:20;;7012:27;:::i;:::-;;;;;;;;6680:370;;;6675:3;;;;:::i;:::-;;;6639:411;;;;7095:2;7065:47;;7089:4;7065:47;;7079:8;7065:47;;;7099:3;7104:7;7065:47;;;;;;;:::i;:::-;;;;;;;;7123:75;7159:8;7169:4;7175:2;7179:3;7184:7;7193:4;7123:35;:75::i;:::-;6348:857;6160:1045;;;;;:::o;8028:86::-;8094:13;;;;:4;;:13;;;;;:::i;2041:169:1:-;2115:6;;;;2131:17;;;;;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;8502:583:3:-;8654:21;;;8646:67;;;;-1:-1:-1;;;8646:67:3;;22180:2:14;8646:67:3;;;22162:21:14;22219:2;22199:18;;;22192:30;22258:34;22238:18;;;22231:62;22329:3;22309:18;;;22302:31;22350:19;;8646:67:3;21978:397:14;8646:67:3;666:10:8;8766:107:3;666:10:8;8724:16:3;8809:7;8818:21;8836:2;8818:17;:21::i;:::-;8841:25;8859:6;8841:17;:25::i;8766:107::-;8884:9;:13;;;;;;;;;;;:22;;;;;;;;;;:32;;8910:6;;8884:9;:32;;8910:6;;8884:32;:::i;:::-;;;;-1:-1:-1;;8931:57:3;;;23091:25:14;;;23147:2;23132:18;;23125:34;;;8931:57:3;;;;;8964:1;;8931:57;;;;;;23064:18:14;8931:57:3;;;;;;;8999:79;9030:8;9048:1;9052:7;9061:2;9065:6;9073:4;8999:30;:79::i;5017:797::-;5198:16;;;5190:66;;;;-1:-1:-1;;;5190:66:3;;17839:2:14;5190:66:3;;;17821:21:14;17878:2;17858:18;;;17851:30;17917:34;17897:18;;;17890:62;17988:7;17968:18;;;17961:35;18013:19;;5190:66:3;17637:401:14;5190:66:3;666:10:8;5309:96:3;666:10:8;5340:4:3;5346:2;5350:21;5368:2;5350:17;:21::i;5309:96::-;5416:19;5438:13;;;;;;;;;;;:19;;;;;;;;;;;5475:21;;;;5467:76;;;;-1:-1:-1;;;5467:76:3;;19013:2:14;5467:76:3;;;18995:21:14;19052:2;19032:18;;;19025:30;19091:34;19071:18;;;19064:62;19162:12;19142:18;;;19135:40;19192:19;;5467:76:3;18811:406:14;5467:76:3;5577:9;:13;;;;;;;;;;;:19;;;;;;;;;;;5599:20;;;5577:42;;5639:17;;;;;;;:27;;5599:20;;5577:9;5639:27;;5599:20;;5639:27;:::i;:::-;;;;-1:-1:-1;;5682:46:3;;;23091:25:14;;;23147:2;23132:18;;23125:34;;;5682:46:3;;;;;;;;;;;;;;;23064:18:14;5682:46:3;;;;;;;5739:68;5770:8;5780:4;5786:2;5790;5794:6;5802:4;5739:30;:68::i;:::-;5180:634;;5017:797;;;;;:::o;14024:792::-;14256:13;;;1034:20:7;1080:8;14252:558:3;;14291:79;;;;;:43;;;;;;:79;;14335:8;;14345:4;;14351:3;;14356:7;;14365:4;;14291:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14291:79:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14287:513;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14676:6;14669:14;;-1:-1:-1;;;14669:14:3;;;;;;;;:::i;14287:513::-;;;14723:62;;-1:-1:-1;;;14723:62:3;;13063:2:14;14723:62:3;;;13045:21:14;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;13212:22;13192:18;;;13185:50;13252:19;;14723:62:3;12861:416:14;14287:513:3;14449:60;;;14461:48;14449:60;14445:157;;14533:50;;-1:-1:-1;;;14533:50:3;;13484:2:14;14533:50:3;;;13466:21:14;13523:2;13503:18;;;13496:30;13562:34;13542:18;;;13535:62;13633:10;13613:18;;;13606:38;13661:19;;14533:50:3;13282:404:14;14822:193:3;14941:16;;;14955:1;14941:16;;;;;;;;;14888;;14916:22;;14941:16;;;;;;;;;;;;-1:-1:-1;14941:16:3;14916:41;;14978:7;14967:5;14973:1;14967:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15003:5;14822:193;-1:-1:-1;;14822:193:3:o;13293:725::-;13500:13;;;1034:20:7;1080:8;13496:516:3;;13535:72;;;;;:38;;;;;;:72;;13574:8;;13584:4;;13590:2;;13594:6;;13602:4;;13535:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13535:72:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;13531:471;;;;:::i;:::-;13656:55;;;13668:43;13656:55;13652:152;;13735:50;;-1:-1:-1;;;13735:50:3;;13484:2:14;13735:50:3;;;13466:21:14;13523:2;13503:18;;;13496:30;13562:34;13542:18;;;13535:62;13633:10;13613:18;;;13606:38;13661:19;;13735:50:3;13282:404:14;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:527:14;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:128;317:4;248:66;243:2;235:6;231:15;227:88;223:99;215:6;195:128;:::i;:::-;341:6;332:15;;371:6;363;356:22;411:3;402:6;397:3;393:16;390:25;387:45;;;428:1;425;418:12;387:45;478:6;473:3;466:4;458:6;454:17;441:44;533:1;526:4;517:6;509;505:19;501:30;494:41;;14:527;;;;;:::o;546:735::-;600:5;653:3;646:4;638:6;634:17;630:27;620:55;;671:1;668;661:12;620:55;707:6;694:20;733:4;756:43;796:2;756:43;:::i;:::-;828:2;822:9;840:31;868:2;860:6;840:31;:::i;:::-;906:18;;;940:15;;;;-1:-1:-1;975:15:14;;;1025:1;1021:10;;;1009:23;;1005:32;;1002:41;-1:-1:-1;999:61:14;;;1056:1;1053;1046:12;999:61;1078:1;1088:163;1102:2;1099:1;1096:9;1088:163;;;1159:17;;1147:30;;1197:12;;;;1229;;;;1120:1;1113:9;1088:163;;;-1:-1:-1;1269:6:14;;546:735;-1:-1:-1;;;;;;;546:735:14:o;1286:160::-;1351:20;;1407:13;;1400:21;1390:32;;1380:60;;1436:1;1433;1426:12;1380:60;1286:160;;;:::o;1451:220::-;1493:5;1546:3;1539:4;1531:6;1527:17;1523:27;1513:55;;1564:1;1561;1554:12;1513:55;1586:79;1661:3;1652:6;1639:20;1632:4;1624:6;1620:17;1586:79;:::i;:::-;1577:88;1451:220;-1:-1:-1;;;1451:220:14:o;1676:247::-;1735:6;1788:2;1776:9;1767:7;1763:23;1759:32;1756:52;;;1804:1;1801;1794:12;1756:52;1843:9;1830:23;1862:31;1887:5;1862:31;:::i;2188:388::-;2256:6;2264;2317:2;2305:9;2296:7;2292:23;2288:32;2285:52;;;2333:1;2330;2323:12;2285:52;2372:9;2359:23;2391:31;2416:5;2391:31;:::i;:::-;2441:5;-1:-1:-1;2498:2:14;2483:18;;2470:32;2511:33;2470:32;2511:33;:::i;:::-;2563:7;2553:17;;;2188:388;;;;;:::o;2581:1071::-;2735:6;2743;2751;2759;2767;2820:3;2808:9;2799:7;2795:23;2791:33;2788:53;;;2837:1;2834;2827:12;2788:53;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:14;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;-1:-1:-1;3125:2:14;3110:18;;3097:32;3148:18;3178:14;;;3175:34;;;3205:1;3202;3195:12;3175:34;3228:61;3281:7;3272:6;3261:9;3257:22;3228:61;:::i;:::-;3218:71;;3342:2;3331:9;3327:18;3314:32;3298:48;;3371:2;3361:8;3358:16;3355:36;;;3387:1;3384;3377:12;3355:36;3410:63;3465:7;3454:8;3443:9;3439:24;3410:63;:::i;:::-;3400:73;;3526:3;3515:9;3511:19;3498:33;3482:49;;3556:2;3546:8;3543:16;3540:36;;;3572:1;3569;3562:12;3540:36;;3595:51;3638:7;3627:8;3616:9;3612:24;3595:51;:::i;:::-;3585:61;;;2581:1071;;;;;;;;:::o;3657:734::-;3761:6;3769;3777;3785;3793;3846:3;3834:9;3825:7;3821:23;3817:33;3814:53;;;3863:1;3860;3853:12;3814:53;3902:9;3889:23;3921:31;3946:5;3921:31;:::i;:::-;3971:5;-1:-1:-1;4028:2:14;4013:18;;4000:32;4041:33;4000:32;4041:33;:::i;:::-;4093:7;-1:-1:-1;4147:2:14;4132:18;;4119:32;;-1:-1:-1;4198:2:14;4183:18;;4170:32;;-1:-1:-1;4253:3:14;4238:19;;4225:33;4281:18;4270:30;;4267:50;;;4313:1;4310;4303:12;4267:50;4336:49;4377:7;4368:6;4357:9;4353:22;4336:49;:::i;4396:315::-;4461:6;4469;4522:2;4510:9;4501:7;4497:23;4493:32;4490:52;;;4538:1;4535;4528:12;4490:52;4577:9;4564:23;4596:31;4621:5;4596:31;:::i;:::-;4646:5;-1:-1:-1;4670:35:14;4701:2;4686:18;;4670:35;:::i;:::-;4660:45;;4396:315;;;;;:::o;4716:::-;4784:6;4792;4845:2;4833:9;4824:7;4820:23;4816:32;4813:52;;;4861:1;4858;4851:12;4813:52;4900:9;4887:23;4919:31;4944:5;4919:31;:::i;:::-;4969:5;5021:2;5006:18;;;;4993:32;;-1:-1:-1;;;4716:315:14:o;5036:1288::-;5154:6;5162;5215:2;5203:9;5194:7;5190:23;5186:32;5183:52;;;5231:1;5228;5221:12;5183:52;5271:9;5258:23;5300:18;5341:2;5333:6;5330:14;5327:34;;;5357:1;5354;5347:12;5327:34;5395:6;5384:9;5380:22;5370:32;;5440:7;5433:4;5429:2;5425:13;5421:27;5411:55;;5462:1;5459;5452:12;5411:55;5498:2;5485:16;5520:4;5543:43;5583:2;5543:43;:::i;:::-;5615:2;5609:9;5627:31;5655:2;5647:6;5627:31;:::i;:::-;5693:18;;;5727:15;;;;-1:-1:-1;5762:11:14;;;5804:1;5800:10;;;5792:19;;5788:28;;5785:41;-1:-1:-1;5782:61:14;;;5839:1;5836;5829:12;5782:61;5861:1;5852:10;;5871:238;5885:2;5882:1;5879:9;5871:238;;;5956:3;5943:17;5973:31;5998:5;5973:31;:::i;:::-;6017:18;;5903:1;5896:9;;;;;6055:12;;;;6087;;5871:238;;;-1:-1:-1;6128:6:14;-1:-1:-1;;6172:18:14;;6159:32;;-1:-1:-1;;6203:16:14;;;6200:36;;;6232:1;6229;6222:12;6200:36;;6255:63;6310:7;6299:8;6288:9;6284:24;6255:63;:::i;:::-;6245:73;;;5036:1288;;;;;:::o;6329:180::-;6385:6;6438:2;6426:9;6417:7;6413:23;6409:32;6406:52;;;6454:1;6451;6444:12;6406:52;6477:26;6493:9;6477:26;:::i;6514:245::-;6572:6;6625:2;6613:9;6604:7;6600:23;6596:32;6593:52;;;6641:1;6638;6631:12;6593:52;6680:9;6667:23;6699:30;6723:5;6699:30;:::i;6764:249::-;6833:6;6886:2;6874:9;6865:7;6861:23;6857:32;6854:52;;;6902:1;6899;6892:12;6854:52;6934:9;6928:16;6953:30;6977:5;6953:30;:::i;7018:450::-;7087:6;7140:2;7128:9;7119:7;7115:23;7111:32;7108:52;;;7156:1;7153;7146:12;7108:52;7196:9;7183:23;7229:18;7221:6;7218:30;7215:50;;;7261:1;7258;7251:12;7215:50;7284:22;;7337:4;7329:13;;7325:27;-1:-1:-1;7315:55:14;;7366:1;7363;7356:12;7315:55;7389:73;7454:7;7449:2;7436:16;7431:2;7427;7423:11;7389:73;:::i;7473:180::-;7532:6;7585:2;7573:9;7564:7;7560:23;7556:32;7553:52;;;7601:1;7598;7591:12;7553:52;-1:-1:-1;7624:23:14;;7473:180;-1:-1:-1;7473:180:14:o;7658:315::-;7726:6;7734;7787:2;7775:9;7766:7;7762:23;7758:32;7755:52;;;7803:1;7800;7793:12;7755:52;7839:9;7826:23;7816:33;;7899:2;7888:9;7884:18;7871:32;7912:31;7937:5;7912:31;:::i;7978:435::-;8031:3;8069:5;8063:12;8096:6;8091:3;8084:19;8122:4;8151:2;8146:3;8142:12;8135:19;;8188:2;8181:5;8177:14;8209:1;8219:169;8233:6;8230:1;8227:13;8219:169;;;8294:13;;8282:26;;8328:12;;;;8363:15;;;;8255:1;8248:9;8219:169;;;-1:-1:-1;8404:3:14;;7978:435;-1:-1:-1;;;;;7978:435:14:o;8418:316::-;8459:3;8497:5;8491:12;8524:6;8519:3;8512:19;8540:63;8596:6;8589:4;8584:3;8580:14;8573:4;8566:5;8562:16;8540:63;:::i;:::-;8648:2;8636:15;8653:66;8632:88;8623:98;;;;8723:4;8619:109;;8418:316;-1:-1:-1;;8418:316:14:o;8739:470::-;8918:3;8956:6;8950:13;8972:53;9018:6;9013:3;9006:4;8998:6;8994:17;8972:53;:::i;:::-;9088:13;;9047:16;;;;9110:57;9088:13;9047:16;9144:4;9132:17;;9110:57;:::i;:::-;9183:20;;8739:470;-1:-1:-1;;;;8739:470:14:o;9965:849::-;10287:4;10316:42;10397:2;10389:6;10385:15;10374:9;10367:34;10449:2;10441:6;10437:15;10432:2;10421:9;10417:18;10410:43;;10489:3;10484:2;10473:9;10469:18;10462:31;10516:57;10568:3;10557:9;10553:19;10545:6;10516:57;:::i;:::-;10621:9;10613:6;10609:22;10604:2;10593:9;10589:18;10582:50;10655:44;10692:6;10684;10655:44;:::i;:::-;10641:58;;10748:9;10740:6;10736:22;10730:3;10719:9;10715:19;10708:51;10776:32;10801:6;10793;10776:32;:::i;:::-;10768:40;9965:849;-1:-1:-1;;;;;;;;9965:849:14:o;10819:583::-;11041:4;11070:42;11151:2;11143:6;11139:15;11128:9;11121:34;11203:2;11195:6;11191:15;11186:2;11175:9;11171:18;11164:43;;11243:6;11238:2;11227:9;11223:18;11216:34;11286:6;11281:2;11270:9;11266:18;11259:34;11330:3;11324;11313:9;11309:19;11302:32;11351:45;11391:3;11380:9;11376:19;11368:6;11351:45;:::i;:::-;11343:53;10819:583;-1:-1:-1;;;;;;;10819:583:14:o;11709:261::-;11888:2;11877:9;11870:21;11851:4;11908:56;11960:2;11949:9;11945:18;11937:6;11908:56;:::i;11975:465::-;12232:2;12221:9;12214:21;12195:4;12258:56;12310:2;12299:9;12295:18;12287:6;12258:56;:::i;:::-;12362:9;12354:6;12350:22;12345:2;12334:9;12330:18;12323:50;12390:44;12427:6;12419;12390:44;:::i;:::-;12382:52;11975:465;-1:-1:-1;;;;;11975:465:14:o;12637:219::-;12786:2;12775:9;12768:21;12749:4;12806:44;12846:2;12835:9;12831:18;12823:6;12806:44;:::i;23170:183::-;23230:4;23263:18;23255:6;23252:30;23249:56;;;23285:18;;:::i;:::-;-1:-1:-1;23330:1:14;23326:14;23342:4;23322:25;;23170:183::o;23358:128::-;23398:3;23429:1;23425:6;23422:1;23419:13;23416:39;;;23435:18;;:::i;:::-;-1:-1:-1;23471:9:14;;23358:128::o;23491:120::-;23531:1;23557;23547:35;;23562:18;;:::i;:::-;-1:-1:-1;23596:9:14;;23491:120::o;23616:228::-;23656:7;23782:1;23714:66;23710:74;23707:1;23704:81;23699:1;23692:9;23685:17;23681:105;23678:131;;;23789:18;;:::i;:::-;-1:-1:-1;23829:9:14;;23616:228::o;23849:125::-;23889:4;23917:1;23914;23911:8;23908:34;;;23922:18;;:::i;:::-;-1:-1:-1;23959:9:14;;23849:125::o;23979:258::-;24051:1;24061:113;24075:6;24072:1;24069:13;24061:113;;;24151:11;;;24145:18;24132:11;;;24125:39;24097:2;24090:10;24061:113;;;24192:6;24189:1;24186:13;24183:48;;;24227:1;24218:6;24213:3;24209:16;24202:27;24183:48;;23979:258;;;:::o;24242:437::-;24321:1;24317:12;;;;24364;;;24385:61;;24439:4;24431:6;24427:17;24417:27;;24385:61;24492:2;24484:6;24481:14;24461:18;24458:38;24455:218;;;24529:77;24526:1;24519:88;24630:4;24627:1;24620:15;24658:4;24655:1;24648:15;24455:218;;24242:437;;;:::o;24684:308::-;24790:66;24785:2;24779:4;24775:13;24771:86;24763:6;24759:99;24924:6;24912:10;24909:22;24888:18;24876:10;24873:34;24870:62;24867:88;;;24935:18;;:::i;:::-;24971:2;24964:22;-1:-1:-1;;24684:308:14:o;24997:195::-;25036:3;25067:66;25060:5;25057:77;25054:103;;;25137:18;;:::i;:::-;-1:-1:-1;25184:1:14;25173:13;;24997:195::o;25197:112::-;25229:1;25255;25245:35;;25260:18;;:::i;:::-;-1:-1:-1;25294:9:14;;25197:112::o;25314:184::-;25366:77;25363:1;25356:88;25463:4;25460:1;25453:15;25487:4;25484:1;25477:15;25503:184;25555:77;25552:1;25545:88;25652:4;25649:1;25642:15;25676:4;25673:1;25666:15;25692:184;25744:77;25741:1;25734:88;25841:4;25838:1;25831:15;25865:4;25862:1;25855:15;25881:184;25933:77;25930:1;25923:88;26030:4;26027:1;26020:15;26054:4;26051:1;26044:15;26070:179;26105:3;26147:1;26129:16;26126:23;26123:120;;;26193:1;26190;26187;26172:23;-1:-1:-1;26230:1:14;26224:8;26219:3;26215:18;26123:120;26070:179;:::o;26254:731::-;26293:3;26335:4;26317:16;26314:26;26311:39;;;26254:731;:::o;26311:39::-;26377:2;26371:9;26399:66;26520:2;26502:16;26498:25;26495:1;26489:4;26474:50;26553:4;26547:11;26577:16;26612:18;26683:2;26676:4;26668:6;26664:17;26661:25;26656:2;26648:6;26645:14;26642:45;26639:58;;;26690:5;;;;;26254:731;:::o;26639:58::-;26727:6;26721:4;26717:17;26706:28;;26763:3;26757:10;26790:2;26782:6;26779:14;26776:27;;;26796:5;;;;;;26254:731;:::o;26776:27::-;26880:2;26861:16;26855:4;26851:27;26847:36;26840:4;26831:6;26826:3;26822:16;26818:27;26815:69;26812:82;;;26887:5;;;;;;26254:731;:::o;26812:82::-;26903:57;26954:4;26945:6;26937;26933:19;26929:30;26923:4;26903:57;:::i;:::-;-1:-1:-1;26976:3:14;;26254:731;-1:-1:-1;;;;;26254:731:14:o;26990:154::-;27076:42;27069:5;27065:54;27058:5;27055:65;27045:93;;27134:1;27131;27124:12;27149:177;27234:66;27227:5;27223:78;27216:5;27213:89;27203:117;;27316:1;27313;27306:12

Swarm Source

ipfs://2976db9bbcce43314284384891deac70e07c52f4add81d134702844bee335c40
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.