ETH Price: $3,023.60 (+0.48%)
 

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Mint376269392025-11-02 0:27:0517 days ago1762043225IN
0x9f801207...2057BC934
0 ETH0.000001010.00955282
Mint375743852025-10-31 19:15:1718 days ago1761938117IN
0x9f801207...2057BC934
0 ETH0.000000640.00611175
Mint371908872025-10-22 22:12:0127 days ago1761171121IN
0x9f801207...2057BC934
0 ETH0.000000870.00827328
Mint371552902025-10-22 2:25:2728 days ago1761099927IN
0x9f801207...2057BC934
0 ETH0.000001430.01356721
Mint371018752025-10-20 20:44:5729 days ago1760993097IN
0x9f801207...2057BC934
0 ETH0.000000680.00648039
Mint369249382025-10-16 18:27:0333 days ago1760639223IN
0x9f801207...2057BC934
0 ETH0.00000130.01227276
Mint368676262025-10-15 10:36:3934 days ago1760524599IN
0x9f801207...2057BC934
0 ETH0.000002250.0212567
Mint368425162025-10-14 20:39:3935 days ago1760474379IN
0x9f801207...2057BC934
0 ETH0.00000110.01046848
Mint367797112025-10-13 9:46:0936 days ago1760348769IN
0x9f801207...2057BC934
0 ETH0.000000890.00841685
Mint366804952025-10-11 2:38:5739 days ago1760150337IN
0x9f801207...2057BC934
0 ETH0.000001320.01222272
Mint366428852025-10-10 5:45:1739 days ago1760075117IN
0x9f801207...2057BC934
0 ETH0.00000070.00666624
Mint366426242025-10-10 5:36:3539 days ago1760074595IN
0x9f801207...2057BC934
0 ETH0.000001020.0096418
Mint366318572025-10-09 23:37:4140 days ago1760053061IN
0x9f801207...2057BC934
0 ETH0.000000410.00392509
Mint366308682025-10-09 23:04:4340 days ago1760051083IN
0x9f801207...2057BC934
0 ETH0.000000510.00481674
Mint366304082025-10-09 22:49:2340 days ago1760050163IN
0x9f801207...2057BC934
0 ETH0.000000650.00617042
Mint366302742025-10-09 22:44:5540 days ago1760049895IN
0x9f801207...2057BC934
0 ETH0.000000670.00635548
Mint366290922025-10-09 22:05:3140 days ago1760047531IN
0x9f801207...2057BC934
0 ETH0.000001120.01064367
Mint366037792025-10-09 8:01:4540 days ago1759996905IN
0x9f801207...2057BC934
0 ETH0.00000040.00385924
Mint366033842025-10-09 7:48:3540 days ago1759996115IN
0x9f801207...2057BC934
0 ETH0.000000520.00497054
Mint366031612025-10-09 7:41:0940 days ago1759995669IN
0x9f801207...2057BC934
0 ETH0.000000510.00485577
Mint366028602025-10-09 7:31:0740 days ago1759995067IN
0x9f801207...2057BC934
0 ETH0.000000460.00439426
Mint365840262025-10-08 21:03:1941 days ago1759957399IN
0x9f801207...2057BC934
0 ETH0.000000350.00331063
Mint365837182025-10-08 20:53:0341 days ago1759956783IN
0x9f801207...2057BC934
0 ETH0.000000330.00312573
Mint365833172025-10-08 20:39:4141 days ago1759955981IN
0x9f801207...2057BC934
0 ETH0.000000420.00403373
Mint365831722025-10-08 20:34:5141 days ago1759955691IN
0x9f801207...2057BC934
0 ETH0.000000490.00469773
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions

Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DehubStreamNft

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 18: DehubStreamNft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./SignerRole.sol";
import "./ERC1155Base.sol";

/// @title dehub stream nft contract supports erc1155
contract DehubStreamNft is Ownable, SignerRole, ERC1155Base {
    string public name;
    string public symbol;
    address public controller;

    uint256 private expiredTime;

    error notController();

    constructor(
        string memory _name,
        string memory _symbol,
        address signer,
        address _controller,
        string memory contractURI,
        string memory tokenURIPrefix
    ) ERC1155Base(contractURI, tokenURIPrefix) {
        expiredTime = 300;
        name = _name;
        symbol = _symbol;
        controller = _controller;
        _addSigner(signer);
        _registerInterface(bytes4(keccak256("MINT_WITH_ADDRESS")));
    }

    function mintFromController(
        uint256 id,
        uint256 timestamp,
        uint8 v,
        bytes32 r,
        bytes32 s,
        uint256 supply,
        string memory uri,
        address creator
    ) public {
        if (msg.sender != controller) revert notController();
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        require(
            isSigner(
                ecrecover(toEthSignedMessageHash(keccak256(abi.encodePacked(this, id, chainId, supply, timestamp))), v, r, s)
            ),
            "signer should sign tokenId"
        );
        require(timestamp > block.timestamp - expiredTime, "token id expired");
        Fee[] memory fees;
        _mint(id, fees, supply, uri, creator);
    }

    function mint(
        uint256 id,
        uint256 timestamp,
        uint8 v,
        bytes32 r,
        bytes32 s,
        Fee[] memory fees,
        uint256 supply,
        string memory uri
    ) public {
        uint256 chainId;
        uint256 _timestamp = timestamp;
        uint256 _tokenId = id;
        assembly {
            chainId := chainid()
        }
        require(
            isSigner(
                ecrecover(toEthSignedMessageHash(keccak256(abi.encodePacked(this, _tokenId, chainId, supply, _timestamp))), v, r, s)
            ),
            "signer should sign tokenId"
        );
        require(_timestamp > block.timestamp - expiredTime, "token id expired");
        _mint(_tokenId, fees, supply, uri, address(0x0));
    }

    function setController(address _controller) external onlyOwner {
        controller = _controller;
    }

    function setExpiredTime(uint256 _expiredTime) external onlyOwner {
        expiredTime = _expiredTime;
    }

    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    function encodePackedData(uint256 id) public view returns (bytes32) {
        return keccak256(abi.encodePacked(this, id));
    }

    function getecrecover(uint256 id, uint8 v, bytes32 r, bytes32 s) public view returns (address) {
        return ecrecover(toEthSignedMessageHash(keccak256(abi.encodePacked(this, id))), v, r, s);
    }
}

File 2 of 18: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 18: 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 4 of 18: ERC1155.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Address.sol";
import "./ERC1155TokenReceiver.sol";
import "./IERC1155.sol";
import "./ERC165.sol";
/**
    Note: Simple contract to use as base for const vals
*/
contract CommonConstants {

    bytes4 constant internal ERC1155_ACCEPTED = 0xf23a6e61; // bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))
    bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xbc197c81; // bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))
}

// A sample implementation of core ERC1155 function.
contract ERC1155 is IERC1155, ERC165, CommonConstants
{
    using Address for address;

    // id => (owner => balance)
    mapping (uint256 => mapping(address => uint256)) internal balances;

    // owner => (operator => approved)
    mapping (address => mapping(address => bool)) internal operatorApproval;

    /////////////////////////////////////////// ERC165 //////////////////////////////////////////////

    /*
        bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
        bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
        bytes4(keccak256("balanceOf(address,uint256)")) ^
        bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
        bytes4(keccak256("setApprovalForAll(address,bool)")) ^
        bytes4(keccak256("isApprovedForAll(address,address)"));
    */
    bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

    /////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////

    constructor() {
        _registerInterface(INTERFACE_SIGNATURE_ERC1155);
    }

    /////////////////////////////////////////// ERC1155 //////////////////////////////////////////////

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external virtual override{

        require(_to != address(0x0), "_to must be non-zero.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        // SafeMath will throw with insuficient funds _from
        // or if _id is not valid (balance will be 0)
        balances[_id][_from] = balances[_id][_from] - _value;
        balances[_id][_to]   = _value - balances[_id][_to];

        // MUST emit event
        emit TransferSingle(msg.sender, _from, _to, _id, _value);

        // Now that the balance is updated and the event was emitted,
        // call onERC1155Received if the destination is a contract.
        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, _from, _to, _id, _value, _data);
        }
    }

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external virtual override{

        // MUST Throw on errors
        require(_to != address(0x0), "destination address must be non-zero.");
        require(_ids.length == _values.length, "_ids and _values array lenght must match.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        for (uint256 i = 0; i < _ids.length; ++i) {
            uint256 id = _ids[i];
            uint256 value = _values[i];

            // SafeMath will throw with insuficient funds _from
            // or if _id is not valid (balance will be 0)
            balances[id][_from] = balances[id][_from] - value;
            balances[id][_to]   = value + balances[id][_to];
        }

        // Note: instead of the below batch versions of event and acceptance check you MAY have emitted a TransferSingle
        // event and a subsequent call to _doSafeTransferAcceptanceCheck in above loop for each balance change instead.
        // Or emitted a TransferSingle event for each in the loop and then the single _doSafeBatchTransferAcceptanceCheck below.
        // However it is implemented the balance changes and events MUST match when a check (i.e. calling an external contract) is done.

        // MUST emit event
        emit TransferBatch(msg.sender, _from, _to, _ids, _values);

        // Now that the balances are updated and the events are emitted,
        // call onERC1155BatchReceived if the destination is a contract.
        if (_to.isContract()) {
            _doSafeBatchTransferAcceptanceCheck(msg.sender, _from, _to, _ids, _values, _data);
        }
    }

    /**
        @notice Get the balance of an account's Tokens.
        @param _owner  The address of the token holder
        @param _id     ID of the Token
        @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external view virtual override returns (uint256) {
        // The balance of any account can be calculated from the Transfer events history.
        // However, since we need to keep the balances to validate transfer request,
        // there is no extra cost to also privide a querry function.
        return balances[_id][_owner];
    }


    /**
        @notice Get the balance of multiple account/token pairs
        @param _owners The addresses of the token holders
        @param _ids    ID of the Tokens
        @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view virtual override returns (uint256[] memory) {

        require(_owners.length == _ids.length);

        uint256[] memory balances_ = new uint256[](_owners.length);

        for (uint256 i = 0; i < _owners.length; ++i) {
            balances_[i] = balances[_ids[i]][_owners[i]];
        }

        return balances_;
    }

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
        @dev MUST emit the ApprovalForAll event on success.
        @param _operator  Address to add to the set of authorized operators
        @param _approved  True if the operator is approved, false to revoke approval
    */
    function setApprovalForAll(address _operator, bool _approved) external virtual override{
        operatorApproval[msg.sender][_operator] = _approved;
        emit ApprovalForAll(msg.sender, _operator, _approved);
    }

    /**
        @notice Queries the approval status of an operator for a given owner.
        @param _owner     The owner of the Tokens
        @param _operator  Address of authorized operator
        @return           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view virtual override returns (bool) {
        return operatorApproval[_owner][_operator];
    }

    /////////////////////////////////////////// Internal //////////////////////////////////////////////

    function _doSafeTransferAcceptanceCheck(address _operator, address _from, address _to, uint256 _id, uint256 _value, bytes memory _data) internal {

        // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
        // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.


        // Note: if the below reverts in the onERC1155Received function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
        // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_ACCEPTED test.
        require(ERC1155TokenReceiver(_to).onERC1155Received(_operator, _from, _id, _value, _data) == ERC1155_ACCEPTED, "contract returned an unknown value from onERC1155Received");
    }

    function _doSafeBatchTransferAcceptanceCheck(address _operator, address _from, address _to, uint256[] memory _ids, uint256[] memory _values, bytes memory _data) internal {

        // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
        // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.

        // Note: if the below reverts in the onERC1155BatchReceived function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
        // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_BATCH_ACCEPTED test.
        require(ERC1155TokenReceiver(_to).onERC1155BatchReceived(_operator, _from, _ids, _values, _data) == ERC1155_BATCH_ACCEPTED, "contract returned an unknown value from onERC1155BatchReceived");
    }
}

File 5 of 18: ERC1155Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC1155.sol";

import "./HasSecondarySaleFees.sol";
import "./HasContractURI.sol";
import "./ERC1155Metadata_URI.sol";

contract ERC1155Base is
    HasSecondarySaleFees,
    Ownable,
    ERC1155Metadata_URI,
    HasContractURI,
    ERC1155
{
    struct Fee {
        address payable recipient;
        uint256 value;
    }

    // id => creator
    mapping(uint256 => address) public creators;
    // id => fees
    mapping(uint256 => Fee[]) public fees;

    constructor(
        string memory contractURI,
        string memory tokenURIPrefix
    ) HasContractURI(contractURI) ERC1155Metadata_URI(tokenURIPrefix) {}

    function getFeeRecipients(uint256 id) public view virtual override returns (address payable[] memory) {
        Fee[] memory _fees = fees[id];
        address payable[] memory result = new address payable[](_fees.length);
        for (uint i = 0; i < _fees.length; i++) {
            result[i] = _fees[i].recipient;
        }
        return result;
    }

    function getFeeBps(uint256 id) public view virtual override returns (uint[] memory) {
        Fee[] memory _fees = fees[id];
        uint[] memory result = new uint[](_fees.length);
        for (uint i = 0; i < _fees.length; i++) {
            result[i] = _fees[i].value;
        }
        return result;
    }

    // Creates a new token type and assings _initialSupply to minter
    function _mint(uint256 _id, Fee[] memory _fees, uint256 _supply, string memory _uri, address _creator) internal {
        require(creators[_id] == address(0x0), "Token is already minted");
        require(_supply != 0, "Supply should be positive");
        require(bytes(_uri).length > 0, "uri should be set");
        address creator = _creator != address(0x0) ? _creator : msg.sender;
        creators[_id] = creator;
        address[] memory recipients = new address[](_fees.length);
        uint[] memory bps = new uint[](_fees.length);
        for (uint i = 0; i < _fees.length; i++) {
            require(_fees[i].recipient != address(0x0), "Recipient should be present");
            require(_fees[i].value != 0, "Fee value should be positive");
            fees[_id].push(_fees[i]);
            recipients[i] = _fees[i].recipient;
            bps[i] = _fees[i].value;
        }
        if (_fees.length > 0) {
            emit SecondarySaleFees(_id, recipients, bps);
        }
        balances[_id][creator] = _supply;
        _setTokenURI(_id, _uri);

        // Transfer event with mint semantic
        emit TransferSingle(msg.sender, address(0x0), creator, _id, _supply);
        emit URI(_uri, _id);
    }

    function burn(address _owner, uint256 _id, uint256 _value) external {
        require(
            _owner == msg.sender || operatorApproval[_owner][msg.sender] == true,
            "Need operator approval for 3rd party burns."
        );

        // SafeMath will throw with insuficient funds _owner
        // or if _id is not valid (balance will be 0)
        // In solidity 0.8+, we don't need to use SafeMath anymore, because integer overflow/underflow check is performed in low level.
        // balances[_id][_owner] = balances[_id][_owner].sub(_value);
        balances[_id][_owner] = balances[_id][_owner] - _value;

        // MUST emit event
        emit TransferSingle(msg.sender, _owner, address(0x0), _id, _value);
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal virtual override {
        require(creators[tokenId] != address(0x0), "_setTokenURI: Token should exist");
        super._setTokenURI(tokenId, uri);
    }

    function setTokenURIPrefix(string memory tokenURIPrefix) public onlyOwner {
        _setTokenURIPrefix(tokenURIPrefix);
    }

    function setContractURI(string memory contractURI) public onlyOwner {
        _setContractURI(contractURI);
    }
}

File 6 of 18: ERC1155Metadata_URI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./HasTokenURI.sol";
/**
    Note: The ERC-165 identifier for this interface is 0x0e89341c.
*/
interface IERC1155Metadata_URI {
    /**
        @notice A distinct Uniform Resource Identifier (URI) for a given token.
        @dev URIs are defined in RFC 3986.
        The URI may point to a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
        @return URI string
    */
    function uri(uint256 _id) external view returns (string memory);
}

