ETH Price: $2,621.96 (+7.21%)

Token

DeFine Badge (DFB)
 

Overview

Max Total Supply

50 DFB

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
iron72.eth
0x85613f59ace83fa4f98a1f37b5f9dd34b6797381
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DeFineBadge

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : DeFineBadge.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./Governable.sol";
import "./Signature.sol";

contract DeFineBadge is Governable, ERC1155, Signature {
    using Strings for uint256;
    
    bool private saleIsActive;
    uint256 private _counter;
    string public name;
    string public symbol;
    string public baseURI;
    address public signer;

    struct BadgeInfo {
        string _type;
        uint256 _maxCount;
        uint256 startAt;
        uint256 endAt;
        uint256 _mintLimit;
        address _minter;
    }
    
    event Mint(address indexed owner, string _type, uint256 _id);

    mapping(uint256 => BadgeInfo) public BadgesInfo;
    mapping(string => uint256) public typeList; // string type => tokenId
    mapping(uint256 => uint256) public mintedCount; // tokenId => minted Count
    mapping(uint256 => mapping(address => uint256)) public userMinted; // [tokenId], user Address => minted Count

    modifier onlyMinter(string memory _type) {
        BadgeInfo memory badge = BadgesInfo[typeList[_type]];
        require(msg.sender == badge._minter, "only minter");
        _;
    }
    
    modifier whenSaleActive {
        require(saleIsActive, "Sale is not active");
        _;
    }
    
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseURI,
        address _signer
    ) ERC1155(baseURI) {
        saleIsActive = true;
        name = _name;
        symbol = _symbol;
        baseURI = _baseURI;
        signer = _signer;
        _setURI(_baseURI);
        super.initialize(msg.sender);
    }

    function newBadge(
        string memory _type,
        uint256 _maxCount,
        uint256 startAt,
        uint256 endAt,
        uint256 _mintLimit,
        address minter
    ) external governance returns (bool) {
        require(typeList[_type] == 0, "Type is already created");
        _counter += 1;
        BadgeInfo memory badge = BadgeInfo(_type, _maxCount, startAt, endAt, _mintLimit, minter);
        BadgesInfo[_counter] = badge;
        typeList[_type] = _counter;
        return true;
    }

    function uri(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function mint(
        string memory _type,
        uint256 _nonce,
        bytes memory _signature
    ) public {
        address real_signer = verify(
            signer,
            msg.sender,
            _type,
            _nonce,
            _signature
        );
        require(signer == real_signer, "invalid signature");
        mintTo(_type, msg.sender);
    }

    function airdrop(
        string memory _type,
        address _to
    ) public onlyMinter(_type) {
        mintTo(_type, _to);
    }

    function mintTo(
        string memory _type,
        address _to
    ) internal whenSaleActive {
        uint256 _id = typeList[_type];
        BadgeInfo memory badge = BadgesInfo[_id];
        require(_id > 0, "invalid badge type");
        require(block.timestamp >= badge.startAt, "mint does't start");
        require(block.timestamp <= badge.endAt, "mint is already ended");
        require(mintedCount[_id] < badge._maxCount, "mint max cap reached");
        require((userMinted[_id])[_to] < badge._mintLimit, "mint per user limit reached");
        _mint(_to, _id, 1, "");
         mintedCount[_id] ++;
        (userMinted[_id])[_to] ++;
        emit Mint(msg.sender, _type, _id);
    }
    
    function setURI(string memory _baseURI) external governance returns (bool) {
        baseURI = _baseURI;
        _setURI(_baseURI);
        return true;
    }

    function setSigner(address _signer) external governance returns (bool) {
        signer = _signer;
        return true;
    }
    
    function setMinter(string memory _type, address _address) external governance returns (bool) {
        BadgeInfo storage badge = BadgesInfo[typeList[_type]];
        badge._minter = _address;
    }
    
    function setMaxCount(string memory _type, uint256 _count) external governance returns (bool) {
        BadgeInfo storage badge = BadgesInfo[typeList[_type]];
        badge._maxCount = _count;
    }
    
    function setStartTime(string memory _type, uint256 _startTime) external governance returns (bool) {
        BadgeInfo storage badge = BadgesInfo[typeList[_type]];
        badge.startAt = _startTime;
    }
    
    function setEndTime(string memory _type, uint256 _endTime) external governance returns (bool) {
        BadgeInfo storage badge = BadgesInfo[typeList[_type]];
        badge.endAt = _endTime;
    }
    
    function setMintLimit(string memory _type, uint256 _limit) external governance returns (bool) {
        BadgeInfo storage badge = BadgesInfo[typeList[_type]];
        badge._mintLimit = _limit;
    }
    
    function toogleSaleIsActive() external governance {
        saleIsActive = !saleIsActive;
    }
    
    function getSigner() external governance returns (address) {
        return signer;
    }
    
    function getMinter(string memory _type) external governance returns (address) {
        BadgeInfo memory badge = BadgesInfo[typeList[_type]];
        return badge._minter;
    }
    
    function getMaxCount(string memory _type, uint256 _count) external governance returns (uint256) {
        BadgeInfo memory badge = BadgesInfo[typeList[_type]];
        return badge._maxCount;
    }
    
    function getStartTime(string memory _type, uint256 _startTime) external governance returns (uint256) {
        BadgeInfo memory badge = BadgesInfo[typeList[_type]];
        return badge.startAt;
    }
    
    function getEndTime(string memory _type, uint256 _endTime) external governance returns (uint256) {
        BadgeInfo memory badge = BadgesInfo[typeList[_type]];
        return badge.endAt;
    }
    
    function getMintLimit(string memory _type, uint256 _limit) external governance returns (uint256) {
        BadgeInfo memory badge = BadgesInfo[typeList[_type]];
        return badge._mintLimit;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 12 : Governable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool isTopLevelCall = !initializing;
    if (isTopLevelCall) {
      initializing = true;
      initialized = true;
    }

    _;

    if (isTopLevelCall) {
      initializing = false;
    }
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    address self = address(this);
    uint256 cs;
    assembly { cs := extcodesize(self) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}


contract Governable is Initializable {
    address public governor;

    event GovernorshipTransferred(address indexed previousGovernor, address indexed newGovernor);

    /**
     * @dev Contract initializer.
     * called once by the factory at time of deployment
     */
    function initialize(address governor_) virtual public initializer {
        governor = governor_;
        emit GovernorshipTransferred(address(0), governor);
    }

    modifier governance() {
        require(msg.sender == governor);
        _;
    }

    /**
     * @dev Allows the current governor to relinquish control of the contract.
     * @notice Renouncing to governorship will leave the contract without an governor.
     * It will not be possible to call the functions with the `governance`
     * modifier anymore.
     */
    function renounceGovernorship() public governance {
        emit GovernorshipTransferred(governor, address(0));
        governor = address(0);
    }

    /**
     * @dev Allows the current governor to transfer control of the contract to a newGovernor.
     * @param newGovernor The address to transfer governorship to.
     */
    function transferGovernorship(address newGovernor) public governance {
        _transferGovernorship(newGovernor);
    }

    /**
     * @dev Transfers control of the contract to a newGovernor.
     * @param newGovernor The address to transfer governorship to.
     */
    function _transferGovernorship(address newGovernor) internal {
        require(newGovernor != address(0));
        emit GovernorshipTransferred(governor, newGovernor);
        governor = newGovernor;
    }
}

File 5 of 12 : Signature.sol
pragma solidity ^0.8.0;


import "@openzeppelin/contracts/utils/Strings.sol";

contract Signature {
    using Strings for bool;
    using Strings for uint;
    using Strings for address;
    using Strings for string;

    function verify(
        address _signer,
        address _to,
        string memory _type,
        uint _nonce,
        bytes memory signature
    ) public pure returns (address) {
        bytes32 messageHash = keccak256(abi.encodePacked(_to, _type, _nonce));
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(signature);
        return ecrecover(messageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
        public
        pure
        returns (
            bytes32 r,
            bytes32 s,
            uint8 v
        )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

    }
}

File 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 7 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

File 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : 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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousGovernor","type":"address"},{"indexed":true,"internalType":"address","name":"newGovernor","type":"address"}],"name":"GovernorshipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"_type","type":"string"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"Mint","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":"uint256","name":"","type":"uint256"}],"name":"BadgesInfo","outputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_maxCount","type":"uint256"},{"internalType":"uint256","name":"startAt","type":"uint256"},{"internalType":"uint256","name":"endAt","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"address","name":"_minter","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"getEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getMaxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"getMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"getStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"governor_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_maxCount","type":"uint256"},{"internalType":"uint256","name":"startAt","type":"uint256"},{"internalType":"uint256","name":"endAt","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"newBadge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceGovernorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setEndTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxCount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMintLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"address","name":"_address","type":"address"}],"name":"setMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","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":"toogleSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newGovernor","type":"address"}],"name":"transferGovernorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"typeList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_type","type":"string"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verify","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"}]

60806040523480156200001157600080fd5b50604051620063a3380380620063a38339818101604052810190620000379190620004d6565b603b80546200004690620006f9565b80601f01602080910402602001604051908101604052809291908181526020018280546200007490620006f9565b8015620000c55780601f106200009957610100808354040283529160200191620000c5565b820191906000526020600020905b815481529060010190602001808311620000a757829003601f168201915b5050505050620000db81620001b460201b60201c565b506001603760006101000a81548160ff02191690831515021790555083603990805190602001906200010f9291906200039d565b5082603a9080519060200190620001289291906200039d565b5081603b9080519060200190620001419291906200039d565b5080603c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019482620001b460201b60201c565b620001aa33620001d060201b62001df41760201c565b50505050620007a7565b8060369080519060200190620001cc9291906200039d565b5050565b600060019054906101000a900460ff1680620001f85750620001f76200038660201b60201c565b5b806200020f575060008054906101000a900460ff16155b62000251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024890620005f5565b60405180910390fd5b60008060019054906101000a900460ff161590508015620002a2576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a38015620003825760008060016101000a81548160ff0219169083151502179055505b5050565b6000803090506000813b9050600081149250505090565b828054620003ab90620006f9565b90600052602060002090601f016020900481019282620003cf57600085556200041b565b82601f10620003ea57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041a578251825591602001919060010190620003fd565b5b5090506200042a91906200042e565b5090565b5b80821115620004495760008160009055506001016200042f565b5090565b6000620004646200045e846200064b565b62000617565b9050828152602081018484840111156200047d57600080fd5b6200048a848285620006c3565b509392505050565b600081519050620004a3816200078d565b92915050565b600082601f830112620004bb57600080fd5b8151620004cd8482602086016200044d565b91505092915050565b60008060008060808587031215620004ed57600080fd5b600085015167ffffffffffffffff8111156200050857600080fd5b6200051687828801620004a9565b945050602085015167ffffffffffffffff8111156200053457600080fd5b6200054287828801620004a9565b935050604085015167ffffffffffffffff8111156200056057600080fd5b6200056e87828801620004a9565b9250506060620005818782880162000492565b91505092959194509250565b60006200059c602e836200067e565b91507f436f6e747261637420696e7374616e63652068617320616c726561647920626560008301527f656e20696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b6000602082019050818103600083015262000610816200058d565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200064157620006406200075e565b5b8060405250919050565b600067ffffffffffffffff8211156200066957620006686200075e565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200069c82620006a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620006e3578082015181840152602081019050620006c6565b83811115620006f3576000848401525b50505050565b600060028204905060018216806200071257607f821691505b602082108114156200072957620007286200072f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000798816200068f565b8114620007a457600080fd5b50565b615bec80620007b76000396000f3fe608060405234801561001057600080fd5b506004361061023b5760003560e01c80636c19e7831161013b578063c733241c116100b8578063ea37c2a91161007c578063ea37c2a91461078b578063eec9c3c8146107a7578063f242432a146107d7578063f6350b99146107f3578063feb99374146108235761023b565b8063c733241c146106c1578063daeb0aa6146106f1578063e16b4823146106fb578063e6d3da8b1461072b578063e985e9c51461075b5761023b565b806395d89b41116100ff57806395d89b411461061d578063a22cb4651461063b578063a7bb580314610657578063b6aa515b14610689578063c4d66de8146106a55761023b565b80636c19e783146105655780637ac3c02f146105955780637ba30d76146105b357806381c0c263146105e35780638358ff65146105ed5761023b565b806317aaafd0116101c95780634e1273f41161018d5780634e1273f41461048257806351de7e59146104b25780635e354332146104e2578063634d98fe146105125780636c0360eb146105475761023b565b806317aaafd0146103b85780631e31549e146103e8578063238ac933146104185780632eb2c2d614610436578063359b7338146104525761023b565b806306fdde031161021057806306fdde03146103005780630a5d0f2f1461031e5780630c340a241461034e5780630e89341c1461036c57806310662e911461039c5761023b565b80628e444414610240578062fdd58e1461027057806301ffc9a7146102a057806302fe5305146102d0575b600080fd5b61025a600480360381019061025591906144a1565b610853565b604051610267919061559d565b60405180910390f35b61028a600480360381019061028591906142d1565b610a0d565b604051610297919061559d565b60405180910390f35b6102ba60048036038101906102b59190614379565b610ad7565b6040516102c7919061518c565b60405180910390f35b6102ea60048036038101906102e5919061440c565b610bb9565b6040516102f7919061518c565b60405180910390f35b610308610c3e565b6040516103159190615223565b60405180910390f35b610338600480360381019061033391906144a1565b610ccc565b604051610345919061518c565b60405180910390f35b610356610d6d565b6040516103639190615056565b60405180910390f35b61038660048036038101906103819190614615565b610d93565b6040516103939190615223565b60405180910390f35b6103b660048036038101906103b191906144f5565b610dc7565b005b6103d260048036038101906103cd9190614574565b610e9a565b6040516103df919061518c565b60405180910390f35b61040260048036038101906103fd919061415f565b611091565b60405161040f9190615056565b60405180910390f35b610420611133565b60405161042d9190615056565b60405180910390f35b610450600480360381019061044b91906140a0565b611159565b005b61046c600480360381019061046791906144a1565b6111fa565b604051610479919061559d565b60405180910390f35b61049c6004803603810190610497919061430d565b6113b4565b6040516104a99190615133565b60405180910390f35b6104cc60048036038101906104c791906144a1565b611565565b6040516104d9919061518c565b60405180910390f35b6104fc60048036038101906104f79190614615565b611606565b604051610509919061559d565b60405180910390f35b61052c60048036038101906105279190614615565b61161e565b60405161053e96959493929190615275565b60405180910390f35b61054f611702565b60405161055c9190615223565b60405180910390f35b61057f600480360381019061057a919061403b565b611790565b60405161058c919061518c565b60405180910390f35b61059d611836565b6040516105aa9190615056565b60405180910390f35b6105cd60048036038101906105c891906144a1565b6118ba565b6040516105da919061518c565b60405180910390f35b6105eb61195b565b005b610607600480360381019061060291906144a1565b611a76565b604051610614919061518c565b60405180910390f35b610625611b17565b6040516106329190615223565b60405180910390f35b61065560048036038101906106509190614295565b611ba5565b005b610671600480360381019061066c91906143cb565b611d26565b604051610680939291906151a7565b60405180910390f35b6106a3600480360381019061069e919061403b565b611d8e565b005b6106bf60048036038101906106ba919061403b565b611df4565b005b6106db60048036038101906106d6919061440c565b611f9b565b6040516106e8919061559d565b60405180910390f35b6106f9611fc9565b005b610715600480360381019061071091906144a1565b61204f565b604051610722919061559d565b60405180910390f35b6107456004803603810190610740919061463e565b612209565b604051610752919061559d565b60405180910390f35b61077560048036038101906107709190614064565b61222e565b604051610782919061518c565b60405180910390f35b6107a560048036038101906107a0919061444d565b6122c2565b005b6107c160048036038101906107bc91906144a1565b612495565b6040516107ce919061559d565b60405180910390f35b6107f160048036038101906107ec9190614206565b61264f565b005b61080d6004803603810190610808919061440c565b6126f0565b60405161081a9190615056565b60405180910390f35b61083d6004803603810190610838919061444d565b6128a9565b60405161084a919061518c565b60405180910390f35b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108af57600080fd5b6000603d6000603e866040516108c5919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c00160405290816000820180546108fd906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610929906158e3565b80156109765780601f1061094b57610100808354040283529160200191610976565b820191906000526020600020905b81548152906001019060200180831161095957829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806020015191505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061537d565b60405180910390fd5b6034600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb25750610bb182612984565b5b9050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c1557600080fd5b81603b9080519060200190610c2b929190613d33565b50610c35826129ee565b60019050919050565b60398054610c4b906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c77906158e3565b8015610cc45780601f10610c9957610100808354040283529160200191610cc4565b820191906000526020600020905b815481529060010190602001808311610ca757829003601f168201915b505050505081565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d2857600080fd5b6000603d6000603e86604051610d3e919061501b565b908152602001604051809103902054815260200190815260200160002090508281600301819055505092915050565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060603b610da083612a08565b604051602001610db1929190615032565b6040516020818303038152906040529050919050565b6000610df8603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633868686611091565b90508073ffffffffffffffffffffffffffffffffffffffff16603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e819061533d565b60405180910390fd5b610e948433612bb5565b50505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ef657600080fd5b6000603e88604051610f08919061501b565b90815260200160405180910390205414610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906153dd565b60405180910390fd5b600160386000828254610f6a919061575b565b9250508190555060006040518060c001604052808981526020018881526020018781526020018681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff16815250905080603d600060385481526020019081526020016000206000820151816000019080519060200190610fea929190613d33565b506020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050603854603e89604051611070919061501b565b90815260200160405180910390208190555060019150509695505050505050565b6000808585856040516020016110a993929190614fe2565b60405160208183030381529060405280519060200120905060008060006110cf86611d26565b925092509250600184828585604051600081526020016040526040516110f894939291906151de565b6020604051602081039080840390855afa15801561111a573d6000803e3d6000fd5b5050506020604051035194505050505095945050505050565b603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61116161301a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a757506111a6856111a161301a565b61222e565b5b6111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061541d565b60405180910390fd5b6111f38585858585613022565b5050505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125657600080fd5b6000603d6000603e8660405161126c919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c00160405290816000820180546112a4906158e3565b80601f01602080910402602001604051908101604052809291908181526020018280546112d0906158e3565b801561131d5780601f106112f25761010080835404028352916020019161131d565b820191906000526020600020905b81548152906001019060200180831161130057829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806080015191505092915050565b606081518351146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f19061551d565b60405180910390fd5b6000835167ffffffffffffffff81111561143d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561146b5781602001602082028036833780820191505090505b50905060005b845181101561155a576115048582815181106114b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106114f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610a0d565b82828151811061153d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061155390615915565b9050611471565b508091505092915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c157600080fd5b6000603d6000603e866040516115d7919061501b565b908152602001604051809103902054815260200190815260200160002090508281600401819055505092915050565b603f6020528060005260406000206000915090505481565b603d602052806000526040600020600091509050806000018054611641906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461166d906158e3565b80156116ba5780601f1061168f576101008083540402835291602001916116ba565b820191906000526020600020905b81548152906001019060200180831161169d57829003601f168201915b5050505050908060010154908060020154908060030154908060040154908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905086565b603b805461170f906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461173b906158e3565b80156117885780601f1061175d57610100808354040283529160200191611788565b820191906000526020600020905b81548152906001019060200180831161176b57829003601f168201915b505050505081565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117ec57600080fd5b81603c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461189257600080fd5b603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461191657600080fd5b6000603d6000603e8660405161192c919061501b565b908152602001604051809103902054815260200190815260200160002090508281600101819055505092915050565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b557600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a36000603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ad257600080fd5b6000603d6000603e86604051611ae8919061501b565b908152602001604051809103902054815260200190815260200160002090508281600201819055505092915050565b603a8054611b24906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b50906158e3565b8015611b9d5780601f10611b7257610100808354040283529160200191611b9d565b820191906000526020600020905b815481529060010190602001808311611b8057829003601f168201915b505050505081565b8173ffffffffffffffffffffffffffffffffffffffff16611bc461301a565b73ffffffffffffffffffffffffffffffffffffffff161415611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c12906154dd565b60405180910390fd5b8060356000611c2861301a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd561301a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a919061518c565b60405180910390a35050565b60008060006041845114611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d66906154fd565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611de857600080fd5b611df181613385565b50565b600060019054906101000a900460ff1680611e135750611e1261347f565b5b80611e29575060008054906101000a900460ff16155b611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f9061549d565b60405180910390fd5b60008060019054906101000a900460ff161590508015611eb8576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a38015611f975760008060016101000a81548160ff0219169083151502179055505b5050565b603e818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461202357600080fd5b603760009054906101000a900460ff1615603760006101000a81548160ff021916908315150217905550565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ab57600080fd5b6000603d6000603e866040516120c1919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c00160405290816000820180546120f9906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612125906158e3565b80156121725780601f1061214757610100808354040283529160200191612172565b820191906000526020600020905b81548152906001019060200180831161215557829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806060015191505092915050565b6040602052816000526040600020602052806000526040600020600091509150505481565b6000603560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000603d6000603e846040516122d9919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c0016040529081600082018054612311906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461233d906158e3565b801561238a5780601f1061235f5761010080835404028352916020019161238a565b820191906000526020600020905b81548152906001019060200180831161236d57829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090508060a0015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c9061547d565b60405180910390fd5b61248f8484612bb5565b50505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124f157600080fd5b6000603d6000603e86604051612507919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c001604052908160008201805461253f906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461256b906158e3565b80156125b85780601f1061258d576101008083540402835291602001916125b8565b820191906000526020600020905b81548152906001019060200180831161259b57829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806040015191505092915050565b61265761301a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061269d575061269c8561269761301a565b61222e565b5b6126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d39061539d565b60405180910390fd5b6126e98585858585613496565b5050505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461274c57600080fd5b6000603d6000603e85604051612762919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c001604052908160008201805461279a906158e3565b80601f01602080910402602001604051908101604052809291908181526020018280546127c6906158e3565b80156128135780601f106127e857610100808354040283529160200191612813565b820191906000526020600020905b8154815290600101906020018083116127f657829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090508060a00151915050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461290557600080fd5b6000603d6000603e8660405161291b919061501b565b90815260200160405180910390205481526020019081526020016000209050828160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8060369080519060200190612a04929190613d33565b5050565b60606000821415612a50576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb0565b600082905060005b60008214612a82578080612a6b90615915565b915050600a82612a7b91906157b1565b9150612a58565b60008167ffffffffffffffff811115612ac4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612af65781602001600182028036833780820191505090505b5090505b60008514612ba957600182612b0f91906157e2565b9150600a85612b1e919061598c565b6030612b2a919061575b565b60f81b818381518110612b66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba291906157b1565b9450612afa565b8093505050505b919050565b603760009054906101000a900460ff16612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb906153bd565b60405180910390fd5b6000603e83604051612c16919061501b565b90815260200160405180910390205490506000603d60008381526020019081526020016000206040518060c0016040529081600082018054612c57906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612c83906158e3565b8015612cd05780601f10612ca557610100808354040283529160200191612cd0565b820191906000526020600020905b815481529060010190602001808311612cb357829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050905060008211612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d93906154bd565b60405180910390fd5b8060400151421015612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda9061557d565b60405180910390fd5b8060600151421115612e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e219061531d565b60405180910390fd5b8060200151603f60008481526020019081526020016000205410612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a9061535d565b60405180910390fd5b80608001516040600084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f109061545d565b60405180910390fd5b612f35838360016040518060200160405280600081525061371b565b603f60008381526020019081526020016000206000815480929190612f5990615915565b91905055506040600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612fbf90615915565b91905055503373ffffffffffffffffffffffffffffffffffffffff167fec4de1eef14af3ae5d77facf1ed7a9d3d50f6285573ee0ec155fc11217fc3442858460405161300c929190615245565b60405180910390a250505050565b600033905090565b8151835114613066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305d9061553d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd906153fd565b60405180910390fd5b60006130e061301a565b90506130f08187878787876138b2565b60005b84518110156132f0576000858281518110613137577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061317c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006034600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561321e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132159061543d565b60405180910390fd5b8181036034600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816034600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132d5919061575b565b92505081905550505050806132e990615915565b90506130f3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613367929190615155565b60405180910390a461337d8187878787876138ba565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133bf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a380603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000803090506000813b9050600081149250505090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fd906153fd565b60405180910390fd5b600061351061301a565b905061353081878761352188613a8a565b61352a88613a8a565b876138b2565b60006034600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156135c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bf9061543d565b60405180910390fd5b8381036034600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836034600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461367f919061575b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516136fc9291906155b8565b60405180910390a4613712828888888888613b50565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561378b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137829061555d565b60405180910390fd5b600061379561301a565b90506137b6816000876137a788613a8a565b6137b088613a8a565b876138b2565b826034600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613816919061575b565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516138949291906155b8565b60405180910390a46138ab81600087878787613b50565b5050505050565b505050505050565b6138d98473ffffffffffffffffffffffffffffffffffffffff16613d20565b15613a82578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161391f959493929190615071565b602060405180830381600087803b15801561393957600080fd5b505af192505050801561396a57506040513d601f19601f8201168201806040525081019061396791906143a2565b60015b6139f957613976615aa4565b8061398157506139be565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b59190615223565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f0906152dd565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a77906152fd565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115613acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613afd5781602001602082028036833780820191505090505b5090508281600081518110613b3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b613b6f8473ffffffffffffffffffffffffffffffffffffffff16613d20565b15613d18578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613bb59594939291906150d9565b602060405180830381600087803b158015613bcf57600080fd5b505af1925050508015613c0057506040513d601f19601f82011682018060405250810190613bfd91906143a2565b60015b613c8f57613c0c615aa4565b80613c175750613c54565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4b9190615223565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c86906152dd565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0d906152fd565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054613d3f906158e3565b90600052602060002090601f016020900481019282613d615760008555613da8565b82601f10613d7a57805160ff1916838001178555613da8565b82800160010185558215613da8579182015b82811115613da7578251825591602001919060010190613d8c565b5b509050613db59190613db9565b5090565b5b80821115613dd2576000816000905550600101613dba565b5090565b6000613de9613de484615612565b6155e1565b90508083825260208201905082856020860282011115613e0857600080fd5b60005b85811015613e385781613e1e8882613f2a565b845260208401935060208301925050600181019050613e0b565b5050509392505050565b6000613e55613e508461563e565b6155e1565b90508083825260208201905082856020860282011115613e7457600080fd5b60005b85811015613ea45781613e8a8882614026565b845260208401935060208301925050600181019050613e77565b5050509392505050565b6000613ec1613ebc8461566a565b6155e1565b905082815260208101848484011115613ed957600080fd5b613ee48482856158a1565b509392505050565b6000613eff613efa8461569a565b6155e1565b905082815260208101848484011115613f1757600080fd5b613f228482856158a1565b509392505050565b600081359050613f3981615b5a565b92915050565b600082601f830112613f5057600080fd5b8135613f60848260208601613dd6565b91505092915050565b600082601f830112613f7a57600080fd5b8135613f8a848260208601613e42565b91505092915050565b600081359050613fa281615b71565b92915050565b600081359050613fb781615b88565b92915050565b600081519050613fcc81615b88565b92915050565b600082601f830112613fe357600080fd5b8135613ff3848260208601613eae565b91505092915050565b600082601f83011261400d57600080fd5b813561401d848260208601613eec565b91505092915050565b60008135905061403581615b9f565b92915050565b60006020828403121561404d57600080fd5b600061405b84828501613f2a565b91505092915050565b6000806040838503121561407757600080fd5b600061408585828601613f2a565b925050602061409685828601613f2a565b9150509250929050565b600080600080600060a086880312156140b857600080fd5b60006140c688828901613f2a565b95505060206140d788828901613f2a565b945050604086013567ffffffffffffffff8111156140f457600080fd5b61410088828901613f69565b935050606086013567ffffffffffffffff81111561411d57600080fd5b61412988828901613f69565b925050608086013567ffffffffffffffff81111561414657600080fd5b61415288828901613fd2565b9150509295509295909350565b600080600080600060a0868803121561417757600080fd5b600061418588828901613f2a565b955050602061419688828901613f2a565b945050604086013567ffffffffffffffff8111156141b357600080fd5b6141bf88828901613ffc565b93505060606141d088828901614026565b925050608086013567ffffffffffffffff8111156141ed57600080fd5b6141f988828901613fd2565b9150509295509295909350565b600080600080600060a0868803121561421e57600080fd5b600061422c88828901613f2a565b955050602061423d88828901613f2a565b945050604061424e88828901614026565b935050606061425f88828901614026565b925050608086013567ffffffffffffffff81111561427c57600080fd5b61428888828901613fd2565b9150509295509295909350565b600080604083850312156142a857600080fd5b60006142b685828601613f2a565b92505060206142c785828601613f93565b9150509250929050565b600080604083850312156142e457600080fd5b60006142f285828601613f2a565b925050602061430385828601614026565b9150509250929050565b6000806040838503121561432057600080fd5b600083013567ffffffffffffffff81111561433a57600080fd5b61434685828601613f3f565b925050602083013567ffffffffffffffff81111561436357600080fd5b61436f85828601613f69565b9150509250929050565b60006020828403121561438b57600080fd5b600061439984828501613fa8565b91505092915050565b6000602082840312156143b457600080fd5b60006143c284828501613fbd565b91505092915050565b6000602082840312156143dd57600080fd5b600082013567ffffffffffffffff8111156143f757600080fd5b61440384828501613fd2565b91505092915050565b60006020828403121561441e57600080fd5b600082013567ffffffffffffffff81111561443857600080fd5b61444484828501613ffc565b91505092915050565b6000806040838503121561446057600080fd5b600083013567ffffffffffffffff81111561447a57600080fd5b61448685828601613ffc565b925050602061449785828601613f2a565b9150509250929050565b600080604083850312156144b457600080fd5b600083013567ffffffffffffffff8111156144ce57600080fd5b6144da85828601613ffc565b92505060206144eb85828601614026565b9150509250929050565b60008060006060848603121561450a57600080fd5b600084013567ffffffffffffffff81111561452457600080fd5b61453086828701613ffc565b935050602061454186828701614026565b925050604084013567ffffffffffffffff81111561455e57600080fd5b61456a86828701613fd2565b9150509250925092565b60008060008060008060c0878903121561458d57600080fd5b600087013567ffffffffffffffff8111156145a757600080fd5b6145b389828a01613ffc565b96505060206145c489828a01614026565b95505060406145d589828a01614026565b94505060606145e689828a01614026565b93505060806145f789828a01614026565b92505060a061460889828a01613f2a565b9150509295509295509295565b60006020828403121561462757600080fd5b600061463584828501614026565b91505092915050565b6000806040838503121561465157600080fd5b600061465f85828601614026565b925050602061467085828601613f2a565b9150509250929050565b60006146868383614f9e565b60208301905092915050565b61469b81615816565b82525050565b6146b26146ad82615816565b61595e565b82525050565b60006146c3826156ef565b6146cd818561571d565b93506146d8836156ca565b8060005b838110156147095781516146f0888261467a565b97506146fb83615710565b9250506001810190506146dc565b5085935050505092915050565b61471f81615828565b82525050565b61472e81615834565b82525050565b600061473f826156fa565b614749818561572e565b93506147598185602086016158b0565b61476281615a79565b840191505092915050565b600061477882615705565b614782818561573f565b93506147928185602086016158b0565b61479b81615a79565b840191505092915050565b60006147b182615705565b6147bb8185615750565b93506147cb8185602086016158b0565b80840191505092915050565b600081546147e4816158e3565b6147ee8186615750565b94506001821660008114614809576001811461481a5761484d565b60ff1983168652818601935061484d565b614823856156da565b60005b8381101561484557815481890152600182019150602081019050614826565b838801955050505b50505092915050565b600061486360348361573f565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b60006148c960288361573f565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b600061492f60158361573f565b91507f6d696e7420697320616c726561647920656e64656400000000000000000000006000830152602082019050919050565b600061496f60118361573f565b91507f696e76616c6964207369676e61747572650000000000000000000000000000006000830152602082019050919050565b60006149af60148361573f565b91507f6d696e74206d61782063617020726561636865640000000000000000000000006000830152602082019050919050565b60006149ef602b8361573f565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5560298361573f565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000614abb60128361573f565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000614afb60178361573f565b91507f5479706520697320616c726561647920637265617465640000000000000000006000830152602082019050919050565b6000614b3b60258361573f565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ba160328361573f565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614c07602a8361573f565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c6d601b8361573f565b91507f6d696e74207065722075736572206c696d6974207265616368656400000000006000830152602082019050919050565b6000614cad600b8361573f565b91507f6f6e6c79206d696e7465720000000000000000000000000000000000000000006000830152602082019050919050565b6000614ced602e8361573f565b91507f436f6e747261637420696e7374616e63652068617320616c726561647920626560008301527f656e20696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b6000614d5360128361573f565b91507f696e76616c6964206261646765207479706500000000000000000000000000006000830152602082019050919050565b6000614d9360298361573f565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000614df960188361573f565b91507f696e76616c6964207369676e6174757265206c656e67746800000000000000006000830152602082019050919050565b6000614e3960298361573f565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e9f60288361573f565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f0560218361573f565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f6b60118361573f565b91507f6d696e7420646f657327742073746172740000000000000000000000000000006000830152602082019050919050565b614fa78161588a565b82525050565b614fb68161588a565b82525050565b614fcd614fc88261588a565b615982565b82525050565b614fdc81615894565b82525050565b6000614fee82866146a1565b601482019150614ffe82856147a6565b915061500a8284614fbc565b602082019150819050949350505050565b600061502782846147a6565b915081905092915050565b600061503e82856147d7565b915061504a82846147a6565b91508190509392505050565b600060208201905061506b6000830184614692565b92915050565b600060a0820190506150866000830188614692565b6150936020830187614692565b81810360408301526150a581866146b8565b905081810360608301526150b981856146b8565b905081810360808301526150cd8184614734565b90509695505050505050565b600060a0820190506150ee6000830188614692565b6150fb6020830187614692565b6151086040830186614fad565b6151156060830185614fad565b81810360808301526151278184614734565b90509695505050505050565b6000602082019050818103600083015261514d81846146b8565b905092915050565b6000604082019050818103600083015261516f81856146b8565b9050818103602083015261518381846146b8565b90509392505050565b60006020820190506151a16000830184614716565b92915050565b60006060820190506151bc6000830186614725565b6151c96020830185614725565b6151d66040830184614fd3565b949350505050565b60006080820190506151f36000830187614725565b6152006020830186614fd3565b61520d6040830185614725565b61521a6060830184614725565b95945050505050565b6000602082019050818103600083015261523d818461476d565b905092915050565b6000604082019050818103600083015261525f818561476d565b905061526e6020830184614fad565b9392505050565b600060c082019050818103600083015261528f818961476d565b905061529e6020830188614fad565b6152ab6040830187614fad565b6152b86060830186614fad565b6152c56080830185614fad565b6152d260a0830184614692565b979650505050505050565b600060208201905081810360008301526152f681614856565b9050919050565b60006020820190508181036000830152615316816148bc565b9050919050565b6000602082019050818103600083015261533681614922565b9050919050565b6000602082019050818103600083015261535681614962565b9050919050565b60006020820190508181036000830152615376816149a2565b9050919050565b60006020820190508181036000830152615396816149e2565b9050919050565b600060208201905081810360008301526153b681614a48565b9050919050565b600060208201905081810360008301526153d681614aae565b9050919050565b600060208201905081810360008301526153f681614aee565b9050919050565b6000602082019050818103600083015261541681614b2e565b9050919050565b6000602082019050818103600083015261543681614b94565b9050919050565b6000602082019050818103600083015261545681614bfa565b9050919050565b6000602082019050818103600083015261547681614c60565b9050919050565b6000602082019050818103600083015261549681614ca0565b9050919050565b600060208201905081810360008301526154b681614ce0565b9050919050565b600060208201905081810360008301526154d681614d46565b9050919050565b600060208201905081810360008301526154f681614d86565b9050919050565b6000602082019050818103600083015261551681614dec565b9050919050565b6000602082019050818103600083015261553681614e2c565b9050919050565b6000602082019050818103600083015261555681614e92565b9050919050565b6000602082019050818103600083015261557681614ef8565b9050919050565b6000602082019050818103600083015261559681614f5e565b9050919050565b60006020820190506155b26000830184614fad565b92915050565b60006040820190506155cd6000830185614fad565b6155da6020830184614fad565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561560857615607615a4a565b5b8060405250919050565b600067ffffffffffffffff82111561562d5761562c615a4a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561565957615658615a4a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561568557615684615a4a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156156b5576156b4615a4a565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006157668261588a565b91506157718361588a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156157a6576157a56159bd565b5b828201905092915050565b60006157bc8261588a565b91506157c78361588a565b9250826157d7576157d66159ec565b5b828204905092915050565b60006157ed8261588a565b91506157f88361588a565b92508282101561580b5761580a6159bd565b5b828203905092915050565b60006158218261586a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156158ce5780820151818401526020810190506158b3565b838111156158dd576000848401525b50505050565b600060028204905060018216806158fb57607f821691505b6020821081141561590f5761590e615a1b565b5b50919050565b60006159208261588a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615953576159526159bd565b5b600182019050919050565b600061596982615970565b9050919050565b600061597b82615a8a565b9050919050565b6000819050919050565b60006159978261588a565b91506159a28361588a565b9250826159b2576159b16159ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b600060443d1015615ab457615b57565b60046000803e615ac5600051615a97565b6308c379a08114615ad65750615b57565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715615b0257505050615b57565b808201805167ffffffffffffffff811115615b21575050505050615b57565b8060208301013d8501811115615b3c57505050505050615b57565b615b4582615a79565b60208401016040528296505050505050505b90565b615b6381615816565b8114615b6e57600080fd5b50565b615b7a81615828565b8114615b8557600080fd5b50565b615b918161583e565b8114615b9c57600080fd5b50565b615ba88161588a565b8114615bb357600080fd5b5056fea26469706673582212209fbdd8d38a41bb27faeb3b947adaf508153143dc1788d4078d3af423584ca59464736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000005b39a2ed502ab5ea5804d8db3e85e178c9e584ad000000000000000000000000000000000000000000000000000000000000000c446546696e652042616467650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344464200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023b5760003560e01c80636c19e7831161013b578063c733241c116100b8578063ea37c2a91161007c578063ea37c2a91461078b578063eec9c3c8146107a7578063f242432a146107d7578063f6350b99146107f3578063feb99374146108235761023b565b8063c733241c146106c1578063daeb0aa6146106f1578063e16b4823146106fb578063e6d3da8b1461072b578063e985e9c51461075b5761023b565b806395d89b41116100ff57806395d89b411461061d578063a22cb4651461063b578063a7bb580314610657578063b6aa515b14610689578063c4d66de8146106a55761023b565b80636c19e783146105655780637ac3c02f146105955780637ba30d76146105b357806381c0c263146105e35780638358ff65146105ed5761023b565b806317aaafd0116101c95780634e1273f41161018d5780634e1273f41461048257806351de7e59146104b25780635e354332146104e2578063634d98fe146105125780636c0360eb146105475761023b565b806317aaafd0146103b85780631e31549e146103e8578063238ac933146104185780632eb2c2d614610436578063359b7338146104525761023b565b806306fdde031161021057806306fdde03146103005780630a5d0f2f1461031e5780630c340a241461034e5780630e89341c1461036c57806310662e911461039c5761023b565b80628e444414610240578062fdd58e1461027057806301ffc9a7146102a057806302fe5305146102d0575b600080fd5b61025a600480360381019061025591906144a1565b610853565b604051610267919061559d565b60405180910390f35b61028a600480360381019061028591906142d1565b610a0d565b604051610297919061559d565b60405180910390f35b6102ba60048036038101906102b59190614379565b610ad7565b6040516102c7919061518c565b60405180910390f35b6102ea60048036038101906102e5919061440c565b610bb9565b6040516102f7919061518c565b60405180910390f35b610308610c3e565b6040516103159190615223565b60405180910390f35b610338600480360381019061033391906144a1565b610ccc565b604051610345919061518c565b60405180910390f35b610356610d6d565b6040516103639190615056565b60405180910390f35b61038660048036038101906103819190614615565b610d93565b6040516103939190615223565b60405180910390f35b6103b660048036038101906103b191906144f5565b610dc7565b005b6103d260048036038101906103cd9190614574565b610e9a565b6040516103df919061518c565b60405180910390f35b61040260048036038101906103fd919061415f565b611091565b60405161040f9190615056565b60405180910390f35b610420611133565b60405161042d9190615056565b60405180910390f35b610450600480360381019061044b91906140a0565b611159565b005b61046c600480360381019061046791906144a1565b6111fa565b604051610479919061559d565b60405180910390f35b61049c6004803603810190610497919061430d565b6113b4565b6040516104a99190615133565b60405180910390f35b6104cc60048036038101906104c791906144a1565b611565565b6040516104d9919061518c565b60405180910390f35b6104fc60048036038101906104f79190614615565b611606565b604051610509919061559d565b60405180910390f35b61052c60048036038101906105279190614615565b61161e565b60405161053e96959493929190615275565b60405180910390f35b61054f611702565b60405161055c9190615223565b60405180910390f35b61057f600480360381019061057a919061403b565b611790565b60405161058c919061518c565b60405180910390f35b61059d611836565b6040516105aa9190615056565b60405180910390f35b6105cd60048036038101906105c891906144a1565b6118ba565b6040516105da919061518c565b60405180910390f35b6105eb61195b565b005b610607600480360381019061060291906144a1565b611a76565b604051610614919061518c565b60405180910390f35b610625611b17565b6040516106329190615223565b60405180910390f35b61065560048036038101906106509190614295565b611ba5565b005b610671600480360381019061066c91906143cb565b611d26565b604051610680939291906151a7565b60405180910390f35b6106a3600480360381019061069e919061403b565b611d8e565b005b6106bf60048036038101906106ba919061403b565b611df4565b005b6106db60048036038101906106d6919061440c565b611f9b565b6040516106e8919061559d565b60405180910390f35b6106f9611fc9565b005b610715600480360381019061071091906144a1565b61204f565b604051610722919061559d565b60405180910390f35b6107456004803603810190610740919061463e565b612209565b604051610752919061559d565b60405180910390f35b61077560048036038101906107709190614064565b61222e565b604051610782919061518c565b60405180910390f35b6107a560048036038101906107a0919061444d565b6122c2565b005b6107c160048036038101906107bc91906144a1565b612495565b6040516107ce919061559d565b60405180910390f35b6107f160048036038101906107ec9190614206565b61264f565b005b61080d6004803603810190610808919061440c565b6126f0565b60405161081a9190615056565b60405180910390f35b61083d6004803603810190610838919061444d565b6128a9565b60405161084a919061518c565b60405180910390f35b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108af57600080fd5b6000603d6000603e866040516108c5919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c00160405290816000820180546108fd906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610929906158e3565b80156109765780601f1061094b57610100808354040283529160200191610976565b820191906000526020600020905b81548152906001019060200180831161095957829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806020015191505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061537d565b60405180910390fd5b6034600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb25750610bb182612984565b5b9050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c1557600080fd5b81603b9080519060200190610c2b929190613d33565b50610c35826129ee565b60019050919050565b60398054610c4b906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c77906158e3565b8015610cc45780601f10610c9957610100808354040283529160200191610cc4565b820191906000526020600020905b815481529060010190602001808311610ca757829003601f168201915b505050505081565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d2857600080fd5b6000603d6000603e86604051610d3e919061501b565b908152602001604051809103902054815260200190815260200160002090508281600301819055505092915050565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060603b610da083612a08565b604051602001610db1929190615032565b6040516020818303038152906040529050919050565b6000610df8603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633868686611091565b90508073ffffffffffffffffffffffffffffffffffffffff16603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e819061533d565b60405180910390fd5b610e948433612bb5565b50505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ef657600080fd5b6000603e88604051610f08919061501b565b90815260200160405180910390205414610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906153dd565b60405180910390fd5b600160386000828254610f6a919061575b565b9250508190555060006040518060c001604052808981526020018881526020018781526020018681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff16815250905080603d600060385481526020019081526020016000206000820151816000019080519060200190610fea929190613d33565b506020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050603854603e89604051611070919061501b565b90815260200160405180910390208190555060019150509695505050505050565b6000808585856040516020016110a993929190614fe2565b60405160208183030381529060405280519060200120905060008060006110cf86611d26565b925092509250600184828585604051600081526020016040526040516110f894939291906151de565b6020604051602081039080840390855afa15801561111a573d6000803e3d6000fd5b5050506020604051035194505050505095945050505050565b603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61116161301a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a757506111a6856111a161301a565b61222e565b5b6111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061541d565b60405180910390fd5b6111f38585858585613022565b5050505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125657600080fd5b6000603d6000603e8660405161126c919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c00160405290816000820180546112a4906158e3565b80601f01602080910402602001604051908101604052809291908181526020018280546112d0906158e3565b801561131d5780601f106112f25761010080835404028352916020019161131d565b820191906000526020600020905b81548152906001019060200180831161130057829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806080015191505092915050565b606081518351146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f19061551d565b60405180910390fd5b6000835167ffffffffffffffff81111561143d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561146b5781602001602082028036833780820191505090505b50905060005b845181101561155a576115048582815181106114b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106114f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610a0d565b82828151811061153d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061155390615915565b9050611471565b508091505092915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c157600080fd5b6000603d6000603e866040516115d7919061501b565b908152602001604051809103902054815260200190815260200160002090508281600401819055505092915050565b603f6020528060005260406000206000915090505481565b603d602052806000526040600020600091509050806000018054611641906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461166d906158e3565b80156116ba5780601f1061168f576101008083540402835291602001916116ba565b820191906000526020600020905b81548152906001019060200180831161169d57829003601f168201915b5050505050908060010154908060020154908060030154908060040154908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905086565b603b805461170f906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461173b906158e3565b80156117885780601f1061175d57610100808354040283529160200191611788565b820191906000526020600020905b81548152906001019060200180831161176b57829003601f168201915b505050505081565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117ec57600080fd5b81603c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461189257600080fd5b603c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461191657600080fd5b6000603d6000603e8660405161192c919061501b565b908152602001604051809103902054815260200190815260200160002090508281600101819055505092915050565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b557600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a36000603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ad257600080fd5b6000603d6000603e86604051611ae8919061501b565b908152602001604051809103902054815260200190815260200160002090508281600201819055505092915050565b603a8054611b24906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b50906158e3565b8015611b9d5780601f10611b7257610100808354040283529160200191611b9d565b820191906000526020600020905b815481529060010190602001808311611b8057829003601f168201915b505050505081565b8173ffffffffffffffffffffffffffffffffffffffff16611bc461301a565b73ffffffffffffffffffffffffffffffffffffffff161415611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c12906154dd565b60405180910390fd5b8060356000611c2861301a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd561301a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a919061518c565b60405180910390a35050565b60008060006041845114611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d66906154fd565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611de857600080fd5b611df181613385565b50565b600060019054906101000a900460ff1680611e135750611e1261347f565b5b80611e29575060008054906101000a900460ff16155b611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f9061549d565b60405180910390fd5b60008060019054906101000a900460ff161590508015611eb8576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a38015611f975760008060016101000a81548160ff0219169083151502179055505b5050565b603e818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461202357600080fd5b603760009054906101000a900460ff1615603760006101000a81548160ff021916908315150217905550565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ab57600080fd5b6000603d6000603e866040516120c1919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c00160405290816000820180546120f9906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612125906158e3565b80156121725780601f1061214757610100808354040283529160200191612172565b820191906000526020600020905b81548152906001019060200180831161215557829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806060015191505092915050565b6040602052816000526040600020602052806000526040600020600091509150505481565b6000603560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000603d6000603e846040516122d9919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c0016040529081600082018054612311906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461233d906158e3565b801561238a5780601f1061235f5761010080835404028352916020019161238a565b820191906000526020600020905b81548152906001019060200180831161236d57829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090508060a0015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c9061547d565b60405180910390fd5b61248f8484612bb5565b50505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124f157600080fd5b6000603d6000603e86604051612507919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c001604052908160008201805461253f906158e3565b80601f016020809104026020016040519081016040528092919081815260200182805461256b906158e3565b80156125b85780601f1061258d576101008083540402835291602001916125b8565b820191906000526020600020905b81548152906001019060200180831161259b57829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806040015191505092915050565b61265761301a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061269d575061269c8561269761301a565b61222e565b5b6126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d39061539d565b60405180910390fd5b6126e98585858585613496565b5050505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461274c57600080fd5b6000603d6000603e85604051612762919061501b565b90815260200160405180910390205481526020019081526020016000206040518060c001604052908160008201805461279a906158e3565b80601f01602080910402602001604051908101604052809291908181526020018280546127c6906158e3565b80156128135780601f106127e857610100808354040283529160200191612813565b820191906000526020600020905b8154815290600101906020018083116127f657829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090508060a00151915050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461290557600080fd5b6000603d6000603e8660405161291b919061501b565b90815260200160405180910390205481526020019081526020016000209050828160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8060369080519060200190612a04929190613d33565b5050565b60606000821415612a50576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb0565b600082905060005b60008214612a82578080612a6b90615915565b915050600a82612a7b91906157b1565b9150612a58565b60008167ffffffffffffffff811115612ac4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612af65781602001600182028036833780820191505090505b5090505b60008514612ba957600182612b0f91906157e2565b9150600a85612b1e919061598c565b6030612b2a919061575b565b60f81b818381518110612b66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba291906157b1565b9450612afa565b8093505050505b919050565b603760009054906101000a900460ff16612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb906153bd565b60405180910390fd5b6000603e83604051612c16919061501b565b90815260200160405180910390205490506000603d60008381526020019081526020016000206040518060c0016040529081600082018054612c57906158e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612c83906158e3565b8015612cd05780601f10612ca557610100808354040283529160200191612cd0565b820191906000526020600020905b815481529060010190602001808311612cb357829003601f168201915b50505050508152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050905060008211612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d93906154bd565b60405180910390fd5b8060400151421015612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda9061557d565b60405180910390fd5b8060600151421115612e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e219061531d565b60405180910390fd5b8060200151603f60008481526020019081526020016000205410612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a9061535d565b60405180910390fd5b80608001516040600084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f109061545d565b60405180910390fd5b612f35838360016040518060200160405280600081525061371b565b603f60008381526020019081526020016000206000815480929190612f5990615915565b91905055506040600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612fbf90615915565b91905055503373ffffffffffffffffffffffffffffffffffffffff167fec4de1eef14af3ae5d77facf1ed7a9d3d50f6285573ee0ec155fc11217fc3442858460405161300c929190615245565b60405180910390a250505050565b600033905090565b8151835114613066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305d9061553d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd906153fd565b60405180910390fd5b60006130e061301a565b90506130f08187878787876138b2565b60005b84518110156132f0576000858281518110613137577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061317c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006034600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561321e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132159061543d565b60405180910390fd5b8181036034600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816034600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132d5919061575b565b92505081905550505050806132e990615915565b90506130f3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613367929190615155565b60405180910390a461337d8187878787876138ba565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133bf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fc7c0c772add429241571afb3805861fb3cfa2af374534088b76cdb4325a87e9a60405160405180910390a380603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000803090506000813b9050600081149250505090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fd906153fd565b60405180910390fd5b600061351061301a565b905061353081878761352188613a8a565b61352a88613a8a565b876138b2565b60006034600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156135c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bf9061543d565b60405180910390fd5b8381036034600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836034600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461367f919061575b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516136fc9291906155b8565b60405180910390a4613712828888888888613b50565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561378b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137829061555d565b60405180910390fd5b600061379561301a565b90506137b6816000876137a788613a8a565b6137b088613a8a565b876138b2565b826034600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613816919061575b565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516138949291906155b8565b60405180910390a46138ab81600087878787613b50565b5050505050565b505050505050565b6138d98473ffffffffffffffffffffffffffffffffffffffff16613d20565b15613a82578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161391f959493929190615071565b602060405180830381600087803b15801561393957600080fd5b505af192505050801561396a57506040513d601f19601f8201168201806040525081019061396791906143a2565b60015b6139f957613976615aa4565b8061398157506139be565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b59190615223565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f0906152dd565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a77906152fd565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115613acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613afd5781602001602082028036833780820191505090505b5090508281600081518110613b3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b613b6f8473ffffffffffffffffffffffffffffffffffffffff16613d20565b15613d18578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613bb59594939291906150d9565b602060405180830381600087803b158015613bcf57600080fd5b505af1925050508015613c0057506040513d601f19601f82011682018060405250810190613bfd91906143a2565b60015b613c8f57613c0c615aa4565b80613c175750613c54565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4b9190615223565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c86906152dd565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0d906152fd565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054613d3f906158e3565b90600052602060002090601f016020900481019282613d615760008555613da8565b82601f10613d7a57805160ff1916838001178555613da8565b82800160010185558215613da8579182015b82811115613da7578251825591602001919060010190613d8c565b5b509050613db59190613db9565b5090565b5b80821115613dd2576000816000905550600101613dba565b5090565b6000613de9613de484615612565b6155e1565b90508083825260208201905082856020860282011115613e0857600080fd5b60005b85811015613e385781613e1e8882613f2a565b845260208401935060208301925050600181019050613e0b565b5050509392505050565b6000613e55613e508461563e565b6155e1565b90508083825260208201905082856020860282011115613e7457600080fd5b60005b85811015613ea45781613e8a8882614026565b845260208401935060208301925050600181019050613e77565b5050509392505050565b6000613ec1613ebc8461566a565b6155e1565b905082815260208101848484011115613ed957600080fd5b613ee48482856158a1565b509392505050565b6000613eff613efa8461569a565b6155e1565b905082815260208101848484011115613f1757600080fd5b613f228482856158a1565b509392505050565b600081359050613f3981615b5a565b92915050565b600082601f830112613f5057600080fd5b8135613f60848260208601613dd6565b91505092915050565b600082601f830112613f7a57600080fd5b8135613f8a848260208601613e42565b91505092915050565b600081359050613fa281615b71565b92915050565b600081359050613fb781615b88565b92915050565b600081519050613fcc81615b88565b92915050565b600082601f830112613fe357600080fd5b8135613ff3848260208601613eae565b91505092915050565b600082601f83011261400d57600080fd5b813561401d848260208601613eec565b91505092915050565b60008135905061403581615b9f565b92915050565b60006020828403121561404d57600080fd5b600061405b84828501613f2a565b91505092915050565b6000806040838503121561407757600080fd5b600061408585828601613f2a565b925050602061409685828601613f2a565b9150509250929050565b600080600080600060a086880312156140b857600080fd5b60006140c688828901613f2a565b95505060206140d788828901613f2a565b945050604086013567ffffffffffffffff8111156140f457600080fd5b61410088828901613f69565b935050606086013567ffffffffffffffff81111561411d57600080fd5b61412988828901613f69565b925050608086013567ffffffffffffffff81111561414657600080fd5b61415288828901613fd2565b9150509295509295909350565b600080600080600060a0868803121561417757600080fd5b600061418588828901613f2a565b955050602061419688828901613f2a565b945050604086013567ffffffffffffffff8111156141b357600080fd5b6141bf88828901613ffc565b93505060606141d088828901614026565b925050608086013567ffffffffffffffff8111156141ed57600080fd5b6141f988828901613fd2565b9150509295509295909350565b600080600080600060a0868803121561421e57600080fd5b600061422c88828901613f2a565b955050602061423d88828901613f2a565b945050604061424e88828901614026565b935050606061425f88828901614026565b925050608086013567ffffffffffffffff81111561427c57600080fd5b61428888828901613fd2565b9150509295509295909350565b600080604083850312156142a857600080fd5b60006142b685828601613f2a565b92505060206142c785828601613f93565b9150509250929050565b600080604083850312156142e457600080fd5b60006142f285828601613f2a565b925050602061430385828601614026565b9150509250929050565b6000806040838503121561432057600080fd5b600083013567ffffffffffffffff81111561433a57600080fd5b61434685828601613f3f565b925050602083013567ffffffffffffffff81111561436357600080fd5b61436f85828601613f69565b9150509250929050565b60006020828403121561438b57600080fd5b600061439984828501613fa8565b91505092915050565b6000602082840312156143b457600080fd5b60006143c284828501613fbd565b91505092915050565b6000602082840312156143dd57600080fd5b600082013567ffffffffffffffff8111156143f757600080fd5b61440384828501613fd2565b91505092915050565b60006020828403121561441e57600080fd5b600082013567ffffffffffffffff81111561443857600080fd5b61444484828501613ffc565b91505092915050565b6000806040838503121561446057600080fd5b600083013567ffffffffffffffff81111561447a57600080fd5b61448685828601613ffc565b925050602061449785828601613f2a565b9150509250929050565b600080604083850312156144b457600080fd5b600083013567ffffffffffffffff8111156144ce57600080fd5b6144da85828601613ffc565b92505060206144eb85828601614026565b9150509250929050565b60008060006060848603121561450a57600080fd5b600084013567ffffffffffffffff81111561452457600080fd5b61453086828701613ffc565b935050602061454186828701614026565b925050604084013567ffffffffffffffff81111561455e57600080fd5b61456a86828701613fd2565b9150509250925092565b60008060008060008060c0878903121561458d57600080fd5b600087013567ffffffffffffffff8111156145a757600080fd5b6145b389828a01613ffc565b96505060206145c489828a01614026565b95505060406145d589828a01614026565b94505060606145e689828a01614026565b93505060806145f789828a01614026565b92505060a061460889828a01613f2a565b9150509295509295509295565b60006020828403121561462757600080fd5b600061463584828501614026565b91505092915050565b6000806040838503121561465157600080fd5b600061465f85828601614026565b925050602061467085828601613f2a565b9150509250929050565b60006146868383614f9e565b60208301905092915050565b61469b81615816565b82525050565b6146b26146ad82615816565b61595e565b82525050565b60006146c3826156ef565b6146cd818561571d565b93506146d8836156ca565b8060005b838110156147095781516146f0888261467a565b97506146fb83615710565b9250506001810190506146dc565b5085935050505092915050565b61471f81615828565b82525050565b61472e81615834565b82525050565b600061473f826156fa565b614749818561572e565b93506147598185602086016158b0565b61476281615a79565b840191505092915050565b600061477882615705565b614782818561573f565b93506147928185602086016158b0565b61479b81615a79565b840191505092915050565b60006147b182615705565b6147bb8185615750565b93506147cb8185602086016158b0565b80840191505092915050565b600081546147e4816158e3565b6147ee8186615750565b94506001821660008114614809576001811461481a5761484d565b60ff1983168652818601935061484d565b614823856156da565b60005b8381101561484557815481890152600182019150602081019050614826565b838801955050505b50505092915050565b600061486360348361573f565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b60006148c960288361573f565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b600061492f60158361573f565b91507f6d696e7420697320616c726561647920656e64656400000000000000000000006000830152602082019050919050565b600061496f60118361573f565b91507f696e76616c6964207369676e61747572650000000000000000000000000000006000830152602082019050919050565b60006149af60148361573f565b91507f6d696e74206d61782063617020726561636865640000000000000000000000006000830152602082019050919050565b60006149ef602b8361573f565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5560298361573f565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000614abb60128361573f565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000614afb60178361573f565b91507f5479706520697320616c726561647920637265617465640000000000000000006000830152602082019050919050565b6000614b3b60258361573f565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ba160328361573f565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614c07602a8361573f565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c6d601b8361573f565b91507f6d696e74207065722075736572206c696d6974207265616368656400000000006000830152602082019050919050565b6000614cad600b8361573f565b91507f6f6e6c79206d696e7465720000000000000000000000000000000000000000006000830152602082019050919050565b6000614ced602e8361573f565b91507f436f6e747261637420696e7374616e63652068617320616c726561647920626560008301527f656e20696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b6000614d5360128361573f565b91507f696e76616c6964206261646765207479706500000000000000000000000000006000830152602082019050919050565b6000614d9360298361573f565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000614df960188361573f565b91507f696e76616c6964207369676e6174757265206c656e67746800000000000000006000830152602082019050919050565b6000614e3960298361573f565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e9f60288361573f565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f0560218361573f565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f6b60118361573f565b91507f6d696e7420646f657327742073746172740000000000000000000000000000006000830152602082019050919050565b614fa78161588a565b82525050565b614fb68161588a565b82525050565b614fcd614fc88261588a565b615982565b82525050565b614fdc81615894565b82525050565b6000614fee82866146a1565b601482019150614ffe82856147a6565b915061500a8284614fbc565b602082019150819050949350505050565b600061502782846147a6565b915081905092915050565b600061503e82856147d7565b915061504a82846147a6565b91508190509392505050565b600060208201905061506b6000830184614692565b92915050565b600060a0820190506150866000830188614692565b6150936020830187614692565b81810360408301526150a581866146b8565b905081810360608301526150b981856146b8565b905081810360808301526150cd8184614734565b90509695505050505050565b600060a0820190506150ee6000830188614692565b6150fb6020830187614692565b6151086040830186614fad565b6151156060830185614fad565b81810360808301526151278184614734565b90509695505050505050565b6000602082019050818103600083015261514d81846146b8565b905092915050565b6000604082019050818103600083015261516f81856146b8565b9050818103602083015261518381846146b8565b90509392505050565b60006020820190506151a16000830184614716565b92915050565b60006060820190506151bc6000830186614725565b6151c96020830185614725565b6151d66040830184614fd3565b949350505050565b60006080820190506151f36000830187614725565b6152006020830186614fd3565b61520d6040830185614725565b61521a6060830184614725565b95945050505050565b6000602082019050818103600083015261523d818461476d565b905092915050565b6000604082019050818103600083015261525f818561476d565b905061526e6020830184614fad565b9392505050565b600060c082019050818103600083015261528f818961476d565b905061529e6020830188614fad565b6152ab6040830187614fad565b6152b86060830186614fad565b6152c56080830185614fad565b6152d260a0830184614692565b979650505050505050565b600060208201905081810360008301526152f681614856565b9050919050565b60006020820190508181036000830152615316816148bc565b9050919050565b6000602082019050818103600083015261533681614922565b9050919050565b6000602082019050818103600083015261535681614962565b9050919050565b60006020820190508181036000830152615376816149a2565b9050919050565b60006020820190508181036000830152615396816149e2565b9050919050565b600060208201905081810360008301526153b681614a48565b9050919050565b600060208201905081810360008301526153d681614aae565b9050919050565b600060208201905081810360008301526153f681614aee565b9050919050565b6000602082019050818103600083015261541681614b2e565b9050919050565b6000602082019050818103600083015261543681614b94565b9050919050565b6000602082019050818103600083015261545681614bfa565b9050919050565b6000602082019050818103600083015261547681614c60565b9050919050565b6000602082019050818103600083015261549681614ca0565b9050919050565b600060208201905081810360008301526154b681614ce0565b9050919050565b600060208201905081810360008301526154d681614d46565b9050919050565b600060208201905081810360008301526154f681614d86565b9050919050565b6000602082019050818103600083015261551681614dec565b9050919050565b6000602082019050818103600083015261553681614e2c565b9050919050565b6000602082019050818103600083015261555681614e92565b9050919050565b6000602082019050818103600083015261557681614ef8565b9050919050565b6000602082019050818103600083015261559681614f5e565b9050919050565b60006020820190506155b26000830184614fad565b92915050565b60006040820190506155cd6000830185614fad565b6155da6020830184614fad565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561560857615607615a4a565b5b8060405250919050565b600067ffffffffffffffff82111561562d5761562c615a4a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561565957615658615a4a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561568557615684615a4a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156156b5576156b4615a4a565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006157668261588a565b91506157718361588a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156157a6576157a56159bd565b5b828201905092915050565b60006157bc8261588a565b91506157c78361588a565b9250826157d7576157d66159ec565b5b828204905092915050565b60006157ed8261588a565b91506157f88361588a565b92508282101561580b5761580a6159bd565b5b828203905092915050565b60006158218261586a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156158ce5780820151818401526020810190506158b3565b838111156158dd576000848401525b50505050565b600060028204905060018216806158fb57607f821691505b6020821081141561590f5761590e615a1b565b5b50919050565b60006159208261588a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615953576159526159bd565b5b600182019050919050565b600061596982615970565b9050919050565b600061597b82615a8a565b9050919050565b6000819050919050565b60006159978261588a565b91506159a28361588a565b9250826159b2576159b16159ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b600060443d1015615ab457615b57565b60046000803e615ac5600051615a97565b6308c379a08114615ad65750615b57565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715615b0257505050615b57565b808201805167ffffffffffffffff811115615b21575050505050615b57565b8060208301013d8501811115615b3c57505050505050615b57565b615b4582615a79565b60208401016040528296505050505050505b90565b615b6381615816565b8114615b6e57600080fd5b50565b615b7a81615828565b8114615b8557600080fd5b50565b615b918161583e565b8114615b9c57600080fd5b50565b615ba88161588a565b8114615bb357600080fd5b5056fea26469706673582212209fbdd8d38a41bb27faeb3b947adaf508153143dc1788d4078d3af423584ca59464736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000005b39a2ed502ab5ea5804d8db3e85e178c9e584ad000000000000000000000000000000000000000000000000000000000000000c446546696e652042616467650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344464200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DeFine Badge
Arg [1] : _symbol (string): DFB
Arg [2] : _baseURI (string):
Arg [3] : _signer (address): 0x5B39a2ed502Ab5eA5804D8dB3E85E178c9e584ad

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000005b39a2ed502ab5ea5804d8db3e85e178c9e584ad
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 446546696e652042616467650000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4446420000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000


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

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