/**
    Note: The ERC-165 identifier for this interface is 0x0e89341c.
*/
contract ERC1155Metadata_URI is IERC1155Metadata_URI, HasTokenURI {

    constructor(string memory _tokenURIPrefix) HasTokenURI(_tokenURIPrefix) {

    }

    function uri(uint256 _id) external view returns (string memory) {
        return _tokenURI(_id);
    }
}

File 7 of 18: ERC1155TokenReceiver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
    Note: The ERC-165 identifier for this interface is 0x4e2312e0.
*/
interface ERC1155TokenReceiver {
    /**
        @notice Handle the receipt of a single ERC1155 token type.
        @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated.
        This function MUST return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61) if it accepts the transfer.
        This function MUST revert if it rejects the transfer.
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @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)"))`
    */
    function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4);

    /**
        @notice Handle the receipt of multiple ERC1155 token types.
        @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated.
        This function MUST return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81) if it accepts the transfer(s).
        This function MUST revert if it rejects the transfer(s).
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @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)"))`
    */
    function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4);
}

File 8 of 18: ERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

File 9 of 18: HasContractURI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC165.sol";
contract HasContractURI is ERC165 {

    string public contractURI;

    /*
     * bytes4(keccak256('contractURI()')) == 0xe8a3d485
     */
    bytes4 private constant _INTERFACE_ID_CONTRACT_URI = 0xe8a3d485;

    constructor(string memory _contractURI) {
        contractURI = _contractURI;
        _registerInterface(_INTERFACE_ID_CONTRACT_URI);
    }

    /**
     * @dev Internal function to set the contract URI
     * @param _contractURI string URI prefix to assign
     */
    function _setContractURI(string memory _contractURI) internal {
        contractURI = _contractURI;
    }
}

File 10 of 18: HasSecondarySaleFees.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC165.sol";
abstract contract HasSecondarySaleFees is ERC165 {

    event SecondarySaleFees(uint256 tokenId, address[] recipients, uint[] bps);

    /*
     * bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
     * bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
     *
     * => 0x0ebd4c7f ^ 0xb9c4d9fb == 0xb7799584
     */
    bytes4 private constant _INTERFACE_ID_FEES = 0xb7799584;

    constructor() {
        _registerInterface(_INTERFACE_ID_FEES);
    }

    function getFeeRecipients(uint256 id) public view virtual returns (address payable[] memory);
    function getFeeBps(uint256 id) public view virtual returns (uint[] memory);
}

File 11 of 18: HasTokenURI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./StringLibrary.sol";
contract HasTokenURI {
    using StringLibrary for string;

    //Token URI prefix
    string public tokenURIPrefix;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    constructor(string memory _tokenURIPrefix) {
        tokenURIPrefix = _tokenURIPrefix;
    }

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function _tokenURI(uint256 tokenId) internal view returns (string memory) {
        return tokenURIPrefix.append(_tokenURIs[tokenId]);
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal virtual{
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Internal function to set the token URI prefix.
     * @param _tokenURIPrefix string URI prefix to assign
     */
    function _setTokenURIPrefix(string memory _tokenURIPrefix) internal {
        tokenURIPrefix = _tokenURIPrefix;
    }

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

File 12 of 18: IERC1155.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
    @title ERC-1155 Multi Token Standard
    @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
    Note: The ERC-165 identifier for this interface is 0xd9b67a26.
 */
abstract contract IERC1155 is IERC165 {
    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_id` argument MUST be the token type being transferred.
        The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _value);

    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_ids` argument MUST be the list of tokens being transferred.
        The `_values` argument MUST be the list of number of tokens (matching the list and order of tokens specified in _ids) the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _values);

    /**
        @dev MUST emit when approval for a second party/operator address to manage all tokens for an owner address is enabled or disabled (absense of an event assumes disabled).
    */
    event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

    /**
        @dev MUST emit when the URI is updated for a token ID.
        URIs are defined in RFC 3986.
        The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
    */
    event URI(string _value, uint256 indexed _id);

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external virtual;

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external virtual;

    /**
        @notice Get the balance of an account's Tokens.
        @param _owner  The address of the token holder
        @param _id     ID of the Token
        @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external view virtual returns (uint256);

    /**
        @notice Get the balance of multiple account/token pairs
        @param _owners The addresses of the token holders
        @param _ids    ID of the Tokens
        @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view virtual returns (uint256[] memory);

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
        @dev MUST emit the ApprovalForAll event on success.
        @param _operator  Address to add to the set of authorized operators
        @param _approved  True if the operator is approved, false to revoke approval
    */
    function setApprovalForAll(address _operator, bool _approved) external virtual;

    /**
        @notice Queries the approval status of an operator for a given owner.
        @param _owner     The owner of the Tokens
        @param _operator  Address of authorized operator
        @return           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view virtual returns (bool);

}

File 13 of 18: 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 14 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 15 of 18: Roles.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

File 16 of 18: SignerRole.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// import "../Context.sol";
import "./Context.sol";
import "./Roles.sol";
abstract contract SignerRole is Context {
    using Roles for Roles.Role;

    event SignerAdded(address indexed account);
    event SignerRemoved(address indexed account);

    Roles.Role private _signers;

    constructor() {
        _addSigner(_msgSender());
    }

    modifier onlySigner() {
        require(isSigner(_msgSender()), "SignerRole: caller does not have the Signer role");
        _;
    }

    function isSigner(address account) public view returns (bool) {
        return _signers.has(account);
    }

    function addSigner(address account) public onlySigner {
        _addSigner(account);
    }

    function renounceSigner() public {
        _removeSigner(_msgSender());
    }

    function _addSigner(address account) internal {
        _signers.add(account);
        emit SignerAdded(account);
    }

    function _removeSigner(address account) internal {
        _signers.remove(account);
        emit SignerRemoved(account);
    }
}

File 17 of 18: StringLibrary.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./UintLibrary.sol";
library StringLibrary {
    using UintLibrary for uint256;

    function append(string memory _a, string memory _b) internal pure returns (string memory) {
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        bytes memory bab = new bytes(_ba.length + _bb.length);
        uint k = 0;
        for (uint i = 0; i < _ba.length; i++) bab[k++] = _ba[i];
        for (uint i = 0; i < _bb.length; i++) bab[k++] = _bb[i];
        return string(bab);
    }

    function append(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        bytes memory _bc = bytes(_c);
        bytes memory bbb = new bytes(_ba.length + _bb.length + _bc.length);
        uint k = 0;
        for (uint i = 0; i < _ba.length; i++) bbb[k++] = _ba[i];
        for (uint i = 0; i < _bb.length; i++) bbb[k++] = _bb[i];
        for (uint i = 0; i < _bc.length; i++) bbb[k++] = _bc[i];
        return string(bbb);
    }

    function recover(string memory message, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        bytes memory msgBytes = bytes(message);
        bytes memory fullMessage = concat(
            bytes("\x19Ethereum Signed Message:\n"),
            bytes(msgBytes.length.toString()),
            msgBytes,
            new bytes(0), new bytes(0), new bytes(0), new bytes(0)
        );
        return ecrecover(keccak256(fullMessage), v, r, s);
    }

    function concat(bytes memory _ba, bytes memory _bb, bytes memory _bc, bytes memory _bd, bytes memory _be, bytes memory _bf, bytes memory _bg) internal pure returns (bytes memory) {
        bytes memory resultBytes = new bytes(_ba.length + _bb.length + _bc.length + _bd.length + _be.length + _bf.length + _bg.length);
        uint k = 0;
        for (uint i = 0; i < _ba.length; i++) resultBytes[k++] = _ba[i];
        for (uint i = 0; i < _bb.length; i++) resultBytes[k++] = _bb[i];
        for (uint i = 0; i < _bc.length; i++) resultBytes[k++] = _bc[i];
        for (uint i = 0; i < _bd.length; i++) resultBytes[k++] = _bd[i];
        for (uint i = 0; i < _be.length; i++) resultBytes[k++] = _be[i];
        for (uint i = 0; i < _bf.length; i++) resultBytes[k++] = _bf[i];
        for (uint i = 0; i < _bg.length; i++) resultBytes[k++] = _bg[i];
        return resultBytes;
    }
}

File 18 of 18: UintLibrary.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library UintLibrary {

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    function bp(uint256 value, uint256 bpValue) internal pure returns (uint256) {
        return value * bpValue / 10000;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"_controller","type":"address"},{"internalType":"string","name":"contractURI","type":"string"},{"internalType":"string","name":"tokenURIPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"notController","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"recipients","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"name":"SecondarySaleFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"encodePackedData","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"fees","outputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"getecrecover","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"components":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct ERC1155Base.Fee[]","name":"fees","type":"tuple[]"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"creator","type":"address"}],"name":"mintFromController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceSigner","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":"_values","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":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_expiredTime","type":"uint256"}],"name":"setExpiredTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURIPrefix","type":"string"}],"name":"setTokenURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040523480156200001157600080fd5b506040516200387e3803806200387e83398101604081905262000034916200044d565b81818181806200004b6301ffc9a760e01b6200013d565b6200005d632dde656160e21b6200013d565b6200006833620001c2565b620000733362000214565b6003620000818282620005b9565b50600591506200009490508282620005b9565b50620000a763e8a3d48560e01b6200013d565b50620000ba636cdb3d1360e11b6200013d565b505061012c600d55600a620000d08782620005b9565b50600b620000df8682620005b9565b50600c80546001600160a01b0319166001600160a01b038516179055620001068462000214565b620001317fe37243f27916e395706434720b54132b80ef5cc8c56f39b0df6485e8dfb697cf6200013d565b50505050505062000685565b6001600160e01b031980821690036200019d5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e746572666163652069640000000060448201526064015b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200022f8160026200026660201b620018d81790919060201c565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b620002728282620002e6565b15620002c15760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015260640162000194565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200034b5760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b606482015260840162000194565b506001600160a01b03166000908152602091909152604090205460ff1690565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200039357600080fd5b81516001600160401b0380821115620003b057620003b06200036b565b604051601f8301601f19908116603f01168101908282118183101715620003db57620003db6200036b565b81604052838152602092508683858801011115620003f857600080fd5b600091505b838210156200041c5785820183015181830184015290820190620003fd565b600093810190920192909252949350505050565b80516001600160a01b03811681146200044857600080fd5b919050565b60008060008060008060c087890312156200046757600080fd5b86516001600160401b03808211156200047f57600080fd5b6200048d8a838b0162000381565b97506020890151915080821115620004a457600080fd5b620004b28a838b0162000381565b9650620004c260408a0162000430565b9550620004d260608a0162000430565b94506080890151915080821115620004e957600080fd5b620004f78a838b0162000381565b935060a08901519150808211156200050e57600080fd5b506200051d89828a0162000381565b9150509295509295509295565b600181811c908216806200053f57607f821691505b6020821081036200056057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005b457600081815260208120601f850160051c810160208610156200058f5750805b601f850160051c820191505b81811015620005b0578281556001016200059b565b5050505b505050565b81516001600160401b03811115620005d557620005d56200036b565b620005ed81620005e684546200052a565b8462000566565b602080601f8311600181146200062557600084156200060c5750858301515b600019600386901b1c1916600185901b178555620005b0565b600085815260208120601f198616915b82811015620006565788860151825594840194600190910190840162000635565b5085821015620006755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6131e980620006956000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806395d89b411161010f578063e8a3d485116100a2578063f2fde38b11610071578063f2fde38b146104b4578063f5298aca146104c7578063f53bbb7f146104da578063f77c4791146104ed57600080fd5b8063e8a3d4851461044a578063e985e9c514610452578063eb12d61e1461048e578063f242432a146104a157600080fd5b8063c0ac9983116100de578063c0ac9983146103fe578063cd53d08e14610406578063df8debed1461042f578063e5c8b03d1461044257600080fd5b806395d89b41146103b057806399e0dd7c146103b8578063a22cb465146103cb578063b9c4d9fb146103de57600080fd5b80633f392b41116101875780637df73e27116101565780637df73e27146103525780638da5cb5b1461036557806392eefe9b1461038a578063938e3d7b1461039d57600080fd5b80633f392b41146102f25780634e1273f4146103055780636308f1cd14610318578063715018a61461034a57600080fd5b80630ebd4c7f116101c35780630ebd4c7f146102975780631ff702a8146102b7578063222b7b45146102ca5780632eb2c2d6146102df57600080fd5b8062fdd58e146101f457806301ffc9a71461021a57806306fdde031461026f5780630e89341c14610284575b600080fd5b610207610202366004612691565b610500565b6040519081526020015b60405180910390f35b61025f6102283660046126eb565b7fffffffff000000000000000000000000000000000000000000000000000000001660009081526020819052604090205460ff1690565b6040519015158152602001610211565b61027761052a565b6040516102119190612755565b610277610292366004612768565b6105b8565b6102aa6102a5366004612768565b6105c3565b60405161021191906127bc565b6102076102c5366004612768565b6106e5565b6102dd6102d83660046128c5565b61072b565b005b6102dd6102ed366004612aa6565b6108b7565b6102dd610300366004612b65565b610cae565b6102aa610313366004612bf8565b610e31565b61032b610326366004612c64565b610f3d565b604080516001600160a01b039093168352602083019190915201610211565b6102dd610f83565b61025f610360366004612c86565b610fe9565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610211565b6102dd610398366004612c86565b610ff6565b6102dd6103ab366004612ca3565b61107f565b6102776110e5565b6102dd6103c6366004612ca3565b6110f2565b6102dd6103d9366004612ce0565b611155565b6103f16103ec366004612768565b6111c1565b6040516102119190612d1e565b6102776112e8565b610372610414366004612768565b6008602052600090815260409020546001600160a01b031681565b6102dd61043d366004612768565b6112f5565b6102dd611354565b61027761135d565b61025f610460366004612d5f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102dd61049c366004612c86565b61136a565b6102dd6104af366004612d8d565b6113ee565b6102dd6104c2366004612c86565b61161c565b6102dd6104d5366004612e09565b6116fb565b6103726104e8366004612e3e565b611842565b600c54610372906001600160a01b031681565b60008181526006602090815260408083206001600160a01b03861684529091529020545b92915050565b600a805461053790612e79565b80601f016020809104026020016040519081016040528092919081815260200182805461056390612e79565b80156105b05780601f10610585576101008083540402835291602001916105b0565b820191906000526020600020905b81548152906001019060200180831161059357829003601f168201915b505050505081565b606061052482611954565b6000818152600960209081526040808320805482518185028101850190935280835260609493849084015b82821015610636576000848152602090819020604080518082019091526002850290910180546001600160a01b031682526001908101548284015290835290920191016105ee565b5050505090506000815167ffffffffffffffff811115610658576106586127e5565b604051908082528060200260200182016040528015610681578160200160208202803683370190505b50905060005b82518110156106dd578281815181106106a2576106a2612eb3565b6020026020010151602001518282815181106106c0576106c0612eb3565b6020908102919091010152806106d581612edf565b915050610687565b509392505050565b6040516bffffffffffffffffffffffff193060601b166020820152603481018290526000906054015b604051602081830303815290604052805190602001209050919050565b6040516bffffffffffffffffffffffff193060601b16602082015260348101899052466054820181905260748201849052609482018990529088908a906107f0906001906107929060b4015b60405160208183030381529060405280519060200120611a8b565b6040805160008152602081018083529290925260ff8d1690820152606081018b9052608081018a905260a0015b6020604051602081039080840390855afa1580156107e1573d6000803e3d6000fd5b50505060206040510351610fe9565b6108415760405162461bcd60e51b815260206004820152601a60248201527f7369676e65722073686f756c64207369676e20746f6b656e496400000000000060448201526064015b60405180910390fd5b600d5461084e9042612ef9565b821161089c5760405162461bcd60e51b815260206004820152601060248201527f746f6b656e2069642065787069726564000000000000000000000000000000006044820152606401610838565b6108aa818787876000611ac6565b5050505050505050505050565b6001600160a01b0387166109335760405162461bcd60e51b815260206004820152602560248201527f64657374696e6174696f6e2061646472657373206d757374206265206e6f6e2d60448201527f7a65726f2e0000000000000000000000000000000000000000000000000000006064820152608401610838565b8483146109a85760405162461bcd60e51b815260206004820152602960248201527f5f69647320616e64205f76616c756573206172726179206c656e676874206d7560448201527f7374206d617463682e00000000000000000000000000000000000000000000006064820152608401610838565b6001600160a01b0388163314806109e757506001600160a01b038816600090815260076020908152604080832033845290915290205460ff1615156001145b610a595760405162461bcd60e51b815260206004820152602f60248201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060448201527f61727479207472616e73666572732e00000000000000000000000000000000006064820152608401610838565b60005b85811015610b94576000878783818110610a7857610a78612eb3565b9050602002013590506000868684818110610a9557610a95612eb3565b905060200201359050806006600084815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002054610ae09190612ef9565b6006600084815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055506006600083815260200190815260200160002060008b6001600160a01b03166001600160a01b031681526020019081526020016000205481610b5c9190612f0c565b60009283526006602090815260408085206001600160a01b038e1686529091529092209190915550610b8d81612edf565b9050610a5c565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb89898989604051610be89493929190612f6a565b60405180910390a46001600160a01b0387163b15610ca457610ca433898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a9150899081908401838280828437600092019190915250611fb792505050565b5050505050505050565b600c546001600160a01b03163314610cf2576040517f099a14d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040516bffffffffffffffffffffffff193060601b166020820152603481018990524660548201819052607482018590526094820189905290610d6f90600190610d3e9060b401610777565b6040805160008152602081018083529290925260ff8b1690820152606081018990526080810188905260a0016107bf565b610dbb5760405162461bcd60e51b815260206004820152601a60248201527f7369676e65722073686f756c64207369676e20746f6b656e49640000000000006044820152606401610838565b600d54610dc89042612ef9565b8811610e165760405162461bcd60e51b815260206004820152601060248201527f746f6b656e2069642065787069726564000000000000000000000000000000006044820152606401610838565b6060610e258a82878787611ac6565b50505050505050505050565b6060838214610e3f57600080fd5b60008467ffffffffffffffff811115610e5a57610e5a6127e5565b604051908082528060200260200182016040528015610e83578160200160208202803683370190505b50905060005b85811015610f335760066000868684818110610ea757610ea7612eb3565b9050602002013581526020019081526020016000206000888884818110610ed057610ed0612eb3565b9050602002016020810190610ee59190612c86565b6001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110610f1857610f18612eb3565b6020908102919091010152610f2c81612edf565b9050610e89565b5095945050505050565b60096020528160005260406000208181548110610f5957600080fd5b6000918252602090912060029091020180546001909101546001600160a01b039091169250905082565b6001546001600160a01b03163314610fdd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b610fe760006120de565b565b600061052460028361213d565b6001546001600160a01b031633146110505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001546001600160a01b031633146110d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b6110e2816121db565b50565b600b805461053790612e79565b6001546001600160a01b0316331461114c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b6110e2816121eb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600960209081526040808320805482518185028101850190935280835260609493849084015b82821015611234576000848152602090819020604080518082019091526002850290910180546001600160a01b031682526001908101548284015290835290920191016111ec565b5050505090506000815167ffffffffffffffff811115611256576112566127e5565b60405190808252806020026020018201604052801561127f578160200160208202803683370190505b50905060005b82518110156106dd578281815181106112a0576112a0612eb3565b6020026020010151600001518282815181106112be576112be612eb3565b6001600160a01b0390921660209283029190910190910152806112e081612edf565b915050611285565b6003805461053790612e79565b6001546001600160a01b0316331461134f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b600d55565b610fe7336121f7565b6005805461053790612e79565b61137333610fe9565b6113e55760405162461bcd60e51b815260206004820152603060248201527f5369676e6572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865205369676e657220726f6c65000000000000000000000000000000006064820152608401610838565b6110e281612239565b6001600160a01b0385166114445760405162461bcd60e51b815260206004820152601560248201527f5f746f206d757374206265206e6f6e2d7a65726f2e00000000000000000000006044820152606401610838565b6001600160a01b03861633148061148357506001600160a01b038616600090815260076020908152604080832033845290915290205460ff1615156001145b6114f55760405162461bcd60e51b815260206004820152602f60248201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060448201527f61727479207472616e73666572732e00000000000000000000000000000000006064820152608401610838565b60008481526006602090815260408083206001600160a01b038a168452909152902054611523908490612ef9565b60008581526006602090815260408083206001600160a01b038b8116855292528083209390935587168152205461155a9084612ef9565b60008581526006602090815260408083206001600160a01b038a8116808652918452938290209490945580518881529182018790529189169133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46001600160a01b0385163b1561161457611614338787878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061227b92505050565b505050505050565b6001546001600160a01b031633146116765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b6001600160a01b0381166116f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610838565b6110e2816120de565b6001600160a01b03831633148061173a57506001600160a01b038316600090815260076020908152604080832033845290915290205460ff1615156001145b6117ac5760405162461bcd60e51b815260206004820152602b60248201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060448201527f61727479206275726e732e0000000000000000000000000000000000000000006064820152608401610838565b60008281526006602090815260408083206001600160a01b03871684529091529020546117da908290612ef9565b60008381526006602090815260408083206001600160a01b03881680855290835281842094909455805186815291820185905291929133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4505050565b6040516bffffffffffffffffffffffff193060601b1660208201526034810185905260009060019061187690605401610777565b6040805160008152602081018083529290925260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156118c4573d6000803e3d6000fd5b5050604051601f1901519695505050505050565b6118e2828261213d565b1561192f5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006044820152606401610838565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600081815260046020526040902080546060916105249161197490612e79565b80601f01602080910402602001604051908101604052809291908181526020018280546119a090612e79565b80156119ed5780601f106119c2576101008083540402835291602001916119ed565b820191906000526020600020905b8154815290600101906020018083116119d057829003601f168201915b5050505050600380546119ff90612e79565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90612e79565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b50505050506123a290919063ffffffff16565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c0161070e565b6000858152600860205260409020546001600160a01b031615611b2b5760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20697320616c7265616479206d696e7465640000000000000000006044820152606401610838565b82600003611b7b5760405162461bcd60e51b815260206004820152601960248201527f537570706c792073686f756c6420626520706f736974697665000000000000006044820152606401610838565b6000825111611bcc5760405162461bcd60e51b815260206004820152601160248201527f7572692073686f756c64206265207365740000000000000000000000000000006044820152606401610838565b60006001600160a01b038216611be25733611be4565b815b6000878152600860205260408120805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841617905586519192509067ffffffffffffffff811115611c3657611c366127e5565b604051908082528060200260200182016040528015611c5f578160200160208202803683370190505b5090506000865167ffffffffffffffff811115611c7e57611c7e6127e5565b604051908082528060200260200182016040528015611ca7578160200160208202803683370190505b50905060005b8751811015611eb95760006001600160a01b0316888281518110611cd357611cd3612eb3565b6020026020010151600001516001600160a01b031603611d355760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e7400000000006044820152606401610838565b878181518110611d4757611d47612eb3565b602002602001015160200151600003611da25760405162461bcd60e51b815260206004820152601c60248201527f4665652076616c75652073686f756c6420626520706f736974697665000000006044820152606401610838565b60008981526009602052604090208851899083908110611dc457611dc4612eb3565b6020908102919091018101518254600180820185556000948552938390208251600290920201805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039092169190911781559101519101558751889082908110611e2e57611e2e612eb3565b602002602001015160000151838281518110611e4c57611e4c612eb3565b60200260200101906001600160a01b031690816001600160a01b031681525050878181518110611e7e57611e7e612eb3565b602002602001015160200151828281518110611e9c57611e9c612eb3565b602090810291909101015280611eb181612edf565b915050611cad565b50865115611efd577f99aba1d63749cfd5ad1afda7c4663840924d54eb5f005bbbeadedc6ec13674b2888383604051611ef493929190612f9c565b60405180910390a15b60008881526006602090815260408083206001600160a01b03871684529091529020869055611f2c8886612553565b60408051898152602081018890526001600160a01b0385169160009133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4877f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b86604051611fa59190612755565b60405180910390a25050505050505050565b6040517fbc197c8100000000000000000000000000000000000000000000000000000000808252906001600160a01b0386169063bc197c8190612006908a908a90899089908990600401613006565b6020604051808303816000875af1158015612025573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120499190613058565b7fffffffff0000000000000000000000000000000000000000000000000000000016146116145760405162461bcd60e51b815260206004820152603e60248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135354261746368526563656976656400006064820152608401610838565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0382166121bb5760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610838565b506001600160a01b03166000908152602091909152604090205460ff1690565b60056121e782826130bb565b5050565b60036121e782826130bb565b6122026002826125c1565b6040516001600160a01b038216907f3525e22824a8a7df2c9a6029941c824cf95b6447f1e13d5128fd3826d35afe8b90600090a250565b6122446002826118d8565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b6040517ff23a6e6100000000000000000000000000000000000000000000000000000000808252906001600160a01b0386169063f23a6e61906122ca908a908a9089908990899060040161317b565b6020604051808303816000875af11580156122e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061230d9190613058565b7fffffffff0000000000000000000000000000000000000000000000000000000016146116145760405162461bcd60e51b815260206004820152603960248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135355265636569766564000000000000006064820152608401610838565b80518251606091849184916000916123ba9190612f0c565b67ffffffffffffffff8111156123d2576123d26127e5565b6040519080825280601f01601f1916602001820160405280156123fc576020820181803683370190505b5090506000805b84518110156124a35784818151811061241e5761241e612eb3565b01602001517fff0000000000000000000000000000000000000000000000000000000000000016838361245081612edf565b94508151811061246257612462612eb3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061249b81612edf565b915050612403565b5060005b8351811015612547578381815181106124c2576124c2612eb3565b01602001517fff000000000000000000000000000000000000000000000000000000000000001683836124f481612edf565b94508151811061250657612506612eb3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061253f81612edf565b9150506124a7565b50909695505050505050565b6000828152600860205260409020546001600160a01b03166125b75760405162461bcd60e51b815260206004820181905260248201527f5f736574546f6b656e5552493a20546f6b656e2073686f756c642065786973746044820152606401610838565b6121e7828261265f565b6125cb828261213d565b61263d5760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610838565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600082815260046020526040902061267782826130bb565b505050565b6001600160a01b03811681146110e257600080fd5b600080604083850312156126a457600080fd5b82356126af8161267c565b946020939093013593505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146110e257600080fd5b6000602082840312156126fd57600080fd5b8135612708816126bd565b9392505050565b6000815180845260005b8181101561273557602081850181015186830182015201612719565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000612708602083018461270f565b60006020828403121561277a57600080fd5b5035919050565b600081518084526020808501945080840160005b838110156127b157815187529582019590820190600101612795565b509495945050505050565b6020815260006127086020830184612781565b803560ff811681146127e057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561281e5761281e6127e5565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561284d5761284d6127e5565b604052919050565b600082601f83011261286657600080fd5b813567ffffffffffffffff811115612880576128806127e5565b6128936020601f19601f84011601612824565b8181528460208386010111156128a857600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600080600080610100898b0312156128e257600080fd5b88359750602089013596506128f960408a016127cf565b9550606089013594506080890135935067ffffffffffffffff60a08a0135111561292257600080fd5b60a089013589018a601f82011261293857600080fd5b67ffffffffffffffff81351115612951576129516127e5565b6129616020823560051b01612824565b81358082526020808301929160061b8401018d81111561298057600080fd5b6020840193505b808410156129d4576040848f03121561299f57600080fd5b6129a76127fb565b6129b1853561267c565b843581526020850135602082015280845250602083019250604084019350612987565b509450505060c0890135915067ffffffffffffffff60e08a013511156129f957600080fd5b612a098a60e08b01358b01612855565b90509295985092959890939650565b60008083601f840112612a2a57600080fd5b50813567ffffffffffffffff811115612a4257600080fd5b6020830191508360208260051b8501011115612a5d57600080fd5b9250929050565b60008083601f840112612a7657600080fd5b50813567ffffffffffffffff811115612a8e57600080fd5b602083019150836020828501011115612a5d57600080fd5b60008060008060008060008060a0898b031215612ac257600080fd5b8835612acd8161267c565b97506020890135612add8161267c565b9650604089013567ffffffffffffffff80821115612afa57600080fd5b612b068c838d01612a18565b909850965060608b0135915080821115612b1f57600080fd5b612b2b8c838d01612a18565b909650945060808b0135915080821115612b4457600080fd5b50612b518b828c01612a64565b999c989b5096995094979396929594505050565b600080600080600080600080610100898b031215612b8257600080fd5b8835975060208901359650612b9960408a016127cf565b9550606089013594506080890135935060a0890135925060c089013567ffffffffffffffff811115612bca57600080fd5b612bd68b828c01612855565b92505060e0890135612be78161267c565b809150509295985092959890939650565b60008060008060408587031215612c0e57600080fd5b843567ffffffffffffffff80821115612c2657600080fd5b612c3288838901612a18565b90965094506020870135915080821115612c4b57600080fd5b50612c5887828801612a18565b95989497509550505050565b60008060408385031215612c7757600080fd5b50508035926020909101359150565b600060208284031215612c9857600080fd5b81356127088161267c565b600060208284031215612cb557600080fd5b813567ffffffffffffffff811115612ccc57600080fd5b612cd884828501612855565b949350505050565b60008060408385031215612cf357600080fd5b8235612cfe8161267c565b915060208301358015158114612d1357600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156125475783516001600160a01b031683529284019291840191600101612d3a565b60008060408385031215612d7257600080fd5b8235612d7d8161267c565b91506020830135612d138161267c565b60008060008060008060a08789031215612da657600080fd5b8635612db18161267c565b95506020870135612dc18161267c565b94506040870135935060608701359250608087013567ffffffffffffffff811115612deb57600080fd5b612df789828a01612a64565b979a9699509497509295939492505050565b600080600060608486031215612e1e57600080fd5b8335612e298161267c565b95602085013595506040909401359392505050565b60008060008060808587031215612e5457600080fd5b84359350612e64602086016127cf565b93969395505050506040820135916060013590565b600181811c90821680612e8d57607f821691505b602082108103612ead57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198203612ef257612ef2612ec9565b5060010190565b8181038181111561052457610524612ec9565b8082018082111561052457610524612ec9565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115612f5157600080fd5b8260051b80836020870137939093016020019392505050565b604081526000612f7e604083018688612f1f565b8281036020840152612f91818587612f1f565b979650505050505050565b6000606082018583526020606081850152818651808452608086019150828801935060005b81811015612fe65784516001600160a01b031683529383019391830191600101612fc1565b50508481036040860152612ffa8187612781565b98975050505050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261303260a0830186612781565b82810360608401526130448186612781565b90508281036080840152612ffa818561270f565b60006020828403121561306a57600080fd5b8151612708816126bd565b601f82111561267757600081815260208120601f850160051c8101602086101561309c5750805b601f850160051c820191505b81811015611614578281556001016130a8565b815167ffffffffffffffff8111156130d5576130d56127e5565b6130e9816130e38454612e79565b84613075565b602080601f83116001811461311e57600084156131065750858301515b600019600386901b1c1916600185901b178555611614565b600085815260208120601f198616915b8281101561314d5788860151825594840194600190910190840161312e565b508582101561316b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152612f9160a083018461270f56fea264697066735822122050ac292499bcf725cc0a1dca8282f21634faa729bb349c620c0c11fb5081ae7264736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000741b3dc282b78c2486981ceb7fa62f382500113b0000000000000000000000004fa30daef50c6dc8593470750f3c721ca3275581000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001044656875622053747265616d204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353544e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f73747265616d2d6170692e64656875622e6e65742f6e6674732f6e66745f6d657461646174612f6d61696e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f73747265616d2d6170692e64656875622e6e65742f6e6674732f6e66745f6d657461646174612f0000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806395d89b411161010f578063e8a3d485116100a2578063f2fde38b11610071578063f2fde38b146104b4578063f5298aca146104c7578063f53bbb7f146104da578063f77c4791146104ed57600080fd5b8063e8a3d4851461044a578063e985e9c514610452578063eb12d61e1461048e578063f242432a146104a157600080fd5b8063c0ac9983116100de578063c0ac9983146103fe578063cd53d08e14610406578063df8debed1461042f578063e5c8b03d1461044257600080fd5b806395d89b41146103b057806399e0dd7c146103b8578063a22cb465146103cb578063b9c4d9fb146103de57600080fd5b80633f392b41116101875780637df73e27116101565780637df73e27146103525780638da5cb5b1461036557806392eefe9b1461038a578063938e3d7b1461039d57600080fd5b80633f392b41146102f25780634e1273f4146103055780636308f1cd14610318578063715018a61461034a57600080fd5b80630ebd4c7f116101c35780630ebd4c7f146102975780631ff702a8146102b7578063222b7b45146102ca5780632eb2c2d6146102df57600080fd5b8062fdd58e146101f457806301ffc9a71461021a57806306fdde031461026f5780630e89341c14610284575b600080fd5b610207610202366004612691565b610500565b6040519081526020015b60405180910390f35b61025f6102283660046126eb565b7fffffffff000000000000000000000000000000000000000000000000000000001660009081526020819052604090205460ff1690565b6040519015158152602001610211565b61027761052a565b6040516102119190612755565b610277610292366004612768565b6105b8565b6102aa6102a5366004612768565b6105c3565b60405161021191906127bc565b6102076102c5366004612768565b6106e5565b6102dd6102d83660046128c5565b61072b565b005b6102dd6102ed366004612aa6565b6108b7565b6102dd610300366004612b65565b610cae565b6102aa610313366004612bf8565b610e31565b61032b610326366004612c64565b610f3d565b604080516001600160a01b039093168352602083019190915201610211565b6102dd610f83565b61025f610360366004612c86565b610fe9565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610211565b6102dd610398366004612c86565b610ff6565b6102dd6103ab366004612ca3565b61107f565b6102776110e5565b6102dd6103c6366004612ca3565b6110f2565b6102dd6103d9366004612ce0565b611155565b6103f16103ec366004612768565b6111c1565b6040516102119190612d1e565b6102776112e8565b610372610414366004612768565b6008602052600090815260409020546001600160a01b031681565b6102dd61043d366004612768565b6112f5565b6102dd611354565b61027761135d565b61025f610460366004612d5f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102dd61049c366004612c86565b61136a565b6102dd6104af366004612d8d565b6113ee565b6102dd6104c2366004612c86565b61161c565b6102dd6104d5366004612e09565b6116fb565b6103726104e8366004612e3e565b611842565b600c54610372906001600160a01b031681565b60008181526006602090815260408083206001600160a01b03861684529091529020545b92915050565b600a805461053790612e79565b80601f016020809104026020016040519081016040528092919081815260200182805461056390612e79565b80156105b05780601f10610585576101008083540402835291602001916105b0565b820191906000526020600020905b81548152906001019060200180831161059357829003601f168201915b505050505081565b606061052482611954565b6000818152600960209081526040808320805482518185028101850190935280835260609493849084015b82821015610636576000848152602090819020604080518082019091526002850290910180546001600160a01b031682526001908101548284015290835290920191016105ee565b5050505090506000815167ffffffffffffffff811115610658576106586127e5565b604051908082528060200260200182016040528015610681578160200160208202803683370190505b50905060005b82518110156106dd578281815181106106a2576106a2612eb3565b6020026020010151602001518282815181106106c0576106c0612eb3565b6020908102919091010152806106d581612edf565b915050610687565b509392505050565b6040516bffffffffffffffffffffffff193060601b166020820152603481018290526000906054015b604051602081830303815290604052805190602001209050919050565b6040516bffffffffffffffffffffffff193060601b16602082015260348101899052466054820181905260748201849052609482018990529088908a906107f0906001906107929060b4015b60405160208183030381529060405280519060200120611a8b565b6040805160008152602081018083529290925260ff8d1690820152606081018b9052608081018a905260a0015b6020604051602081039080840390855afa1580156107e1573d6000803e3d6000fd5b50505060206040510351610fe9565b6108415760405162461bcd60e51b815260206004820152601a60248201527f7369676e65722073686f756c64207369676e20746f6b656e496400000000000060448201526064015b60405180910390fd5b600d5461084e9042612ef9565b821161089c5760405162461bcd60e51b815260206004820152601060248201527f746f6b656e2069642065787069726564000000000000000000000000000000006044820152606401610838565b6108aa818787876000611ac6565b5050505050505050505050565b6001600160a01b0387166109335760405162461bcd60e51b815260206004820152602560248201527f64657374696e6174696f6e2061646472657373206d757374206265206e6f6e2d60448201527f7a65726f2e0000000000000000000000000000000000000000000000000000006064820152608401610838565b8483146109a85760405162461bcd60e51b815260206004820152602960248201527f5f69647320616e64205f76616c756573206172726179206c656e676874206d7560448201527f7374206d617463682e00000000000000000000000000000000000000000000006064820152608401610838565b6001600160a01b0388163314806109e757506001600160a01b038816600090815260076020908152604080832033845290915290205460ff1615156001145b610a595760405162461bcd60e51b815260206004820152602f60248201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060448201527f61727479207472616e73666572732e00000000000000000000000000000000006064820152608401610838565b60005b85811015610b94576000878783818110610a7857610a78612eb3565b9050602002013590506000868684818110610a9557610a95612eb3565b905060200201359050806006600084815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002054610ae09190612ef9565b6006600084815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055506006600083815260200190815260200160002060008b6001600160a01b03166001600160a01b031681526020019081526020016000205481610b5c9190612f0c565b60009283526006602090815260408085206001600160a01b038e1686529091529092209190915550610b8d81612edf565b9050610a5c565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb89898989604051610be89493929190612f6a565b60405180910390a46001600160a01b0387163b15610ca457610ca433898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a9150899081908401838280828437600092019190915250611fb792505050565b5050505050505050565b600c546001600160a01b03163314610cf2576040517f099a14d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040516bffffffffffffffffffffffff193060601b166020820152603481018990524660548201819052607482018590526094820189905290610d6f90600190610d3e9060b401610777565b6040805160008152602081018083529290925260ff8b1690820152606081018990526080810188905260a0016107bf565b610dbb5760405162461bcd60e51b815260206004820152601a60248201527f7369676e65722073686f756c64207369676e20746f6b656e49640000000000006044820152606401610838565b600d54610dc89042612ef9565b8811610e165760405162461bcd60e51b815260206004820152601060248201527f746f6b656e2069642065787069726564000000000000000000000000000000006044820152606401610838565b6060610e258a82878787611ac6565b50505050505050505050565b6060838214610e3f57600080fd5b60008467ffffffffffffffff811115610e5a57610e5a6127e5565b604051908082528060200260200182016040528015610e83578160200160208202803683370190505b50905060005b85811015610f335760066000868684818110610ea757610ea7612eb3565b9050602002013581526020019081526020016000206000888884818110610ed057610ed0612eb3565b9050602002016020810190610ee59190612c86565b6001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110610f1857610f18612eb3565b6020908102919091010152610f2c81612edf565b9050610e89565b5095945050505050565b60096020528160005260406000208181548110610f5957600080fd5b6000918252602090912060029091020180546001909101546001600160a01b039091169250905082565b6001546001600160a01b03163314610fdd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b610fe760006120de565b565b600061052460028361213d565b6001546001600160a01b031633146110505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001546001600160a01b031633146110d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b6110e2816121db565b50565b600b805461053790612e79565b6001546001600160a01b0316331461114c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b6110e2816121eb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600960209081526040808320805482518185028101850190935280835260609493849084015b82821015611234576000848152602090819020604080518082019091526002850290910180546001600160a01b031682526001908101548284015290835290920191016111ec565b5050505090506000815167ffffffffffffffff811115611256576112566127e5565b60405190808252806020026020018201604052801561127f578160200160208202803683370190505b50905060005b82518110156106dd578281815181106112a0576112a0612eb3565b6020026020010151600001518282815181106112be576112be612eb3565b6001600160a01b0390921660209283029190910190910152806112e081612edf565b915050611285565b6003805461053790612e79565b6001546001600160a01b0316331461134f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b600d55565b610fe7336121f7565b6005805461053790612e79565b61137333610fe9565b6113e55760405162461bcd60e51b815260206004820152603060248201527f5369676e6572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865205369676e657220726f6c65000000000000000000000000000000006064820152608401610838565b6110e281612239565b6001600160a01b0385166114445760405162461bcd60e51b815260206004820152601560248201527f5f746f206d757374206265206e6f6e2d7a65726f2e00000000000000000000006044820152606401610838565b6001600160a01b03861633148061148357506001600160a01b038616600090815260076020908152604080832033845290915290205460ff1615156001145b6114f55760405162461bcd60e51b815260206004820152602f60248201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060448201527f61727479207472616e73666572732e00000000000000000000000000000000006064820152608401610838565b60008481526006602090815260408083206001600160a01b038a168452909152902054611523908490612ef9565b60008581526006602090815260408083206001600160a01b038b8116855292528083209390935587168152205461155a9084612ef9565b60008581526006602090815260408083206001600160a01b038a8116808652918452938290209490945580518881529182018790529189169133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46001600160a01b0385163b1561161457611614338787878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061227b92505050565b505050505050565b6001546001600160a01b031633146116765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610838565b6001600160a01b0381166116f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610838565b6110e2816120de565b6001600160a01b03831633148061173a57506001600160a01b038316600090815260076020908152604080832033845290915290205460ff1615156001145b6117ac5760405162461bcd60e51b815260206004820152602b60248201527f4e656564206f70657261746f7220617070726f76616c20666f7220337264207060448201527f61727479206275726e732e0000000000000000000000000000000000000000006064820152608401610838565b60008281526006602090815260408083206001600160a01b03871684529091529020546117da908290612ef9565b60008381526006602090815260408083206001600160a01b03881680855290835281842094909455805186815291820185905291929133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4505050565b6040516bffffffffffffffffffffffff193060601b1660208201526034810185905260009060019061187690605401610777565b6040805160008152602081018083529290925260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156118c4573d6000803e3d6000fd5b5050604051601f1901519695505050505050565b6118e2828261213d565b1561192f5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006044820152606401610838565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600081815260046020526040902080546060916105249161197490612e79565b80601f01602080910402602001604051908101604052809291908181526020018280546119a090612e79565b80156119ed5780601f106119c2576101008083540402835291602001916119ed565b820191906000526020600020905b8154815290600101906020018083116119d057829003601f168201915b5050505050600380546119ff90612e79565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90612e79565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b50505050506123a290919063ffffffff16565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c0161070e565b6000858152600860205260409020546001600160a01b031615611b2b5760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20697320616c7265616479206d696e7465640000000000000000006044820152606401610838565b82600003611b7b5760405162461bcd60e51b815260206004820152601960248201527f537570706c792073686f756c6420626520706f736974697665000000000000006044820152606401610838565b6000825111611bcc5760405162461bcd60e51b815260206004820152601160248201527f7572692073686f756c64206265207365740000000000000000000000000000006044820152606401610838565b60006001600160a01b038216611be25733611be4565b815b6000878152600860205260408120805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841617905586519192509067ffffffffffffffff811115611c3657611c366127e5565b604051908082528060200260200182016040528015611c5f578160200160208202803683370190505b5090506000865167ffffffffffffffff811115611c7e57611c7e6127e5565b604051908082528060200260200182016040528015611ca7578160200160208202803683370190505b50905060005b8751811015611eb95760006001600160a01b0316888281518110611cd357611cd3612eb3565b6020026020010151600001516001600160a01b031603611d355760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e7400000000006044820152606401610838565b878181518110611d4757611d47612eb3565b602002602001015160200151600003611da25760405162461bcd60e51b815260206004820152601c60248201527f4665652076616c75652073686f756c6420626520706f736974697665000000006044820152606401610838565b60008981526009602052604090208851899083908110611dc457611dc4612eb3565b6020908102919091018101518254600180820185556000948552938390208251600290920201805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039092169190911781559101519101558751889082908110611e2e57611e2e612eb3565b602002602001015160000151838281518110611e4c57611e4c612eb3565b60200260200101906001600160a01b031690816001600160a01b031681525050878181518110611e7e57611e7e612eb3565b602002602001015160200151828281518110611e9c57611e9c612eb3565b602090810291909101015280611eb181612edf565b915050611cad565b50865115611efd577f99aba1d63749cfd5ad1afda7c4663840924d54eb5f005bbbeadedc6ec13674b2888383604051611ef493929190612f9c565b60405180910390a15b60008881526006602090815260408083206001600160a01b03871684529091529020869055611f2c8886612553565b60408051898152602081018890526001600160a01b0385169160009133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4877f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b86604051611fa59190612755565b60405180910390a25050505050505050565b6040517fbc197c8100000000000000000000000000000000000000000000000000000000808252906001600160a01b0386169063bc197c8190612006908a908a90899089908990600401613006565b6020604051808303816000875af1158015612025573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120499190613058565b7fffffffff0000000000000000000000000000000000000000000000000000000016146116145760405162461bcd60e51b815260206004820152603e60248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135354261746368526563656976656400006064820152608401610838565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0382166121bb5760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610838565b506001600160a01b03166000908152602091909152604090205460ff1690565b60056121e782826130bb565b5050565b60036121e782826130bb565b6122026002826125c1565b6040516001600160a01b038216907f3525e22824a8a7df2c9a6029941c824cf95b6447f1e13d5128fd3826d35afe8b90600090a250565b6122446002826118d8565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b6040517ff23a6e6100000000000000000000000000000000000000000000000000000000808252906001600160a01b0386169063f23a6e61906122ca908a908a9089908990899060040161317b565b6020604051808303816000875af11580156122e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061230d9190613058565b7fffffffff0000000000000000000000000000000000000000000000000000000016146116145760405162461bcd60e51b815260206004820152603960248201527f636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c60448201527f75652066726f6d206f6e455243313135355265636569766564000000000000006064820152608401610838565b80518251606091849184916000916123ba9190612f0c565b67ffffffffffffffff8111156123d2576123d26127e5565b6040519080825280601f01601f1916602001820160405280156123fc576020820181803683370190505b5090506000805b84518110156124a35784818151811061241e5761241e612eb3565b01602001517fff0000000000000000000000000000000000000000000000000000000000000016838361245081612edf565b94508151811061246257612462612eb3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061249b81612edf565b915050612403565b5060005b8351811015612547578381815181106124c2576124c2612eb3565b01602001517fff000000000000000000000000000000000000000000000000000000000000001683836124f481612edf565b94508151811061250657612506612eb3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061253f81612edf565b9150506124a7565b50909695505050505050565b6000828152600860205260409020546001600160a01b03166125b75760405162461bcd60e51b815260206004820181905260248201527f5f736574546f6b656e5552493a20546f6b656e2073686f756c642065786973746044820152606401610838565b6121e7828261265f565b6125cb828261213d565b61263d5760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610838565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600082815260046020526040902061267782826130bb565b505050565b6001600160a01b03811681146110e257600080fd5b600080604083850312156126a457600080fd5b82356126af8161267c565b946020939093013593505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146110e257600080fd5b6000602082840312156126fd57600080fd5b8135612708816126bd565b9392505050565b6000815180845260005b8181101561273557602081850181015186830182015201612719565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000612708602083018461270f565b60006020828403121561277a57600080fd5b5035919050565b600081518084526020808501945080840160005b838110156127b157815187529582019590820190600101612795565b509495945050505050565b6020815260006127086020830184612781565b803560ff811681146127e057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561281e5761281e6127e5565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561284d5761284d6127e5565b604052919050565b600082601f83011261286657600080fd5b813567ffffffffffffffff811115612880576128806127e5565b6128936020601f19601f84011601612824565b8181528460208386010111156128a857600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600080600080610100898b0312156128e257600080fd5b88359750602089013596506128f960408a016127cf565b9550606089013594506080890135935067ffffffffffffffff60a08a0135111561292257600080fd5b60a089013589018a601f82011261293857600080fd5b67ffffffffffffffff81351115612951576129516127e5565b6129616020823560051b01612824565b81358082526020808301929160061b8401018d81111561298057600080fd5b6020840193505b808410156129d4576040848f03121561299f57600080fd5b6129a76127fb565b6129b1853561267c565b843581526020850135602082015280845250602083019250604084019350612987565b509450505060c0890135915067ffffffffffffffff60e08a013511156129f957600080fd5b612a098a60e08b01358b01612855565b90509295985092959890939650565b60008083601f840112612a2a57600080fd5b50813567ffffffffffffffff811115612a4257600080fd5b6020830191508360208260051b8501011115612a5d57600080fd5b9250929050565b60008083601f840112612a7657600080fd5b50813567ffffffffffffffff811115612a8e57600080fd5b602083019150836020828501011115612a5d57600080fd5b60008060008060008060008060a0898b031215612ac257600080fd5b8835612acd8161267c565b97506020890135612add8161267c565b9650604089013567ffffffffffffffff80821115612afa57600080fd5b612b068c838d01612a18565b909850965060608b0135915080821115612b1f57600080fd5b612b2b8c838d01612a18565b909650945060808b0135915080821115612b4457600080fd5b50612b518b828c01612a64565b999c989b5096995094979396929594505050565b600080600080600080600080610100898b031215612b8257600080fd5b8835975060208901359650612b9960408a016127cf565b9550606089013594506080890135935060a0890135925060c089013567ffffffffffffffff811115612bca57600080fd5b612bd68b828c01612855565b92505060e0890135612be78161267c565b809150509295985092959890939650565b60008060008060408587031215612c0e57600080fd5b843567ffffffffffffffff80821115612c2657600080fd5b612c3288838901612a18565b90965094506020870135915080821115612c4b57600080fd5b50612c5887828801612a18565b95989497509550505050565b60008060408385031215612c7757600080fd5b50508035926020909101359150565b600060208284031215612c9857600080fd5b81356127088161267c565b600060208284031215612cb557600080fd5b813567ffffffffffffffff811115612ccc57600080fd5b612cd884828501612855565b949350505050565b60008060408385031215612cf357600080fd5b8235612cfe8161267c565b915060208301358015158114612d1357600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156125475783516001600160a01b031683529284019291840191600101612d3a565b60008060408385031215612d7257600080fd5b8235612d7d8161267c565b91506020830135612d138161267c565b60008060008060008060a08789031215612da657600080fd5b8635612db18161267c565b95506020870135612dc18161267c565b94506040870135935060608701359250608087013567ffffffffffffffff811115612deb57600080fd5b612df789828a01612a64565b979a9699509497509295939492505050565b600080600060608486031215612e1e57600080fd5b8335612e298161267c565b95602085013595506040909401359392505050565b60008060008060808587031215612e5457600080fd5b84359350612e64602086016127cf565b93969395505050506040820135916060013590565b600181811c90821680612e8d57607f821691505b602082108103612ead57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198203612ef257612ef2612ec9565b5060010190565b8181038181111561052457610524612ec9565b8082018082111561052457610524612ec9565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115612f5157600080fd5b8260051b80836020870137939093016020019392505050565b604081526000612f7e604083018688612f1f565b8281036020840152612f91818587612f1f565b979650505050505050565b6000606082018583526020606081850152818651808452608086019150828801935060005b81811015612fe65784516001600160a01b031683529383019391830191600101612fc1565b50508481036040860152612ffa8187612781565b98975050505050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261303260a0830186612781565b82810360608401526130448186612781565b90508281036080840152612ffa818561270f565b60006020828403121561306a57600080fd5b8151612708816126bd565b601f82111561267757600081815260208120601f850160051c8101602086101561309c5750805b601f850160051c820191505b81811015611614578281556001016130a8565b815167ffffffffffffffff8111156130d5576130d56127e5565b6130e9816130e38454612e79565b84613075565b602080601f83116001811461311e57600084156131065750858301515b600019600386901b1c1916600185901b178555611614565b600085815260208120601f198616915b8281101561314d5788860151825594840194600190910190840161312e565b508582101561316b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152612f9160a083018461270f56fea264697066735822122050ac292499bcf725cc0a1dca8282f21634faa729bb349c620c0c11fb5081ae7264736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000741b3dc282b78c2486981ceb7fa62f382500113b0000000000000000000000004fa30daef50c6dc8593470750f3c721ca3275581000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001044656875622053747265616d204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353544e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f73747265616d2d6170692e64656875622e6e65742f6e6674732f6e66745f6d657461646174612f6d61696e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f73747265616d2d6170692e64656875622e6e65742f6e6674732f6e66745f6d657461646174612f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dehub Stream NFT
Arg [1] : _symbol (string): STN
Arg [2] : signer (address): 0x741B3Dc282B78C2486981cEb7Fa62F382500113b
Arg [3] : _controller (address): 0x4fa30dAef50c6dc8593470750F3c721CA3275581
Arg [4] : contractURI (string): https://stream-api.dehub.net/nfts/nft_metadata/main.json
Arg [5] : tokenURIPrefix (string): https://stream-api.dehub.net/nfts/nft_metadata/

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000741b3dc282b78c2486981ceb7fa62f382500113b
Arg [3] : 0000000000000000000000004fa30daef50c6dc8593470750f3c721ca3275581
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 44656875622053747265616d204e465400000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 53544e0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000038
Arg [11] : 68747470733a2f2f73747265616d2d6170692e64656875622e6e65742f6e6674
Arg [12] : 732f6e66745f6d657461646174612f6d61696e2e6a736f6e0000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [14] : 68747470733a2f2f73747265616d2d6170692e64656875622e6e65742f6e6674
Arg [15] : 732f6e66745f6d657461646174612f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

199:3030:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7695:391:3;;;;;;:::i;:::-;;:::i;:::-;;;639:25:18;;;627:2;612:18;7695:391:3;;;;;;;;975:135:7;;;;;;:::i;:::-;1069:33;;1045:4;1069:33;;;;;;;;;;;;;;975:135;;;;1272:14:18;;1265:22;1247:41;;1235:2;1220:18;975:135:7;1107:187:18;266:18:2;;;:::i;:::-;;;;;;;:::i;785:104:5:-;;;;;;:::i;:::-;;:::i;1115:317:4:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2885:131:2:-;;;;;;:::i;:::-;;:::i;1690:774::-;;;;;;:::i;:::-;;:::i;:::-;;5635:1808:3;;;;;;:::i;:::-;;:::i;897:785:2:-;;;;;;:::i;:::-;;:::i;8394:422:3:-;;;;;;:::i;:::-;;:::i;532:37:4:-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10641:55:18;;;10623:74;;10728:2;10713:18;;10706:34;;;;10596:18;532:37:4;10433:313:18;1650:94:13;;;:::i;564:109:15:-;;;;;;:::i;:::-;;:::i;999:87:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;999:87;;;-1:-1:-1;;;;;11167:55:18;;;11149:74;;11137:2;11122:18;999:87:13;11003:226:18;2472:106:2;;;;;;:::i;:::-;;:::i;4122:115:4:-;;;;;;:::i;:::-;;:::i;291:20:2:-;;;:::i;3987:127:4:-;;;;;;:::i;:::-;;:::i;9178:221:3:-;;;;;;:::i;:::-;;:::i;746:361:4:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;180:28:10:-;;;:::i;463:43:4:-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;463:43:4;;;2586:110:2;;;;;;:::i;:::-;;:::i;781:79:15:-;;;:::i;125:25:8:-;;;:::i;9686:168:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;9811:24:3;;;9787:4;9811:24;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;;;9686:168;681:92:15;;;;;;:::i;:::-;;:::i;3032:955:3:-;;;;;;:::i;:::-;;:::i;1899:192:13:-;;;;;;:::i;:::-;;:::i;2761:747:4:-;;;;;;:::i;:::-;;:::i;3024:202:2:-;;;;;;:::i;:::-;;:::i;318:25::-;;;;;-1:-1:-1;;;;;318:25:2;;;7695:391:3;7783:7;8057:13;;;:8;:13;;;;;;;;-1:-1:-1;;;;;8057:21:3;;;;;;;;;;7695:391;;;;;:::o;266:18:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;785:104:5:-;834:13;867:14;877:3;867:9;:14::i;1115:317:4:-;1210:18;1231:8;;;:4;:8;;;;;;;;1210:29;;;;;;;;;;;;;;;;;1184:13;;1210:18;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1210:29:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250:20;1284:5;:12;1273:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1273:24:4;;1250:47;;1313:6;1308:93;1329:5;:12;1325:1;:16;1308:93;;;1375:5;1381:1;1375:8;;;;;;;;:::i;:::-;;;;;;;:14;;;1363:6;1370:1;1363:9;;;;;;;;:::i;:::-;;;;;;;;;;:26;1343:3;;;;:::i;:::-;;;;1308:93;;;-1:-1:-1;1418:6:4;1115:317;-1:-1:-1;;;1115:317:4:o;2885:131:2:-;2981:26;;-1:-1:-1;;2998:4:2;15904:2:18;15900:15;15896:88;2981:26:2;;;15884:101:18;16001:12;;;15994:28;;;2944:7:2;;16038:12:18;;2981:26:2;;;;;;;;;;;;;2971:37;;;;;;2964:44;;2885:131;;;:::o;1690:774::-;2173:61;;-1:-1:-1;;2190:4:2;16344:2:18;16340:15;16336:88;2173:61:2;;;16324:101:18;16441:12;;;16434:28;;;2051:9:2;16478:12:18;;;16471:28;;;16515:12;;;16508:28;;;16552:13;;;16545:29;;;2051:9:2;1964;;2003:2;;2103:158;;2130:116;;2140:96;;16590:13:18;;2173:61:2;;;;;;;;;;;;;2163:72;;;;;;2140:22;:96::i;:::-;2130:116;;;;;;;;;;;;16841:25:18;;;;16914:4;16902:17;;16882:18;;;16875:45;16936:18;;;16929:34;;;16979:18;;;16972:34;;;16813:19;;2130:116:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2103:8;:158::i;:::-;2081:234;;;;-1:-1:-1;;;2081:234:2;;17219:2:18;2081:234:2;;;17201:21:18;17258:2;17238:18;;;17231:30;17297:28;17277:18;;;17270:56;17343:18;;2081:234:2;;;;;;;;;2365:11;;2347:29;;:15;:29;:::i;:::-;2334:10;:42;2326:71;;;;-1:-1:-1;;;2326:71:2;;17707:2:18;2326:71:2;;;17689:21:18;17746:2;17726:18;;;17719:30;17785:18;17765;;;17758:46;17821:18;;2326:71:2;17505:340:18;2326:71:2;2408:48;2414:8;2424:4;2430:6;2438:3;2451;2408:5;:48::i;:::-;1906:558;;;1690:774;;;;;;;;:::o;5635:1808:3:-;-1:-1:-1;;;;;5848:19:3;;5840:69;;;;-1:-1:-1;;;5840:69:3;;18052:2:18;5840:69:3;;;18034:21:18;18091:2;18071:18;;;18064:30;18130:34;18110:18;;;18103:62;18201:7;18181:18;;;18174:35;18226:19;;5840:69:3;17850:401:18;5840:69:3;5928:29;;;5920:83;;;;-1:-1:-1;;;5920:83:3;;18458:2:18;5920:83:3;;;18440:21:18;18497:2;18477:18;;;18470:30;18536:34;18516:18;;;18509:62;18607:11;18587:18;;;18580:39;18636:19;;5920:83:3;18256:405:18;5920:83:3;-1:-1:-1;;;;;6022:19:3;;6031:10;6022:19;;:66;;-1:-1:-1;;;;;;6045:23:3;;;;;;:16;:23;;;;;;;;6069:10;6045:35;;;;;;;;;;:43;;:35;:43;6022:66;6014:126;;;;-1:-1:-1;;;6014:126:3;;18868:2:18;6014:126:3;;;18850:21:18;18907:2;18887:18;;;18880:30;18946:34;18926:18;;;18919:62;19017:17;18997:18;;;18990:45;19052:19;;6014:126:3;18666:411:18;6014:126:3;6158:9;6153:382;6173:15;;;6153:382;;;6210:10;6223:4;;6228:1;6223:7;;;;;;;:::i;:::-;;;;;;;6210:20;;6245:13;6261:7;;6269:1;6261:10;;;;;;;:::i;:::-;;;;;;;6245:26;;6456:5;6434:8;:12;6443:2;6434:12;;;;;;;;;;;:19;6447:5;-1:-1:-1;;;;;6434:19:3;-1:-1:-1;;;;;6434:19:3;;;;;;;;;;;;;:27;;;;:::i;:::-;6412:8;:12;6421:2;6412:12;;;;;;;;;;;:19;6425:5;-1:-1:-1;;;;;6412:19:3;-1:-1:-1;;;;;6412:19:3;;;;;;;;;;;;:49;;;;6506:8;:12;6515:2;6506:12;;;;;;;;;;;:17;6519:3;-1:-1:-1;;;;;6506:17:3;-1:-1:-1;;;;;6506:17:3;;;;;;;;;;;;;6498:5;:25;;;;:::i;:::-;6476:12;;;;:8;:12;;;;;;;;-1:-1:-1;;;;;6476:17:3;;;;;;;;;;:47;;;;-1:-1:-1;6190:3:3;;;:::i;:::-;;;6153:382;;;;7126:3;-1:-1:-1;;;;;7093:52:3;7119:5;-1:-1:-1;;;;;7093:52:3;7107:10;-1:-1:-1;;;;;7093:52:3;;7131:4;;7137:7;;7093:52;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;7310:14:3;;1120:20:0;1168:8;7306:130:3;;7343:81;7379:10;7391:5;7398:3;7403:4;;7343:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7343:81:3;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7409:7:3;;-1:-1:-1;7409:7:3;;;;7343:81;;;7409:7;;7343:81;7409:7;7343:81;;;;;;;;;-1:-1:-1;;7343:81:3;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7418:5:3;;-1:-1:-1;7418:5:3;;;;7343:81;;7418:5;;;;7343:81;;;;;;;;;-1:-1:-1;7343:35:3;;-1:-1:-1;;;7343:81:3:i;:::-;5635:1808;;;;;;;;:::o;897:785:2:-;1154:10;;-1:-1:-1;;;;;1154:10:2;1140;:24;1136:52;;1173:15;;;;;;;;;;;;;;1136:52;1382:54;;-1:-1:-1;;1399:4:2;16344:2:18;16340:15;16336:88;1382:54:2;;;16324:101:18;16441:12;;;16434:28;;;1260:9:2;16478:12:18;;;16471:28;;;16515:12;;;16508:28;;;16552:13;;;16545:29;;;1260:9:2;1312:151;;1339:109;;1349:89;;16590:13:18;;1382:54:2;16061:548:18;1349:89:2;1339:109;;;;;;;;;;;;16841:25:18;;;;16914:4;16902:17;;16882:18;;;16875:45;16936:18;;;16929:34;;;16979:18;;;16972:34;;;16813:19;;1339:109:2;16614:398:18;1312:151:2;1290:227;;;;-1:-1:-1;;;1290:227:2;;17219:2:18;1290:227:2;;;17201:21:18;17258:2;17238:18;;;17231:30;17297:28;17277:18;;;17270:56;17343:18;;1290:227:2;17017:350:18;1290:227:2;1566:11;;1548:29;;:15;:29;:::i;:::-;1536:9;:41;1528:70;;;;-1:-1:-1;;;1528:70:2;;17707:2:18;1528:70:2;;;17689:21:18;17746:2;17726:18;;;17719:30;17785:18;17765;;;17758:46;17821:18;;1528:70:2;17505:340:18;1528:70:2;1609:17;1637:37;1643:2;1647:4;1653:6;1661:3;1666:7;1637:5;:37::i;:::-;1125:557;;897:785;;;;;;;;:::o;8394:422:3:-;8511:16;8550:29;;;8542:38;;;;;;8593:26;8636:7;8622:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8622:29:3;;8593:58;;8669:9;8664:116;8684:18;;;8664:116;;;8739:8;:17;8748:4;;8753:1;8748:7;;;;;;;:::i;:::-;;;;;;;8739:17;;;;;;;;;;;:29;8757:7;;8765:1;8757:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;8739:29:3;-1:-1:-1;;;;;8739:29:3;;;;;;;;;;;;;8724:9;8734:1;8724:12;;;;;;;;:::i;:::-;;;;;;;;;;:44;8704:3;;;:::i;:::-;;;8664:116;;;-1:-1:-1;8799:9:3;8394:422;-1:-1:-1;;;;;8394:422:3:o;532:37:4:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;532:37:4;;;;-1:-1:-1;532:37:4;-1:-1:-1;532:37:4;:::o;1650:94:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;682:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;20301:2:18;1211:68:13;;;20283:21:18;;;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;20431:18;;1211:68:13;20099:356:18;1211:68:13;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;564:109:15:-;620:4;644:21;:8;657:7;644:12;:21::i;2472:106:2:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;682:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;20301:2:18;1211:68:13;;;20283:21:18;;;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;20431:18;;1211:68:13;20099:356:18;1211:68:13;2546:10:2::1;:24:::0;;-1:-1:-1;;2546:24:2::1;-1:-1:-1::0;;;;;2546:24:2;;;::::1;::::0;;;::::1;::::0;;2472:106::o;4122:115:4:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;682:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;20301:2:18;1211:68:13;;;20283:21:18;;;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;20431:18;;1211:68:13;20099:356:18;1211:68:13;4201:28:4::1;4217:11;4201:15;:28::i;:::-;4122:115:::0;:::o;291:20:2:-;;;;;;;:::i;3987:127:4:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;682:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;20301:2:18;1211:68:13;;;20283:21:18;;;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;20431:18;;1211:68:13;20099:356:18;1211:68:13;4072:34:4::1;4091:14;4072:18;:34::i;9178:221:3:-:0;9293:10;9276:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;9276:39:3;;;;;;;;;;;;:51;;-1:-1:-1;;9276:51:3;;;;;;;;;;9343:48;;1247:41:18;;;9276:39:3;;9293:10;9343:48;;1220:18:18;9343:48:3;;;;;;;9178:221;;:::o;746:361:4:-;859:18;880:8;;;:4;:8;;;;;;;;859:29;;;;;;;;;;;;;;;;;822:24;;859:18;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;859:29:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;899:31;955:5;:12;933:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;933:35:4;;899:69;;984:6;979:97;1000:5;:12;996:1;:16;979:97;;;1046:5;1052:1;1046:8;;;;;;;;:::i;:::-;;;;;;;:18;;;1034:6;1041:1;1034:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1034:30:4;;;:9;;;;;;;;;;;:30;1014:3;;;;:::i;:::-;;;;979:97;;180:28:10;;;;;;;:::i;2586:110:2:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;682:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;20301:2:18;1211:68:13;;;20283:21:18;;;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;20431:18;;1211:68:13;20099:356:18;1211:68:13;2662:11:2::1;:26:::0;2586:110::o;781:79:15:-;825:27;682:10:1;825:13:15;:27::i;125:25:8:-;;;;;;;:::i;681:92:15:-;461:22;682:10:1;564:109:15;:::i;461:22::-;453:83;;;;-1:-1:-1;;;453:83:15;;20662:2:18;453:83:15;;;20644:21:18;20701:2;20681:18;;;20674:30;20740:34;20720:18;;;20713:62;20811:18;20791;;;20784:46;20847:19;;453:83:15;20460:412:18;453:83:15;746:19:::1;757:7;746:10;:19::i;3032:955:3:-:0;-1:-1:-1;;;;;3183:19:3;;3175:53;;;;-1:-1:-1;;;3175:53:3;;21079:2:18;3175:53:3;;;21061:21:18;21118:2;21098:18;;;21091:30;21157:23;21137:18;;;21130:51;21198:18;;3175:53:3;20877:345:18;3175:53:3;-1:-1:-1;;;;;3247:19:3;;3256:10;3247:19;;:66;;-1:-1:-1;;;;;;3270:23:3;;;;;;:16;:23;;;;;;;;3294:10;3270:35;;;;;;;;;;:43;;:35;:43;3247:66;3239:126;;;;-1:-1:-1;;;3239:126:3;;18868:2:18;3239:126:3;;;18850:21:18;18907:2;18887:18;;;18880:30;18946:34;18926:18;;;18919:62;19017:17;18997:18;;;18990:45;19052:19;;3239:126:3;18666:411:18;3239:126:3;3517:13;;;;:8;:13;;;;;;;;-1:-1:-1;;;;;3517:20:3;;;;;;;;;;:29;;3540:6;;3517:29;:::i;:::-;3494:13;;;;:8;:13;;;;;;;;-1:-1:-1;;;;;3494:20:3;;;;;;;;;;:52;;;;3589:18;;;;;;3580:27;;:6;:27;:::i;:::-;3557:13;;;;:8;:13;;;;;;;;-1:-1:-1;;;;;3557:18:3;;;;;;;;;;;;;:50;;;;3653:51;;21401:25:18;;;21442:18;;;21435:34;;;3653:51:3;;;;3668:10;;3653:51;;21374:18:18;3653:51:3;;;;;;;-1:-1:-1;;;;;3861:14:3;;1120:20:0;1168:8;3857:123:3;;3894:74;3925:10;3937:5;3944:3;3949;3954:6;3962:5;;3894:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3894:30:3;;-1:-1:-1;;;3894:74:3:i;:::-;3032:955;;;;;;:::o;1899:192:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;682:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;20301:2:18;1211:68:13;;;20283:21:18;;;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;20431:18;;1211:68:13;20099:356:18;1211:68:13;-1:-1:-1;;;;;1988:22:13;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:13;;21682:2:18;1980:73:13::1;::::0;::::1;21664:21:18::0;21721:2;21701:18;;;21694:30;21760:34;21740:18;;;21733:62;21831:8;21811:18;;;21804:36;21857:19;;1980:73:13::1;21480:402:18::0;1980:73:13::1;2064:19;2074:8;2064:9;:19::i;2761:747:4:-:0;-1:-1:-1;;;;;2862:20:4;;2872:10;2862:20;;:68;;-1:-1:-1;;;;;;2886:24:4;;;;;;:16;:24;;;;;;;;2911:10;2886:36;;;;;;;;;;:44;;:36;:44;2862:68;2840:161;;;;-1:-1:-1;;;2840:161:4;;22089:2:18;2840:161:4;;;22071:21:18;22128:2;22108:18;;;22101:30;22167:34;22147:18;;;22140:62;22238:13;22218:18;;;22211:41;22269:19;;2840:161:4;21887:407:18;2840:161:4;3363:13;;;;:8;:13;;;;;;;;-1:-1:-1;;;;;3363:21:4;;;;;;;;;;:30;;3387:6;;3363:30;:::i;:::-;3339:13;;;;:8;:13;;;;;;;;-1:-1:-1;;;;;3339:21:4;;;;;;;;;;;:54;;;;3439:61;;21401:25:18;;;21442:18;;;21435:34;;;3339:13:4;;:21;3454:10;;3439:61;;21374:18:18;3439:61:4;;;;;;;2761:747;;;:::o;3024:202:2:-;3180:26;;-1:-1:-1;;3197:4:2;15904:2:18;15900:15;15896:88;3180:26:2;;;15884:101:18;16001:12;;;15994:28;;;3110:7:2;;3137:81;;3147:61;;16038:12:18;;3180:26:2;15705:351:18;3147:61:2;3137:81;;;;;;;;;;;;16841:25:18;;;;16914:4;16902:17;;16882:18;;;16875:45;16936:18;;;16929:34;;;16979:18;;;16972:34;;;16813:19;;3137:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3137:81:2;;-1:-1:-1;;3137:81:2;;;3024:202;-1:-1:-1;;;;;;3024:202:2:o;305:178:14:-;383:18;387:4;393:7;383:3;:18::i;:::-;382:19;374:63;;;;-1:-1:-1;;;374:63:14;;22501:2:18;374:63:14;;;22483:21:18;22540:2;22520:18;;;22513:30;22579:33;22559:18;;;22552:61;22630:18;;374:63:14;22299:355:18;374:63:14;-1:-1:-1;;;;;448:20:14;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;448:27:14;471:4;448:27;;;305:178::o;612:142:10:-;726:19;;;;:10;:19;;;;;704:42;;671:13;;704:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;:::i;2704:173:2:-;2810:58;;22901:66:18;2810:58:2;;;22889:79:18;22984:12;;;22977:28;;;2773:7:2;;23021:12:18;;2810:58:2;22659:380:18;1510:1243:4;1666:3;1641:13;;;:8;:13;;;;;;-1:-1:-1;;;;;1641:13:4;:29;1633:65;;;;-1:-1:-1;;;1633:65:4;;23246:2:18;1633:65:4;;;23228:21:18;23285:2;23265:18;;;23258:30;23324:25;23304:18;;;23297:53;23367:18;;1633:65:4;23044:347:18;1633:65:4;1717:7;1728:1;1717:12;1709:50;;;;-1:-1:-1;;;1709:50:4;;23598:2:18;1709:50:4;;;23580:21:18;23637:2;23617:18;;;23610:30;23676:27;23656:18;;;23649:55;23721:18;;1709:50:4;23396:349:18;1709:50:4;1799:1;1784:4;1778:18;:22;1770:52;;;;-1:-1:-1;;;1770:52:4;;23952:2:18;1770:52:4;;;23934:21:18;23991:2;23971:18;;;23964:30;24030:19;24010:18;;;24003:47;24067:18;;1770:52:4;23750:341:18;1770:52:4;1833:15;-1:-1:-1;;;;;1851:24:4;;:48;;1889:10;1851:48;;;1878:8;1851:48;1910:13;;;;:8;:13;;;;;:23;;-1:-1:-1;;1910:23:4;-1:-1:-1;;;;;1910:23:4;;;;;1988:12;;1910:23;;-1:-1:-1;1910:13:4;1974:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1974:27:4;;1944:57;;2012:17;2043:5;:12;2032:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2032:24:4;;2012:44;;2072:6;2067:342;2088:5;:12;2084:1;:16;2067:342;;;2160:3;-1:-1:-1;;;;;2130:34:4;:5;2136:1;2130:8;;;;;;;;:::i;:::-;;;;;;;:18;;;-1:-1:-1;;;;;2130:34:4;;2122:74;;;;-1:-1:-1;;;2122:74:4;;24298:2:18;2122:74:4;;;24280:21:18;24337:2;24317:18;;;24310:30;24376:29;24356:18;;;24349:57;24423:18;;2122:74:4;24096:351:18;2122:74:4;2219:5;2225:1;2219:8;;;;;;;;:::i;:::-;;;;;;;:14;;;2237:1;2219:19;2211:60;;;;-1:-1:-1;;;2211:60:4;;24654:2:18;2211:60:4;;;24636:21:18;24693:2;24673:18;;;24666:30;24732;24712:18;;;24705:58;24780:18;;2211:60:4;24452:352:18;2211:60:4;2286:9;;;;:4;:9;;;;;2301:8;;:5;;2307:1;;2301:8;;;;;;:::i;:::-;;;;;;;;;;;;2286:24;;;;;;;;-1:-1:-1;2286:24:4;;;;;;;;;;;;;;;;-1:-1:-1;;2286:24:4;-1:-1:-1;;;;;2286:24:4;;;;;;;;;;;;;;;2341:8;;;;2347:1;;2341:8;;;;;;:::i;:::-;;;;;;;:18;;;2325:10;2336:1;2325:13;;;;;;;;:::i;:::-;;;;;;:34;-1:-1:-1;;;;;2325:34:4;;;-1:-1:-1;;;;;2325:34:4;;;;;2383:5;2389:1;2383:8;;;;;;;;:::i;:::-;;;;;;;:14;;;2374:3;2378:1;2374:6;;;;;;;;:::i;:::-;;;;;;;;;;:23;2102:3;;;;:::i;:::-;;;;2067:342;;;-1:-1:-1;2423:12:4;;:16;2419:93;;2461:39;2479:3;2484:10;2496:3;2461:39;;;;;;;;:::i;:::-;;;;;;;;2419:93;2522:13;;;;:8;:13;;;;;;;;-1:-1:-1;;;;;2522:22:4;;;;;;;;;:32;;;2565:23;2531:3;2583:4;2565:12;:23::i;:::-;2652:63;;;21401:25:18;;;21457:2;21442:18;;21435:34;;;-1:-1:-1;;;;;2652:63:4;;;2687:3;;2667:10;;2652:63;;21374:18:18;2652:63:4;;;;;;;2741:3;2731:14;2735:4;2731:14;;;;;;:::i;:::-;;;;;;;;1622:1131;;;1510:1243;;;;;:::o;11114:1189:3:-;12114:88;;12206:22;12114:88;;;12206:22;-1:-1:-1;;;;;12114:48:3;;;463:10;;12114:88;;12163:9;;12174:5;;12181:4;;12187:7;;12196:5;;12114:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:114;;;12106:189;;;;-1:-1:-1;;;12106:189:3;;27050:2:18;12106:189:3;;;27032:21:18;27089:2;27069:18;;;27062:30;27128:34;27108:18;;;27101:62;27199:32;27179:18;;;27172:60;27249:19;;12106:189:3;26848:426:18;2099:173:13;2174:6;;;-1:-1:-1;;;;;2191:17:13;;;-1:-1:-1;;2191:17:13;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;841:203:14:-;913:4;-1:-1:-1;;;;;938:21:14;;930:68;;;;-1:-1:-1;;;930:68:14;;27481:2:18;930:68:14;;;27463:21:18;27520:2;27500:18;;;27493:30;27559:34;27539:18;;;27532:62;27630:4;27610:18;;;27603:32;27652:19;;930:68:14;27279:398:18;930:68:14;-1:-1:-1;;;;;;1016:20:14;:11;:20;;;;;;;;;;;;;;;841:203::o;584:107:8:-;657:11;:26;671:12;657:11;:26;:::i;:::-;;584:107;:::o;1264:119:10:-;1343:14;:32;1360:15;1343:14;:32;:::i;998:130:15:-;1058:24;:8;1074:7;1058:15;:24::i;:::-;1098:22;;-1:-1:-1;;;;;1098:22:15;;;;;;;;998:130;:::o;868:122::-;925:21;:8;938:7;925:12;:21::i;:::-;962:20;;-1:-1:-1;;;;;962:20:15;;;;;;;;868:122;:::o;9969:1137:3:-;10935:81;;11020:16;10935:81;;;11020:16;-1:-1:-1;;;;;10935:43:3;;;315:10;;10935:81;;10979:9;;10990:5;;10997:3;;11002:6;;11010:5;;10935:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:101;;;10927:171;;;;-1:-1:-1;;;10927:171:3;;30856:2:18;10927:171:3;;;30838:21:18;30895:2;30875:18;;;30868:30;30934:34;30914:18;;;30907:62;31005:27;30985:18;;;30978:55;31050:19;;10927:171:3;30654:421:18;154:422:16;375:10;;362;;229:13;;280:2;;319;;255:16;;362:23;;375:10;362:23;:::i;:::-;352:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;352:34:16;;333:53;;397:6;423;418:55;439:3;:10;435:1;:14;418:55;;;467:3;471:1;467:6;;;;;;;;:::i;:::-;;;;;;;456:3;460;;;;:::i;:::-;;;456:8;;;;;;;;:::i;:::-;;;;:17;;;;;;;;;;-1:-1:-1;451:3:16;;;;:::i;:::-;;;;418:55;;;;489:6;484:55;505:3;:10;501:1;:14;484:55;;;533:3;537:1;533:6;;;;;;;;:::i;:::-;;;;;;;522:3;526;;;;:::i;:::-;;;522:8;;;;;;;;:::i;:::-;;;;:17;;;;;;;;;;-1:-1:-1;517:3:16;;;;:::i;:::-;;;;484:55;;;-1:-1:-1;564:3:16;;154:422;-1:-1:-1;;;;;;154:422:16:o;3755:224:4:-;3887:3;3858:17;;;:8;:17;;;;;;-1:-1:-1;;;;;3858:17:4;3850:78;;;;-1:-1:-1;;;3850:78:4;;31282:2:18;3850:78:4;;;31264:21:18;;;31301:18;;;31294:30;31360:34;31340:18;;;31333:62;31412:18;;3850:78:4;31080:356:18;3850:78:4;3939:32;3958:7;3967:3;3939:18;:32::i;563:183:14:-;643:18;647:4;653:7;643:3;:18::i;:::-;635:64;;;;-1:-1:-1;;;635:64:14;;31643:2:18;635:64:14;;;31625:21:18;31682:2;31662:18;;;31655:30;31721:34;31701:18;;;31694:62;31792:3;31772:18;;;31765:31;31813:19;;635:64:14;31441:397:18;635:64:14;-1:-1:-1;;;;;710:20:14;733:5;710:20;;;;;;;;;;;:28;;-1:-1:-1;;710:28:14;;;563:183::o;1001:118:10:-;1086:19;;;;:10;:19;;;;;:25;1108:3;1086:19;:25;:::i;:::-;;1001:118;;:::o;14:154:18:-;-1:-1:-1;;;;;93:5:18;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:315;241:6;249;302:2;290:9;281:7;277:23;273:32;270:52;;;318:1;315;308:12;270:52;357:9;344:23;376:31;401:5;376:31;:::i;:::-;426:5;478:2;463:18;;;;450:32;;-1:-1:-1;;;173:315:18:o;675:177::-;760:66;753:5;749:78;742:5;739:89;729:117;;842:1;839;832:12;857:245;915:6;968:2;956:9;947:7;943:23;939:32;936:52;;;984:1;981;974:12;936:52;1023:9;1010:23;1042:30;1066:5;1042:30;:::i;:::-;1091:5;857:245;-1:-1:-1;;;857:245:18:o;1299:482::-;1341:3;1379:5;1373:12;1406:6;1401:3;1394:19;1431:1;1441:162;1455:6;1452:1;1449:13;1441:162;;;1517:4;1573:13;;;1569:22;;1563:29;1545:11;;;1541:20;;1534:59;1470:12;1441:162;;;1445:3;1648:1;1641:4;1632:6;1627:3;1623:16;1619:27;1612:38;1770:4;-1:-1:-1;;1695:2:18;1687:6;1683:15;1679:88;1674:3;1670:98;1666:109;1659:116;;;1299:482;;;;:::o;1786:220::-;1935:2;1924:9;1917:21;1898:4;1955:45;1996:2;1985:9;1981:18;1973:6;1955:45;:::i;2011:180::-;2070:6;2123:2;2111:9;2102:7;2098:23;2094:32;2091:52;;;2139:1;2136;2129:12;2091:52;-1:-1:-1;2162:23:18;;2011:180;-1:-1:-1;2011:180:18:o;2196:435::-;2249:3;2287:5;2281:12;2314:6;2309:3;2302:19;2340:4;2369:2;2364:3;2360:12;2353:19;;2406:2;2399:5;2395:14;2427:1;2437:169;2451:6;2448:1;2445:13;2437:169;;;2512:13;;2500:26;;2546:12;;;;2581:15;;;;2473:1;2466:9;2437:169;;;-1:-1:-1;2622:3:18;;2196:435;-1:-1:-1;;;;;2196:435:18:o;2636:261::-;2815:2;2804:9;2797:21;2778:4;2835:56;2887:2;2876:9;2872:18;2864:6;2835:56;:::i;3084:156::-;3150:20;;3210:4;3199:16;;3189:27;;3179:55;;3230:1;3227;3220:12;3179:55;3084:156;;;:::o;3245:184::-;-1:-1:-1;;;3294:1:18;3287:88;3394:4;3391:1;3384:15;3418:4;3415:1;3408:15;3434:251;3506:2;3500:9;;;3536:15;;3581:18;3566:34;;3602:22;;;3563:62;3560:88;;;3628:18;;:::i;:::-;3664:2;3657:22;3434:251;:::o;3690:334::-;3761:2;3755:9;3817:2;3807:13;;-1:-1:-1;;3803:86:18;3791:99;;3920:18;3905:34;;3941:22;;;3902:62;3899:88;;;3967:18;;:::i;:::-;4003:2;3996:22;3690:334;;-1:-1:-1;3690:334:18:o;4029:590::-;4072:5;4125:3;4118:4;4110:6;4106:17;4102:27;4092:55;;4143:1;4140;4133:12;4092:55;4179:6;4166:20;4205:18;4201:2;4198:26;4195:52;;;4227:18;;:::i;:::-;4271:114;4379:4;-1:-1:-1;;4303:4:18;4299:2;4295:13;4291:86;4287:97;4271:114;:::i;:::-;4410:2;4401:7;4394:19;4456:3;4449:4;4444:2;4436:6;4432:15;4428:26;4425:35;4422:55;;;4473:1;4470;4463:12;4422:55;4538:2;4531:4;4523:6;4519:17;4512:4;4503:7;4499:18;4486:55;4586:1;4561:16;;;4579:4;4557:27;4550:38;;;;4565:7;4029:590;-1:-1:-1;;;4029:590:18:o;4624:1829::-;4800:6;4808;4816;4824;4832;4840;4848;4856;4909:3;4897:9;4888:7;4884:23;4880:33;4877:53;;;4926:1;4923;4916:12;4877:53;4962:9;4949:23;4939:33;;5019:2;5008:9;5004:18;4991:32;4981:42;;5042:36;5074:2;5063:9;5059:18;5042:36;:::i;:::-;5032:46;;5125:2;5114:9;5110:18;5097:32;5087:42;;5176:3;5165:9;5161:19;5148:33;5138:43;;5231:18;5224:3;5213:9;5209:19;5196:33;5193:57;5190:77;;;5263:1;5260;5253:12;5190:77;5329:3;5318:9;5314:19;5301:33;5290:9;5286:49;5373:7;5366:4;5362:2;5358:13;5354:27;5344:55;;5395:1;5392;5385:12;5344:55;5432:18;5427:2;5414:16;5411:40;5408:66;;;5454:18;;:::i;:::-;5494:50;5540:2;5534;5521:16;5518:1;5514:24;5510:33;5494:50;:::i;:::-;5590:16;;5578:29;;;5632:2;5623:12;;;;5566:3;5674:1;5670:24;5662:33;;5658:42;5712:19;;;5709:39;;;5744:1;5741;5734:12;5709:39;5776:2;5772;5768:11;5757:22;;5788:401;5804:6;5799:3;5796:15;5788:401;;;5884:2;5878:3;5869:7;5865:17;5861:26;5858:46;;;5900:1;5897;5890:12;5858:46;5930:22;;:::i;:::-;5965:43;6003:3;5990:17;5965:43;:::i;:::-;6048:3;6035:17;6028:5;6021:32;6111:2;6106:3;6102:12;6089:26;6084:2;6077:5;6073:14;6066:50;6141:5;6136:3;6129:18;;6176:2;6171:3;6167:12;6160:19;;5830:2;5825:3;5821:12;5814:19;;5788:401;;;-1:-1:-1;6208:5:18;-1:-1:-1;;;6260:3:18;6245:19;;6232:33;;-1:-1:-1;6315:18:18;6308:3;6293:19;;6280:33;6277:57;6274:77;;;6347:1;6344;6337:12;6274:77;6370;6439:7;6431:3;6420:9;6416:19;6403:33;6392:9;6388:49;6370:77;:::i;:::-;6360:87;;4624:1829;;;;;;;;;;;:::o;6458:367::-;6521:8;6531:6;6585:3;6578:4;6570:6;6566:17;6562:27;6552:55;;6603:1;6600;6593:12;6552:55;-1:-1:-1;6626:20:18;;6669:18;6658:30;;6655:50;;;6701:1;6698;6691:12;6655:50;6738:4;6730:6;6726:17;6714:29;;6798:3;6791:4;6781:6;6778:1;6774:14;6766:6;6762:27;6758:38;6755:47;6752:67;;;6815:1;6812;6805:12;6752:67;6458:367;;;;;:::o;6830:347::-;6881:8;6891:6;6945:3;6938:4;6930:6;6926:17;6922:27;6912:55;;6963:1;6960;6953:12;6912:55;-1:-1:-1;6986:20:18;;7029:18;7018:30;;7015:50;;;7061:1;7058;7051:12;7015:50;7098:4;7090:6;7086:17;7074:29;;7150:3;7143:4;7134:6;7126;7122:19;7118:30;7115:39;7112:59;;;7167:1;7164;7157:12;7182:1338;7342:6;7350;7358;7366;7374;7382;7390;7398;7451:3;7439:9;7430:7;7426:23;7422:33;7419:53;;;7468:1;7465;7458:12;7419:53;7507:9;7494:23;7526:31;7551:5;7526:31;:::i;:::-;7576:5;-1:-1:-1;7633:2:18;7618:18;;7605:32;7646:33;7605:32;7646:33;:::i;:::-;7698:7;-1:-1:-1;7756:2:18;7741:18;;7728:32;7779:18;7809:14;;;7806:34;;;7836:1;7833;7826:12;7806:34;7875:70;7937:7;7928:6;7917:9;7913:22;7875:70;:::i;:::-;7964:8;;-1:-1:-1;7849:96:18;-1:-1:-1;8052:2:18;8037:18;;8024:32;;-1:-1:-1;8068:16:18;;;8065:36;;;8097:1;8094;8087:12;8065:36;8136:72;8200:7;8189:8;8178:9;8174:24;8136:72;:::i;:::-;8227:8;;-1:-1:-1;8110:98:18;-1:-1:-1;8315:3:18;8300:19;;8287:33;;-1:-1:-1;8332:16:18;;;8329:36;;;8361:1;8358;8351:12;8329:36;;8400:60;8452:7;8441:8;8430:9;8426:24;8400:60;:::i;:::-;7182:1338;;;;-1:-1:-1;7182:1338:18;;-1:-1:-1;7182:1338:18;;;;;;8479:8;-1:-1:-1;;;7182:1338:18:o;8525:872::-;8655:6;8663;8671;8679;8687;8695;8703;8711;8764:3;8752:9;8743:7;8739:23;8735:33;8732:53;;;8781:1;8778;8771:12;8732:53;8817:9;8804:23;8794:33;;8874:2;8863:9;8859:18;8846:32;8836:42;;8897:36;8929:2;8918:9;8914:18;8897:36;:::i;:::-;8887:46;;8980:2;8969:9;8965:18;8952:32;8942:42;;9031:3;9020:9;9016:19;9003:33;8993:43;;9083:3;9072:9;9068:19;9055:33;9045:43;;9139:3;9128:9;9124:19;9111:33;9167:18;9159:6;9156:30;9153:50;;;9199:1;9196;9189:12;9153:50;9222;9264:7;9255:6;9244:9;9240:22;9222:50;:::i;:::-;9212:60;;;9322:3;9311:9;9307:19;9294:33;9336:31;9361:5;9336:31;:::i;:::-;9386:5;9376:15;;;8525:872;;;;;;;;;;;:::o;9402:773::-;9524:6;9532;9540;9548;9601:2;9589:9;9580:7;9576:23;9572:32;9569:52;;;9617:1;9614;9607:12;9569:52;9657:9;9644:23;9686:18;9727:2;9719:6;9716:14;9713:34;;;9743:1;9740;9733:12;9713:34;9782:70;9844:7;9835:6;9824:9;9820:22;9782:70;:::i;:::-;9871:8;;-1:-1:-1;9756:96:18;-1:-1:-1;9959:2:18;9944:18;;9931:32;;-1:-1:-1;9975:16:18;;;9972:36;;;10004:1;10001;9994:12;9972:36;;10043:72;10107:7;10096:8;10085:9;10081:24;10043:72;:::i;:::-;9402:773;;;;-1:-1:-1;10134:8:18;-1:-1:-1;;;;9402:773:18:o;10180:248::-;10248:6;10256;10309:2;10297:9;10288:7;10284:23;10280:32;10277:52;;;10325:1;10322;10315:12;10277:52;-1:-1:-1;;10348:23:18;;;10418:2;10403:18;;;10390:32;;-1:-1:-1;10180:248:18:o;10751:247::-;10810:6;10863:2;10851:9;10842:7;10838:23;10834:32;10831:52;;;10879:1;10876;10869:12;10831:52;10918:9;10905:23;10937:31;10962:5;10937:31;:::i;11234:322::-;11303:6;11356:2;11344:9;11335:7;11331:23;11327:32;11324:52;;;11372:1;11369;11362:12;11324:52;11412:9;11399:23;11445:18;11437:6;11434:30;11431:50;;;11477:1;11474;11467:12;11431:50;11500;11542:7;11533:6;11522:9;11518:22;11500:50;:::i;:::-;11490:60;11234:322;-1:-1:-1;;;;11234:322:18:o;11561:416::-;11626:6;11634;11687:2;11675:9;11666:7;11662:23;11658:32;11655:52;;;11703:1;11700;11693:12;11655:52;11742:9;11729:23;11761:31;11786:5;11761:31;:::i;:::-;11811:5;-1:-1:-1;11868:2:18;11853:18;;11840:32;11910:15;;11903:23;11891:36;;11881:64;;11941:1;11938;11931:12;11881:64;11964:7;11954:17;;;11561:416;;;;;:::o;11982:697::-;12169:2;12221:21;;;12291:13;;12194:18;;;12313:22;;;12140:4;;12169:2;12392:15;;;;12366:2;12351:18;;;12140:4;12435:218;12449:6;12446:1;12443:13;12435:218;;;12514:13;;-1:-1:-1;;;;;12510:62:18;12498:75;;12628:15;;;;12593:12;;;;12471:1;12464:9;12435:218;;12684:388;12752:6;12760;12813:2;12801:9;12792:7;12788:23;12784:32;12781:52;;;12829:1;12826;12819:12;12781:52;12868:9;12855:23;12887:31;12912:5;12887:31;:::i;:::-;12937:5;-1:-1:-1;12994:2:18;12979:18;;12966:32;13007:33;12966:32;13007:33;:::i;13077:823::-;13183:6;13191;13199;13207;13215;13223;13276:3;13264:9;13255:7;13251:23;13247:33;13244:53;;;13293:1;13290;13283:12;13244:53;13332:9;13319:23;13351:31;13376:5;13351:31;:::i;:::-;13401:5;-1:-1:-1;13458:2:18;13443:18;;13430:32;13471:33;13430:32;13471:33;:::i;:::-;13523:7;-1:-1:-1;13577:2:18;13562:18;;13549:32;;-1:-1:-1;13628:2:18;13613:18;;13600:32;;-1:-1:-1;13683:3:18;13668:19;;13655:33;13711:18;13700:30;;13697:50;;;13743:1;13740;13733:12;13697:50;13782:58;13832:7;13823:6;13812:9;13808:22;13782:58;:::i;:::-;13077:823;;;;-1:-1:-1;13077:823:18;;-1:-1:-1;13077:823:18;;13859:8;;13077:823;-1:-1:-1;;;13077:823:18:o;13905:383::-;13982:6;13990;13998;14051:2;14039:9;14030:7;14026:23;14022:32;14019:52;;;14067:1;14064;14057:12;14019:52;14106:9;14093:23;14125:31;14150:5;14125:31;:::i;:::-;14175:5;14227:2;14212:18;;14199:32;;-1:-1:-1;14278:2:18;14263:18;;;14250:32;;13905:383;-1:-1:-1;;;13905:383:18:o;14293:387::-;14377:6;14385;14393;14401;14454:3;14442:9;14433:7;14429:23;14425:33;14422:53;;;14471:1;14468;14461:12;14422:53;14507:9;14494:23;14484:33;;14536:36;14568:2;14557:9;14553:18;14536:36;:::i;:::-;14293:387;;14526:46;;-1:-1:-1;;;;14619:2:18;14604:18;;14591:32;;14670:2;14655:18;14642:32;;14293:387::o;14685:437::-;14764:1;14760:12;;;;14807;;;14828:61;;14882:4;14874:6;14870:17;14860:27;;14828:61;14935:2;14927:6;14924:14;14904:18;14901:38;14898:218;;-1:-1:-1;;;14969:1:18;14962:88;15073:4;15070:1;15063:15;15101:4;15098:1;15091:15;14898:218;;14685:437;;;:::o;15127:184::-;-1:-1:-1;;;15176:1:18;15169:88;15276:4;15273:1;15266:15;15300:4;15297:1;15290:15;15316:184;-1:-1:-1;;;15365:1:18;15358:88;15465:4;15462:1;15455:15;15489:4;15486:1;15479:15;15505:195;15544:3;-1:-1:-1;;15568:5:18;15565:77;15562:103;;15645:18;;:::i;:::-;-1:-1:-1;15692:1:18;15681:13;;15505:195::o;17372:128::-;17439:9;;;17460:11;;;17457:37;;;17474:18;;:::i;19082:125::-;19147:9;;;19168:10;;;19165:36;;;19181:18;;:::i;19212:358::-;19312:6;19307:3;19300:19;19282:3;19342:66;19334:6;19331:78;19328:98;;;19422:1;19419;19412:12;19328:98;19458:6;19455:1;19451:14;19510:8;19503:5;19496:4;19491:3;19487:14;19474:45;19539:18;;;;19559:4;19535:29;;19212:358;-1:-1:-1;;;19212:358:18:o;19575:519::-;19852:2;19841:9;19834:21;19815:4;19878:73;19947:2;19936:9;19932:18;19924:6;19916;19878:73;:::i;:::-;19999:9;19991:6;19987:22;19982:2;19971:9;19967:18;19960:50;20027:61;20081:6;20073;20065;20027:61;:::i;:::-;20019:69;19575:519;-1:-1:-1;;;;;;;19575:519:18:o;24809:925::-;25057:4;25105:2;25094:9;25090:18;25135:6;25124:9;25117:25;25161:2;25199;25194;25183:9;25179:18;25172:30;25222:6;25257;25251:13;25288:6;25280;25273:22;25326:3;25315:9;25311:19;25304:26;;25365:2;25357:6;25353:15;25339:29;;25386:1;25396:218;25410:6;25407:1;25404:13;25396:218;;;25475:13;;-1:-1:-1;;;;;25471:62:18;25459:75;;25589:15;;;;25554:12;;;;25432:1;25425:9;25396:218;;;25400:3;;25659:9;25654:3;25650:19;25645:2;25634:9;25630:18;25623:47;25687:41;25724:3;25716:6;25687:41;:::i;:::-;25679:49;24809:925;-1:-1:-1;;;;;;;;24809:925:18:o;25739:850::-;26061:4;-1:-1:-1;;;;;26171:2:18;26163:6;26159:15;26148:9;26141:34;26223:2;26215:6;26211:15;26206:2;26195:9;26191:18;26184:43;;26263:3;26258:2;26247:9;26243:18;26236:31;26290:57;26342:3;26331:9;26327:19;26319:6;26290:57;:::i;:::-;26395:9;26387:6;26383:22;26378:2;26367:9;26363:18;26356:50;26429:44;26466:6;26458;26429:44;:::i;:::-;26415:58;;26522:9;26514:6;26510:22;26504:3;26493:9;26489:19;26482:51;26550:33;26576:6;26568;26550:33;:::i;26594:249::-;26663:6;26716:2;26704:9;26695:7;26691:23;26687:32;26684:52;;;26732:1;26729;26722:12;26684:52;26764:9;26758:16;26783:30;26807:5;26783:30;:::i;27808:545::-;27910:2;27905:3;27902:11;27899:448;;;27946:1;27971:5;27967:2;27960:17;28016:4;28012:2;28002:19;28086:2;28074:10;28070:19;28067:1;28063:27;28057:4;28053:38;28122:4;28110:10;28107:20;28104:47;;;-1:-1:-1;28145:4:18;28104:47;28200:2;28195:3;28191:12;28188:1;28184:20;28178:4;28174:31;28164:41;;28255:82;28273:2;28266:5;28263:13;28255:82;;;28318:17;;;28299:1;28288:13;28255:82;;28589:1471;28715:3;28709:10;28742:18;28734:6;28731:30;28728:56;;;28764:18;;:::i;:::-;28793:97;28883:6;28843:38;28875:4;28869:11;28843:38;:::i;:::-;28837:4;28793:97;:::i;:::-;28945:4;;29009:2;28998:14;;29026:1;29021:782;;;;29847:1;29864:6;29861:89;;;-1:-1:-1;29916:19:18;;;29910:26;29861:89;-1:-1:-1;;28486:1:18;28482:11;;;28478:84;28474:89;28464:100;28570:1;28566:11;;;28461:117;29963:81;;28991:1063;;29021:782;27755:1;27748:14;;;27792:4;27779:18;;-1:-1:-1;;29057:79:18;;;29234:236;29248:7;29245:1;29242:14;29234:236;;;29337:19;;;29331:26;29316:42;;29429:27;;;;29397:1;29385:14;;;;29264:19;;29234:236;;;29238:3;29498:6;29489:7;29486:19;29483:261;;;29559:19;;;29553:26;-1:-1:-1;;29642:1:18;29638:14;;;29654:3;29634:24;29630:97;29626:102;29611:118;29596:134;;29483:261;-1:-1:-1;;;;;29790:1:18;29774:14;;;29770:22;29757:36;;-1:-1:-1;28589:1471:18:o;30065:584::-;30287:4;-1:-1:-1;;;;;30397:2:18;30389:6;30385:15;30374:9;30367:34;30449:2;30441:6;30437:15;30432:2;30421:9;30417:18;30410:43;;30489:6;30484:2;30473:9;30469:18;30462:34;30532:6;30527:2;30516:9;30512:18;30505:34;30576:3;30570;30559:9;30555:19;30548:32;30597:46;30638:3;30627:9;30623:19;30615:6;30597:46;:::i

Swarm Source

ipfs://50ac292499bcf725cc0a1dca8282f21634faa729bb349c620c0c11fb5081ae72

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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