ETH Price: $3,303.80 (-3.17%)
Gas: 20 Gwei

Token

Bear Labs (BEARLABS)
 

Overview

Max Total Supply

4,355 BEARLABS

Holders

976

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
shawnakim.eth
Balance
1 BEARLABS
0x4e61712a039ec4a324a6a69a1ce3a06cb368d1e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Empowering communities with turnkey off-chain social economy

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BearLab

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : BearLab.sol
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

interface ProxyEventChain {
    function eventTransfer(
        address from,
        address to,
        uint256 tokenId
    ) external;
}

contract BearLab is ERC721, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private m_TokenIdCounter;

    uint256 private m_MaxSupply = 4444;
    uint256 private m_SupplyStart = 1;
    uint256 private m_SupplyBase = 0;

    uint256 private m_DropSupply = 4444;

    uint256 private m_MaxMintPerAddress = 4;
    uint256 private m_MaxMintPerBear = 1;

    uint256 private m_MintPrice = 100000 ether; // 100K MSK

    uint256 private m_ClaimIdLimit = 2520;
    bool private m_ClaimEnabled = false;
    mapping(uint256 => bool) private m_ClaimedIdList;

    mapping(address => bool) private m_ProxyList;

    bool private m_IsMintable = false; // false

    string private m_baseURI;
    string private m_ContractURI;

    address private m_MSK = 0x72D7b17bF63322A943d4A2873310a83DcdBc3c8D;
    address private m_Badbear = 0x5E4aAB148410DE1CB50cDCD5108e1260Cc36d266;

    address private m_ClaimWallet = 0xA69e1e8f7afd56126452AcDbCe27374570a52D48;

    address private m_ProxyEventChainAddress;

    constructor() ERC721("Bear Labs", "BEARLABS") {
        m_ContractURI = "";
        m_ProxyEventChainAddress = address(0);
    }

    function isApprovedForAll(address _owner, address _operator)
        public
        view
        override
        returns (bool isOperator)
    {
        if (m_ProxyList[_operator]) {
            return true;
        }

        return ERC721.isApprovedForAll(_owner, _operator);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        if (m_ProxyEventChainAddress != address(0)) {
            ProxyEventChain(m_ProxyEventChainAddress).eventTransfer(
                from,
                to,
                tokenId
            );
        }
    }

    function totalSupply() public view returns (uint256) {
        uint256 counter = m_SupplyBase;
        for (uint256 i = m_SupplyStart; i <= m_MaxSupply; i++) {
            if (_exists(i)) counter = counter.add(1);
        }
        return counter;
    }

    function dropClaim(uint256[] memory ids) external {
        require(m_ClaimEnabled);
        IERC721 badbear = IERC721(m_Badbear);
        for (uint256 i = 0; i < ids.length; i++) {
            require(ids[i] <= m_ClaimIdLimit);
            if (m_ClaimedIdList[ids[i]] != true) {
                require(badbear.ownerOf(ids[i]) == _msgSender(), "No owner");
                _mintDrop(_msgSender());
                m_ClaimedIdList[ids[i]] = true;
            }
        }
    }

    function _mintDrop(address _address) private {
        m_TokenIdCounter.increment();
        uint256 tokenId = m_TokenIdCounter.current();

        require(_exists(tokenId) == false);
        require(tokenId <= m_DropSupply);

        _safeMint(_address, tokenId);
    }

    function _safeMintMultiple(address _address, uint256 _numberOfTokens)
        private
    {
        while (_numberOfTokens > 0) {
            _mintDrop(_address);
            _numberOfTokens = _numberOfTokens.sub(1);
        }
    }

    function randomReserve(address _address, uint256 _numberOfTokens)
        public
        onlyOwner
    {
        _safeMintMultiple(_address, _numberOfTokens);
    }

    function randomReserveMultiple(
        address[] memory _addresses,
        uint256[] memory _numbers
    ) external onlyOwner {
        require(_addresses.length == _numbers.length);

        for (uint256 i = 0; i < _addresses.length; i++) {
            randomReserve(_addresses[i], _numbers[i]);
        }
    }

    function mint(uint256 _numberOfTokens) public {
        require(m_IsMintable, "must be active");

        require(_numberOfTokens > 0);

        uint256 afterMintBalace = balanceOf(_msgSender()).add(_numberOfTokens);

        require(
            afterMintBalace <= m_MaxMintPerAddress,
            "Over Max Mint per Address"
        );
        IERC721 badbear = IERC721(m_Badbear);

        uint256 balanceBadbear = badbear.balanceOf(_msgSender());

        require(balanceBadbear > 0);
        require(balanceBadbear * m_MaxMintPerBear >= afterMintBalace);

        IERC20 msk = IERC20(m_MSK);
        uint256 requireAmount = m_MintPrice.mul(_numberOfTokens);

        require(
            msk.balanceOf(_msgSender()) >= requireAmount,
            "Msk balance is not enough"
        );

        msk.transferFrom(_msgSender(), m_ClaimWallet, requireAmount);

        _safeMintMultiple(_msgSender(), _numberOfTokens);
    }

    function proxyMint(address _address, uint256 _tokenId) external {
        require(m_ProxyList[_msgSender()] == true);
        _safeMint(_address, _tokenId);
    }

    function proxyBurn(uint256 _tokenId) external {
        require(m_ProxyList[_msgSender()] == true);
        _burn(_tokenId);
    }

    // ######## BearLab Config #########

    function setClaimedIdLimit(uint256 _claimIdLimit) external onlyOwner {
        m_ClaimIdLimit = _claimIdLimit;
    }

    function getClaimedIdLimit() external view returns (uint256) {
        return m_ClaimIdLimit;
    }

    function contractURI() public view returns (string memory) {
        return m_ContractURI;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        m_ContractURI = _contractURI;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        m_MintPrice = _mintPrice * (10**18);
    }

    function getMintPrice() external view returns (uint256) {
        return m_MintPrice.div(10**18);
    }

    function setDropSupply(uint256 _maxSupply) external onlyOwner {
        m_DropSupply = _maxSupply;
    }

    function getDropSupply() external view returns (uint256) {
        return m_DropSupply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        m_baseURI = _newBaseURI;
    }

    function _baseURI() internal view override returns (string memory) {
        return m_baseURI;
    }

    function setMintEnabled(bool _enabled) external onlyOwner {
        m_IsMintable = _enabled;
    }

    function getMintEnabled() external view returns (bool) {
        return m_IsMintable;
    }

    function setClaimEnabled(bool _enabled) external onlyOwner {
        m_ClaimEnabled = _enabled;
    }

    function getClaimEnabled() external view returns (bool) {
        return m_ClaimEnabled;
    }

    function setMaxMintPerAddress(uint256 _maxMintPerAddress)
        external
        onlyOwner
    {
        m_MaxMintPerAddress = _maxMintPerAddress;
    }

    function getMaxMintPerAddress() external view returns (uint256) {
        return m_MaxMintPerAddress;
    }

    function setProxyList(address _proxyAddress) external onlyOwner {
        m_ProxyList[_proxyAddress] = true;
    }

    function removeProxyList(address _proxyAddress) external onlyOwner {
        m_ProxyList[_proxyAddress] = false;
    }

    function isProxyList(address _proxyAddress) external view returns (bool) {
        return m_ProxyList[_proxyAddress];
    }

    function isClaimed(uint256 _id) external view returns (bool) {
        return m_ClaimedIdList[_id];
    }

    function getClaimableCount(uint256[] memory _ids)
        external
        view
        returns (uint256)
    {
        uint256 counter = 0;
        for (uint256 i = 0; i < _ids.length; i++) {
            if (_ids[i] > m_ClaimIdLimit) continue;
            if (m_ClaimedIdList[_ids[i]] == true) continue;
            counter = counter.add(1);
        }

        return counter;
    }

    function setSupplyInfo(
        uint256 _maxSupply,
        uint256 _start,
        uint256 _base
    ) external {
        m_MaxSupply = _maxSupply;
        m_SupplyStart = _start;
        m_SupplyBase = _base;
    }

    function setProxyEventChainAddress(address _address) external onlyOwner {
        m_ProxyEventChainAddress = _address;
    }

    function getProxyEventChainAddress() external view returns (address) {
        return m_ProxyEventChainAddress;
    }

    function setMaxMintPerBear(uint256 _maxMintPerBear) external onlyOwner {
        m_MaxMintPerBear = _maxMintPerBear;
    }

    function getMaxMintPerBear() external view returns (uint256) {
        return m_MaxMintPerBear;
    }

    function setClaimWallet(address _claimWallet) external onlyOwner {
        m_ClaimWallet = _claimWallet;
    }

    function getClaimWallet() external view returns (address) {
        return m_ClaimWallet;
    }

    // ######## MSK & BADBEAR #########
    function setMskContract(address _address) external onlyOwner {
        m_MSK = _address;
    }

    function getMskContract() external view returns (address) {
        return m_MSK;
    }

    function setBadbearContract(address _address) external onlyOwner {
        m_Badbear = _address;
    }

    function getBadbearContract() external view returns (address) {
        return m_Badbear;
    }

    function withdraw() external onlyOwner {
        IERC20 msk = IERC20(m_MSK);
        msk.transfer(owner(), msk.balanceOf(address(this)));
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"dropClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBadbearContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"getClaimableCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimedIdLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDropSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxMintPerBear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMskContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getProxyEventChainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"isProxyList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"proxyBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"proxyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"randomReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_numbers","type":"uint256[]"}],"name":"randomReserveMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"removeProxyList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setBadbearContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_claimWallet","type":"address"}],"name":"setClaimWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimIdLimit","type":"uint256"}],"name":"setClaimedIdLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setDropSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerAddress","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerBear","type":"uint256"}],"name":"setMaxMintPerBear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setMskContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setProxyEventChainAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"setProxyList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_base","type":"uint256"}],"name":"setSupplyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c60085560016009556000600a5561115c600b556004600c556001600d5569152d02c7e14af6800000600e556109d8600f556000601060006101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055507372d7b17bf63322a943d4a2873310a83dcdbc3c8d601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735e4aab148410de1cb50cdcd5108e1260cc36d266601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a69e1e8f7afd56126452acdbce27374570a52d48601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017a57600080fd5b506040518060400160405280600981526020017f42656172204c61627300000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f424541524c4142530000000000000000000000000000000000000000000000008152508160009080519060200190620001ff92919062000379565b5080600190805190602001906200021892919062000379565b5050506200023b6200022f620002ab60201b60201c565b620002b360201b60201c565b60405180602001604052806000815250601590805190602001906200026292919062000379565b506000601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003879062000458565b90600052602060002090601f016020900481019282620003ab5760008555620003f7565b82601f10620003c657805160ff1916838001178555620003f7565b82800160010185558215620003f7579182015b82811115620003f6578251825591602001919060010190620003d9565b5b5090506200040691906200040a565b5090565b5b80821115620004255760008160009055506001016200040b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047157607f821691505b6020821081141562000488576200048762000429565b5b50919050565b615425806200049e6000396000f3fe608060405234801561001057600080fd5b506004361061035d5760003560e01c806389664e85116101d3578063ace1360c11610104578063e8a3d485116100a2578063f2fde38b1161007c578063f2fde38b14610992578063f46a04eb146109ae578063f4a0a528146109ca578063fe056494146109e65761035d565b8063e8a3d48514610926578063e8fec3f414610944578063e985e9c5146109625761035d565b8063b947b0d8116100de578063b947b0d8146108a0578063c3244cd8146108bc578063c87b56dd146108d8578063dcf53121146109085761035d565b8063ace1360c1461084a578063ad9d81cf14610868578063b88d4fde146108845761035d565b806398f20f6e11610171578063a22cb4651161014b578063a22cb465146107d6578063a34c9262146107f2578063a7f93ebd14610810578063a99349ec1461082e5761035d565b806398f20f6e1461076e5780639e34070f1461078a578063a0712d68146107ba5761035d565b80638da5cb5b116101ad5780638da5cb5b146106fa57806392929a0914610718578063938e3d7b1461073457806395d89b41146107505761035d565b806389664e85146106a25780638c36f0c8146106be5780638d5908a3146106dc5761035d565b80633ccfd60b116102ad57806370a082311161024b5780637ba9c5a5116102255780637ba9c5a51461061c5780637ec5b14f146106385780638049ed0414610668578063861453ca146106845761035d565b806370a08231146105c4578063715018a6146105f457806374f33393146105fe5761035d565b8063443c1feb11610287578063443c1feb1461053e57806355f804b31461055a5780636352211e146105765780636ffd0c97146105a65761035d565b80633ccfd60b146104fc5780633fc9a6461461050657806342842e0e146105225761035d565b806319f389351161031a5780631f471ad0116102f45780631f471ad01461048c57806323b872dd146104a8578063244eec06146104c45780633baf9236146104e05761035d565b806319f38935146104385780631e14d44b146104545780631e8383a8146104705761035d565b806301ffc9a71461036257806306fdde0314610392578063081812fc146103b0578063095ea7b3146103e05780630d011dec146103fc57806318160ddd1461041a575b600080fd5b61037c60048036038101906103779190613bc4565b610a16565b6040516103899190613c0c565b60405180910390f35b61039a610af8565b6040516103a79190613cc0565b60405180910390f35b6103ca60048036038101906103c59190613d18565b610b8a565b6040516103d79190613d86565b60405180910390f35b6103fa60048036038101906103f59190613dcd565b610c0f565b005b610404610d27565b6040516104119190613e1c565b60405180910390f35b610422610d31565b60405161042f9190613e1c565b60405180910390f35b610452600480360381019061044d9190613d18565b610d8a565b005b61046e60048036038101906104699190613d18565b610e10565b005b61048a60048036038101906104859190613d18565b610e96565b005b6104a660048036038101906104a19190613dcd565b610f06565b005b6104c260048036038101906104bd9190613e37565b610f78565b005b6104de60048036038101906104d99190613e8a565b610fd8565b005b6104fa60048036038101906104f59190613fff565b611098565b005b6105046112d9565b005b610520600480360381019061051b9190613e8a565b61149c565b005b61053c60048036038101906105379190613e37565b611573565b005b61055860048036038101906105539190613d18565b611593565b005b610574600480360381019061056f91906140fd565b611619565b005b610590600480360381019061058b9190613d18565b6116af565b60405161059d9190613d86565b60405180910390f35b6105ae611761565b6040516105bb9190613c0c565b60405180910390f35b6105de60048036038101906105d99190613e8a565b611778565b6040516105eb9190613e1c565b60405180910390f35b6105fc611830565b005b6106066118b8565b6040516106139190613d86565b60405180910390f35b61063660048036038101906106319190613dcd565b6118e2565b005b610652600480360381019061064d9190613e8a565b61196c565b60405161065f9190613c0c565b60405180910390f35b610682600480360381019061067d9190613e8a565b6119c2565b005b61068c611a99565b6040516106999190613d86565b60405180910390f35b6106bc60048036038101906106b79190613d18565b611ac3565b005b6106c6611b49565b6040516106d39190613d86565b60405180910390f35b6106e4611b73565b6040516106f19190613e1c565b60405180910390f35b610702611b7d565b60405161070f9190613d86565b60405180910390f35b610732600480360381019061072d9190614172565b611ba7565b005b61074e600480360381019061074991906140fd565b611c40565b005b610758611cd6565b6040516107659190613cc0565b60405180910390f35b61078860048036038101906107839190613e8a565b611d68565b005b6107a4600480360381019061079f9190613d18565b611e28565b6040516107b19190613c0c565b60405180910390f35b6107d460048036038101906107cf9190613d18565b611e52565b005b6107f060048036038101906107eb919061419f565b6121df565b005b6107fa612360565b6040516108079190613e1c565b60405180910390f35b61081861236a565b6040516108259190613e1c565b60405180910390f35b61084860048036038101906108439190613e8a565b61238e565b005b61085261244e565b60405161085f9190613c0c565b60405180910390f35b610882600480360381019061087d91906142a2565b612465565b005b61089e600480360381019061089991906143bb565b612551565b005b6108ba60048036038101906108b5919061443e565b6125b3565b005b6108d660048036038101906108d19190613e8a565b6125cd565b005b6108f260048036038101906108ed9190613d18565b61268d565b6040516108ff9190613cc0565b60405180910390f35b610910612734565b60405161091d9190613d86565b60405180910390f35b61092e61275e565b60405161093b9190613cc0565b60405180910390f35b61094c6127f0565b6040516109599190613e1c565b60405180910390f35b61097c60048036038101906109779190614491565b6127fa565b6040516109899190613c0c565b60405180910390f35b6109ac60048036038101906109a79190613e8a565b61286a565b005b6109c860048036038101906109c39190614172565b612962565b005b6109e460048036038101906109df9190613d18565b6129fb565b005b610a0060048036038101906109fb9190613fff565b612a94565b604051610a0d9190613e1c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af15750610af082612b50565b5b9050919050565b606060008054610b0790614500565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390614500565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b9582612bba565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906145a4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1a826116af565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614636565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caa612c26565b73ffffffffffffffffffffffffffffffffffffffff161480610cd95750610cd881610cd3612c26565b6127fa565b5b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f906146c8565b60405180910390fd5b610d228383612c2e565b505050565b6000600b54905090565b600080600a549050600060095490505b6008548111610d8257610d5381612bba565b15610d6f57610d6c600183612ce790919063ffffffff16565b91505b8080610d7a90614717565b915050610d41565b508091505090565b610d92612c26565b73ffffffffffffffffffffffffffffffffffffffff16610db0611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd906147ac565b60405180910390fd5b80600b8190555050565b610e18612c26565b73ffffffffffffffffffffffffffffffffffffffff16610e36611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906147ac565b60405180910390fd5b80600c8190555050565b6001151560126000610ea6612c26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610efa57600080fd5b610f0381612cfd565b50565b6001151560126000610f16612c26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f6a57600080fd5b610f748282612e0e565b5050565b610f89610f83612c26565b82612e2c565b610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf9061483e565b60405180910390fd5b610fd3838383612f0a565b505050565b610fe0612c26565b73ffffffffffffffffffffffffffffffffffffffff16610ffe611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b906147ac565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060009054906101000a900460ff166110b157600080fd5b6000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b82518110156112d457600f548382815181106110fa576110f961485e565b5b6020026020010151111561110d57600080fd5b60011515601160008584815181106111285761112761485e565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515146112c15761115b612c26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e8584815181106111a05761119f61485e565b5b60200260200101516040518263ffffffff1660e01b81526004016111c49190613e1c565b60206040518083038186803b1580156111dc57600080fd5b505afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121491906148a2565b73ffffffffffffffffffffffffffffffffffffffff161461126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112619061491b565b60405180910390fd5b61127a611275612c26565b613166565b6001601160008584815181106112935761129261485e565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80806112cc90614717565b9150506110db565b505050565b6112e1612c26565b73ffffffffffffffffffffffffffffffffffffffff166112ff611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906147ac565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6113a0611b7d565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113d99190613d86565b60206040518083038186803b1580156113f157600080fd5b505afa158015611405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114299190614950565b6040518363ffffffff1660e01b815260040161144692919061497d565b602060405180830381600087803b15801561146057600080fd5b505af1158015611474573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149891906149bb565b5050565b6114a4612c26565b73ffffffffffffffffffffffffffffffffffffffff166114c2611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f906147ac565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61158e83838360405180602001604052806000815250612551565b505050565b61159b612c26565b73ffffffffffffffffffffffffffffffffffffffff166115b9611b7d565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906147ac565b60405180910390fd5b80600d8190555050565b611621612c26565b73ffffffffffffffffffffffffffffffffffffffff1661163f611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c906147ac565b60405180910390fd5b80601490805190602001906116ab929190613ab5565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614a5a565b60405180910390fd5b80915050919050565b6000601360009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614aec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611838612c26565b73ffffffffffffffffffffffffffffffffffffffff16611856611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a3906147ac565b60405180910390fd5b6118b660006131b4565b565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118ea612c26565b73ffffffffffffffffffffffffffffffffffffffff16611908611b7d565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611955906147ac565b60405180910390fd5b611968828261327a565b5050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119ca612c26565b73ffffffffffffffffffffffffffffffffffffffff166119e8611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a35906147ac565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611acb612c26565b73ffffffffffffffffffffffffffffffffffffffff16611ae9611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b36906147ac565b60405180910390fd5b80600f8190555050565b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611baf612c26565b73ffffffffffffffffffffffffffffffffffffffff16611bcd611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906147ac565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611c48612c26565b73ffffffffffffffffffffffffffffffffffffffff16611c66611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3906147ac565b60405180910390fd5b8060159080519060200190611cd2929190613ab5565b5050565b606060018054611ce590614500565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1190614500565b8015611d5e5780601f10611d3357610100808354040283529160200191611d5e565b820191906000526020600020905b815481529060010190602001808311611d4157829003601f168201915b5050505050905090565b611d70612c26565b73ffffffffffffffffffffffffffffffffffffffff16611d8e611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb906147ac565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006011600083815260200190815260200160002060009054906101000a900460ff169050919050565b601360009054906101000a900460ff16611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890614b58565b60405180910390fd5b60008111611eae57600080fd5b6000611ed282611ec4611ebf612c26565b611778565b612ce790919063ffffffff16565b9050600c54811115611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090614bc4565b60405180910390fd5b6000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231611f66612c26565b6040518263ffffffff1660e01b8152600401611f829190613d86565b60206040518083038186803b158015611f9a57600080fd5b505afa158015611fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd29190614950565b905060008111611fe157600080fd5b82600d5482611ff09190614be4565b1015611ffb57600080fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061203986600e546132ac90919063ffffffff16565b9050808273ffffffffffffffffffffffffffffffffffffffff166370a08231612060612c26565b6040518263ffffffff1660e01b815260040161207c9190613d86565b60206040518083038186803b15801561209457600080fd5b505afa1580156120a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cc9190614950565b101561210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614c8a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd612131612c26565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b815260040161217393929190614caa565b602060405180830381600087803b15801561218d57600080fd5b505af11580156121a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c591906149bb565b506121d76121d1612c26565b8761327a565b505050505050565b6121e7612c26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614d2d565b60405180910390fd5b8060056000612262612c26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661230f612c26565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123549190613c0c565b60405180910390a35050565b6000600f54905090565b6000612389670de0b6b3a7640000600e546132c290919063ffffffff16565b905090565b612396612c26565b73ffffffffffffffffffffffffffffffffffffffff166123b4611b7d565b73ffffffffffffffffffffffffffffffffffffffff161461240a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612401906147ac565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000601060009054906101000a900460ff16905090565b61246d612c26565b73ffffffffffffffffffffffffffffffffffffffff1661248b611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906147ac565b60405180910390fd5b80518251146124ef57600080fd5b60005b825181101561254c576125398382815181106125115761251061485e565b5b602002602001015183838151811061252c5761252b61485e565b5b60200260200101516118e2565b808061254490614717565b9150506124f2565b505050565b61256261255c612c26565b83612e2c565b6125a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125989061483e565b60405180910390fd5b6125ad848484846132d8565b50505050565b826008819055508160098190555080600a81905550505050565b6125d5612c26565b73ffffffffffffffffffffffffffffffffffffffff166125f3611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614612649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612640906147ac565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061269882612bba565b6126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614dbf565b60405180910390fd5b60006126e1613334565b90506000815111612701576040518060200160405280600081525061272c565b8061270b846133c6565b60405160200161271c929190614e1b565b6040516020818303038152906040525b915050919050565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606015805461276d90614500565b80601f016020809104026020016040519081016040528092919081815260200182805461279990614500565b80156127e65780601f106127bb576101008083540402835291602001916127e6565b820191906000526020600020905b8154815290600101906020018083116127c957829003601f168201915b5050505050905090565b6000600c54905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128575760019050612864565b6128618383613527565b90505b92915050565b612872612c26565b73ffffffffffffffffffffffffffffffffffffffff16612890611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd906147ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d90614eb1565b60405180910390fd5b61295f816131b4565b50565b61296a612c26565b73ffffffffffffffffffffffffffffffffffffffff16612988611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d5906147ac565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b612a03612c26565b73ffffffffffffffffffffffffffffffffffffffff16612a21611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6e906147ac565b60405180910390fd5b670de0b6b3a764000081612a8b9190614be4565b600e8190555050565b6000806000905060005b8351811015612b4657600f54848281518110612abd57612abc61485e565b5b60200260200101511115612ad057612b33565b6001151560116000868481518110612aeb57612aea61485e565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615151415612b1c57612b33565b612b30600183612ce790919063ffffffff16565b91505b8080612b3e90614717565b915050612a9e565b5080915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ca1836116af565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008183612cf59190614ed1565b905092915050565b6000612d08826116af565b9050612d16816000846135bb565b612d21600083612c2e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d719190614f27565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612e288282604051806020016040528060008152506136a8565b5050565b6000612e3782612bba565b612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d90614fcd565b60405180910390fd5b6000612e81836116af565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ef057508373ffffffffffffffffffffffffffffffffffffffff16612ed884610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f015750612f0081856127fa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f2a826116af565b73ffffffffffffffffffffffffffffffffffffffff1614612f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f779061505f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe7906150f1565b60405180910390fd5b612ffb8383836135bb565b613006600082612c2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130569190614f27565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ad9190614ed1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131706007613703565b600061317c6007613719565b90506000151561318b82612bba565b15151461319757600080fd5b600b548111156131a657600080fd5b6131b08282612e0e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5b60008111156132a85761328d82613166565b6132a160018261372790919063ffffffff16565b905061327b565b5050565b600081836132ba9190614be4565b905092915050565b600081836132d09190615140565b905092915050565b6132e3848484612f0a565b6132ef8484848461373d565b61332e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613325906151e3565b60405180910390fd5b50505050565b60606014805461334390614500565b80601f016020809104026020016040519081016040528092919081815260200182805461336f90614500565b80156133bc5780601f10613391576101008083540402835291602001916133bc565b820191906000526020600020905b81548152906001019060200180831161339f57829003601f168201915b5050505050905090565b6060600082141561340e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613522565b600082905060005b6000821461344057808061342990614717565b915050600a826134399190615140565b9150613416565b60008167ffffffffffffffff81111561345c5761345b613ebc565b5b6040519080825280601f01601f19166020018201604052801561348e5781602001600182028036833780820191505090505b5090505b6000851461351b576001826134a79190614f27565b9150600a856134b69190615203565b60306134c29190614ed1565b60f81b8183815181106134d8576134d761485e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135149190615140565b9450613492565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146136a357601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329780a4e8484846040518463ffffffff1660e01b815260040161367093929190614caa565b600060405180830381600087803b15801561368a57600080fd5b505af115801561369e573d6000803e3d6000fd5b505050505b505050565b6136b283836138d4565b6136bf600084848461373d565b6136fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f5906151e3565b60405180910390fd5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600081836137359190614f27565b905092915050565b600061375e8473ffffffffffffffffffffffffffffffffffffffff16613aa2565b156138c7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613787612c26565b8786866040518563ffffffff1660e01b81526004016137a99493929190615289565b602060405180830381600087803b1580156137c357600080fd5b505af19250505080156137f457506040513d601f19601f820116820180604052508101906137f191906152ea565b60015b613877573d8060008114613824576040519150601f19603f3d011682016040523d82523d6000602084013e613829565b606091505b5060008151141561386f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613866906151e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138cc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393b90615363565b60405180910390fd5b61394d81612bba565b1561398d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613984906153cf565b60405180910390fd5b613999600083836135bb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139e99190614ed1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ac190614500565b90600052602060002090601f016020900481019282613ae35760008555613b2a565b82601f10613afc57805160ff1916838001178555613b2a565b82800160010185558215613b2a579182015b82811115613b29578251825591602001919060010190613b0e565b5b509050613b379190613b3b565b5090565b5b80821115613b54576000816000905550600101613b3c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ba181613b6c565b8114613bac57600080fd5b50565b600081359050613bbe81613b98565b92915050565b600060208284031215613bda57613bd9613b62565b5b6000613be884828501613baf565b91505092915050565b60008115159050919050565b613c0681613bf1565b82525050565b6000602082019050613c216000830184613bfd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c61578082015181840152602081019050613c46565b83811115613c70576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c9282613c27565b613c9c8185613c32565b9350613cac818560208601613c43565b613cb581613c76565b840191505092915050565b60006020820190508181036000830152613cda8184613c87565b905092915050565b6000819050919050565b613cf581613ce2565b8114613d0057600080fd5b50565b600081359050613d1281613cec565b92915050565b600060208284031215613d2e57613d2d613b62565b5b6000613d3c84828501613d03565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7082613d45565b9050919050565b613d8081613d65565b82525050565b6000602082019050613d9b6000830184613d77565b92915050565b613daa81613d65565b8114613db557600080fd5b50565b600081359050613dc781613da1565b92915050565b60008060408385031215613de457613de3613b62565b5b6000613df285828601613db8565b9250506020613e0385828601613d03565b9150509250929050565b613e1681613ce2565b82525050565b6000602082019050613e316000830184613e0d565b92915050565b600080600060608486031215613e5057613e4f613b62565b5b6000613e5e86828701613db8565b9350506020613e6f86828701613db8565b9250506040613e8086828701613d03565b9150509250925092565b600060208284031215613ea057613e9f613b62565b5b6000613eae84828501613db8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ef482613c76565b810181811067ffffffffffffffff82111715613f1357613f12613ebc565b5b80604052505050565b6000613f26613b58565b9050613f328282613eeb565b919050565b600067ffffffffffffffff821115613f5257613f51613ebc565b5b602082029050602081019050919050565b600080fd5b6000613f7b613f7684613f37565b613f1c565b90508083825260208201905060208402830185811115613f9e57613f9d613f63565b5b835b81811015613fc75780613fb38882613d03565b845260208401935050602081019050613fa0565b5050509392505050565b600082601f830112613fe657613fe5613eb7565b5b8135613ff6848260208601613f68565b91505092915050565b60006020828403121561401557614014613b62565b5b600082013567ffffffffffffffff81111561403357614032613b67565b5b61403f84828501613fd1565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406857614067613ebc565b5b61407182613c76565b9050602081019050919050565b82818337600083830152505050565b60006140a061409b8461404d565b613f1c565b9050828152602081018484840111156140bc576140bb614048565b5b6140c784828561407e565b509392505050565b600082601f8301126140e4576140e3613eb7565b5b81356140f484826020860161408d565b91505092915050565b60006020828403121561411357614112613b62565b5b600082013567ffffffffffffffff81111561413157614130613b67565b5b61413d848285016140cf565b91505092915050565b61414f81613bf1565b811461415a57600080fd5b50565b60008135905061416c81614146565b92915050565b60006020828403121561418857614187613b62565b5b60006141968482850161415d565b91505092915050565b600080604083850312156141b6576141b5613b62565b5b60006141c485828601613db8565b92505060206141d58582860161415d565b9150509250929050565b600067ffffffffffffffff8211156141fa576141f9613ebc565b5b602082029050602081019050919050565b600061421e614219846141df565b613f1c565b9050808382526020820190506020840283018581111561424157614240613f63565b5b835b8181101561426a57806142568882613db8565b845260208401935050602081019050614243565b5050509392505050565b600082601f83011261428957614288613eb7565b5b813561429984826020860161420b565b91505092915050565b600080604083850312156142b9576142b8613b62565b5b600083013567ffffffffffffffff8111156142d7576142d6613b67565b5b6142e385828601614274565b925050602083013567ffffffffffffffff81111561430457614303613b67565b5b61431085828601613fd1565b9150509250929050565b600067ffffffffffffffff82111561433557614334613ebc565b5b61433e82613c76565b9050602081019050919050565b600061435e6143598461431a565b613f1c565b90508281526020810184848401111561437a57614379614048565b5b61438584828561407e565b509392505050565b600082601f8301126143a2576143a1613eb7565b5b81356143b284826020860161434b565b91505092915050565b600080600080608085870312156143d5576143d4613b62565b5b60006143e387828801613db8565b94505060206143f487828801613db8565b935050604061440587828801613d03565b925050606085013567ffffffffffffffff81111561442657614425613b67565b5b6144328782880161438d565b91505092959194509250565b60008060006060848603121561445757614456613b62565b5b600061446586828701613d03565b935050602061447686828701613d03565b925050604061448786828701613d03565b9150509250925092565b600080604083850312156144a8576144a7613b62565b5b60006144b685828601613db8565b92505060206144c785828601613db8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061451857607f821691505b6020821081141561452c5761452b6144d1565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061458e602c83613c32565b915061459982614532565b604082019050919050565b600060208201905081810360008301526145bd81614581565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614620602183613c32565b915061462b826145c4565b604082019050919050565b6000602082019050818103600083015261464f81614613565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006146b2603883613c32565b91506146bd82614656565b604082019050919050565b600060208201905081810360008301526146e1816146a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061472282613ce2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614755576147546146e8565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614796602083613c32565b91506147a182614760565b602082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614828603183613c32565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061489c81613da1565b92915050565b6000602082840312156148b8576148b7613b62565b5b60006148c68482850161488d565b91505092915050565b7f4e6f206f776e6572000000000000000000000000000000000000000000000000600082015250565b6000614905600883613c32565b9150614910826148cf565b602082019050919050565b60006020820190508181036000830152614934816148f8565b9050919050565b60008151905061494a81613cec565b92915050565b60006020828403121561496657614965613b62565b5b60006149748482850161493b565b91505092915050565b60006040820190506149926000830185613d77565b61499f6020830184613e0d565b9392505050565b6000815190506149b581614146565b92915050565b6000602082840312156149d1576149d0613b62565b5b60006149df848285016149a6565b91505092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a44602983613c32565b9150614a4f826149e8565b604082019050919050565b60006020820190508181036000830152614a7381614a37565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614ad6602a83613c32565b9150614ae182614a7a565b604082019050919050565b60006020820190508181036000830152614b0581614ac9565b9050919050565b7f6d75737420626520616374697665000000000000000000000000000000000000600082015250565b6000614b42600e83613c32565b9150614b4d82614b0c565b602082019050919050565b60006020820190508181036000830152614b7181614b35565b9050919050565b7f4f766572204d6178204d696e7420706572204164647265737300000000000000600082015250565b6000614bae601983613c32565b9150614bb982614b78565b602082019050919050565b60006020820190508181036000830152614bdd81614ba1565b9050919050565b6000614bef82613ce2565b9150614bfa83613ce2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c3357614c326146e8565b5b828202905092915050565b7f4d736b2062616c616e6365206973206e6f7420656e6f75676800000000000000600082015250565b6000614c74601983613c32565b9150614c7f82614c3e565b602082019050919050565b60006020820190508181036000830152614ca381614c67565b9050919050565b6000606082019050614cbf6000830186613d77565b614ccc6020830185613d77565b614cd96040830184613e0d565b949350505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614d17601983613c32565b9150614d2282614ce1565b602082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614da9602f83613c32565b9150614db482614d4d565b604082019050919050565b60006020820190508181036000830152614dd881614d9c565b9050919050565b600081905092915050565b6000614df582613c27565b614dff8185614ddf565b9350614e0f818560208601613c43565b80840191505092915050565b6000614e278285614dea565b9150614e338284614dea565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e9b602683613c32565b9150614ea682614e3f565b604082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b6000614edc82613ce2565b9150614ee783613ce2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f1c57614f1b6146e8565b5b828201905092915050565b6000614f3282613ce2565b9150614f3d83613ce2565b925082821015614f5057614f4f6146e8565b5b828203905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614fb7602c83613c32565b9150614fc282614f5b565b604082019050919050565b60006020820190508181036000830152614fe681614faa565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615049602983613c32565b915061505482614fed565b604082019050919050565b600060208201905081810360008301526150788161503c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150db602483613c32565b91506150e68261507f565b604082019050919050565b6000602082019050818103600083015261510a816150ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061514b82613ce2565b915061515683613ce2565b92508261516657615165615111565b5b828204905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006151cd603283613c32565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b600061520e82613ce2565b915061521983613ce2565b92508261522957615228615111565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061525b82615234565b615265818561523f565b9350615275818560208601613c43565b61527e81613c76565b840191505092915050565b600060808201905061529e6000830187613d77565b6152ab6020830186613d77565b6152b86040830185613e0d565b81810360608301526152ca8184615250565b905095945050505050565b6000815190506152e481613b98565b92915050565b600060208284031215615300576152ff613b62565b5b600061530e848285016152d5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061534d602083613c32565b915061535882615317565b602082019050919050565b6000602082019050818103600083015261537c81615340565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006153b9601c83613c32565b91506153c482615383565b602082019050919050565b600060208201905081810360008301526153e8816153ac565b905091905056fea2646970667358221220f5599f6123fed3a2fbe2426efc9d2a95809e801cfabe9b198d3544a6b870a5b464736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061035d5760003560e01c806389664e85116101d3578063ace1360c11610104578063e8a3d485116100a2578063f2fde38b1161007c578063f2fde38b14610992578063f46a04eb146109ae578063f4a0a528146109ca578063fe056494146109e65761035d565b8063e8a3d48514610926578063e8fec3f414610944578063e985e9c5146109625761035d565b8063b947b0d8116100de578063b947b0d8146108a0578063c3244cd8146108bc578063c87b56dd146108d8578063dcf53121146109085761035d565b8063ace1360c1461084a578063ad9d81cf14610868578063b88d4fde146108845761035d565b806398f20f6e11610171578063a22cb4651161014b578063a22cb465146107d6578063a34c9262146107f2578063a7f93ebd14610810578063a99349ec1461082e5761035d565b806398f20f6e1461076e5780639e34070f1461078a578063a0712d68146107ba5761035d565b80638da5cb5b116101ad5780638da5cb5b146106fa57806392929a0914610718578063938e3d7b1461073457806395d89b41146107505761035d565b806389664e85146106a25780638c36f0c8146106be5780638d5908a3146106dc5761035d565b80633ccfd60b116102ad57806370a082311161024b5780637ba9c5a5116102255780637ba9c5a51461061c5780637ec5b14f146106385780638049ed0414610668578063861453ca146106845761035d565b806370a08231146105c4578063715018a6146105f457806374f33393146105fe5761035d565b8063443c1feb11610287578063443c1feb1461053e57806355f804b31461055a5780636352211e146105765780636ffd0c97146105a65761035d565b80633ccfd60b146104fc5780633fc9a6461461050657806342842e0e146105225761035d565b806319f389351161031a5780631f471ad0116102f45780631f471ad01461048c57806323b872dd146104a8578063244eec06146104c45780633baf9236146104e05761035d565b806319f38935146104385780631e14d44b146104545780631e8383a8146104705761035d565b806301ffc9a71461036257806306fdde0314610392578063081812fc146103b0578063095ea7b3146103e05780630d011dec146103fc57806318160ddd1461041a575b600080fd5b61037c60048036038101906103779190613bc4565b610a16565b6040516103899190613c0c565b60405180910390f35b61039a610af8565b6040516103a79190613cc0565b60405180910390f35b6103ca60048036038101906103c59190613d18565b610b8a565b6040516103d79190613d86565b60405180910390f35b6103fa60048036038101906103f59190613dcd565b610c0f565b005b610404610d27565b6040516104119190613e1c565b60405180910390f35b610422610d31565b60405161042f9190613e1c565b60405180910390f35b610452600480360381019061044d9190613d18565b610d8a565b005b61046e60048036038101906104699190613d18565b610e10565b005b61048a60048036038101906104859190613d18565b610e96565b005b6104a660048036038101906104a19190613dcd565b610f06565b005b6104c260048036038101906104bd9190613e37565b610f78565b005b6104de60048036038101906104d99190613e8a565b610fd8565b005b6104fa60048036038101906104f59190613fff565b611098565b005b6105046112d9565b005b610520600480360381019061051b9190613e8a565b61149c565b005b61053c60048036038101906105379190613e37565b611573565b005b61055860048036038101906105539190613d18565b611593565b005b610574600480360381019061056f91906140fd565b611619565b005b610590600480360381019061058b9190613d18565b6116af565b60405161059d9190613d86565b60405180910390f35b6105ae611761565b6040516105bb9190613c0c565b60405180910390f35b6105de60048036038101906105d99190613e8a565b611778565b6040516105eb9190613e1c565b60405180910390f35b6105fc611830565b005b6106066118b8565b6040516106139190613d86565b60405180910390f35b61063660048036038101906106319190613dcd565b6118e2565b005b610652600480360381019061064d9190613e8a565b61196c565b60405161065f9190613c0c565b60405180910390f35b610682600480360381019061067d9190613e8a565b6119c2565b005b61068c611a99565b6040516106999190613d86565b60405180910390f35b6106bc60048036038101906106b79190613d18565b611ac3565b005b6106c6611b49565b6040516106d39190613d86565b60405180910390f35b6106e4611b73565b6040516106f19190613e1c565b60405180910390f35b610702611b7d565b60405161070f9190613d86565b60405180910390f35b610732600480360381019061072d9190614172565b611ba7565b005b61074e600480360381019061074991906140fd565b611c40565b005b610758611cd6565b6040516107659190613cc0565b60405180910390f35b61078860048036038101906107839190613e8a565b611d68565b005b6107a4600480360381019061079f9190613d18565b611e28565b6040516107b19190613c0c565b60405180910390f35b6107d460048036038101906107cf9190613d18565b611e52565b005b6107f060048036038101906107eb919061419f565b6121df565b005b6107fa612360565b6040516108079190613e1c565b60405180910390f35b61081861236a565b6040516108259190613e1c565b60405180910390f35b61084860048036038101906108439190613e8a565b61238e565b005b61085261244e565b60405161085f9190613c0c565b60405180910390f35b610882600480360381019061087d91906142a2565b612465565b005b61089e600480360381019061089991906143bb565b612551565b005b6108ba60048036038101906108b5919061443e565b6125b3565b005b6108d660048036038101906108d19190613e8a565b6125cd565b005b6108f260048036038101906108ed9190613d18565b61268d565b6040516108ff9190613cc0565b60405180910390f35b610910612734565b60405161091d9190613d86565b60405180910390f35b61092e61275e565b60405161093b9190613cc0565b60405180910390f35b61094c6127f0565b6040516109599190613e1c565b60405180910390f35b61097c60048036038101906109779190614491565b6127fa565b6040516109899190613c0c565b60405180910390f35b6109ac60048036038101906109a79190613e8a565b61286a565b005b6109c860048036038101906109c39190614172565b612962565b005b6109e460048036038101906109df9190613d18565b6129fb565b005b610a0060048036038101906109fb9190613fff565b612a94565b604051610a0d9190613e1c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af15750610af082612b50565b5b9050919050565b606060008054610b0790614500565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390614500565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b9582612bba565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906145a4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1a826116af565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614636565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caa612c26565b73ffffffffffffffffffffffffffffffffffffffff161480610cd95750610cd881610cd3612c26565b6127fa565b5b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f906146c8565b60405180910390fd5b610d228383612c2e565b505050565b6000600b54905090565b600080600a549050600060095490505b6008548111610d8257610d5381612bba565b15610d6f57610d6c600183612ce790919063ffffffff16565b91505b8080610d7a90614717565b915050610d41565b508091505090565b610d92612c26565b73ffffffffffffffffffffffffffffffffffffffff16610db0611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd906147ac565b60405180910390fd5b80600b8190555050565b610e18612c26565b73ffffffffffffffffffffffffffffffffffffffff16610e36611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906147ac565b60405180910390fd5b80600c8190555050565b6001151560126000610ea6612c26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610efa57600080fd5b610f0381612cfd565b50565b6001151560126000610f16612c26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f6a57600080fd5b610f748282612e0e565b5050565b610f89610f83612c26565b82612e2c565b610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf9061483e565b60405180910390fd5b610fd3838383612f0a565b505050565b610fe0612c26565b73ffffffffffffffffffffffffffffffffffffffff16610ffe611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b906147ac565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060009054906101000a900460ff166110b157600080fd5b6000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b82518110156112d457600f548382815181106110fa576110f961485e565b5b6020026020010151111561110d57600080fd5b60011515601160008584815181106111285761112761485e565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515146112c15761115b612c26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e8584815181106111a05761119f61485e565b5b60200260200101516040518263ffffffff1660e01b81526004016111c49190613e1c565b60206040518083038186803b1580156111dc57600080fd5b505afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121491906148a2565b73ffffffffffffffffffffffffffffffffffffffff161461126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112619061491b565b60405180910390fd5b61127a611275612c26565b613166565b6001601160008584815181106112935761129261485e565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80806112cc90614717565b9150506110db565b505050565b6112e1612c26565b73ffffffffffffffffffffffffffffffffffffffff166112ff611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906147ac565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6113a0611b7d565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113d99190613d86565b60206040518083038186803b1580156113f157600080fd5b505afa158015611405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114299190614950565b6040518363ffffffff1660e01b815260040161144692919061497d565b602060405180830381600087803b15801561146057600080fd5b505af1158015611474573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149891906149bb565b5050565b6114a4612c26565b73ffffffffffffffffffffffffffffffffffffffff166114c2611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f906147ac565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61158e83838360405180602001604052806000815250612551565b505050565b61159b612c26565b73ffffffffffffffffffffffffffffffffffffffff166115b9611b7d565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906147ac565b60405180910390fd5b80600d8190555050565b611621612c26565b73ffffffffffffffffffffffffffffffffffffffff1661163f611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c906147ac565b60405180910390fd5b80601490805190602001906116ab929190613ab5565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614a5a565b60405180910390fd5b80915050919050565b6000601360009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614aec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611838612c26565b73ffffffffffffffffffffffffffffffffffffffff16611856611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a3906147ac565b60405180910390fd5b6118b660006131b4565b565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118ea612c26565b73ffffffffffffffffffffffffffffffffffffffff16611908611b7d565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611955906147ac565b60405180910390fd5b611968828261327a565b5050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119ca612c26565b73ffffffffffffffffffffffffffffffffffffffff166119e8611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a35906147ac565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611acb612c26565b73ffffffffffffffffffffffffffffffffffffffff16611ae9611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b36906147ac565b60405180910390fd5b80600f8190555050565b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611baf612c26565b73ffffffffffffffffffffffffffffffffffffffff16611bcd611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906147ac565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611c48612c26565b73ffffffffffffffffffffffffffffffffffffffff16611c66611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3906147ac565b60405180910390fd5b8060159080519060200190611cd2929190613ab5565b5050565b606060018054611ce590614500565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1190614500565b8015611d5e5780601f10611d3357610100808354040283529160200191611d5e565b820191906000526020600020905b815481529060010190602001808311611d4157829003601f168201915b5050505050905090565b611d70612c26565b73ffffffffffffffffffffffffffffffffffffffff16611d8e611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb906147ac565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006011600083815260200190815260200160002060009054906101000a900460ff169050919050565b601360009054906101000a900460ff16611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890614b58565b60405180910390fd5b60008111611eae57600080fd5b6000611ed282611ec4611ebf612c26565b611778565b612ce790919063ffffffff16565b9050600c54811115611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090614bc4565b60405180910390fd5b6000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231611f66612c26565b6040518263ffffffff1660e01b8152600401611f829190613d86565b60206040518083038186803b158015611f9a57600080fd5b505afa158015611fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd29190614950565b905060008111611fe157600080fd5b82600d5482611ff09190614be4565b1015611ffb57600080fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061203986600e546132ac90919063ffffffff16565b9050808273ffffffffffffffffffffffffffffffffffffffff166370a08231612060612c26565b6040518263ffffffff1660e01b815260040161207c9190613d86565b60206040518083038186803b15801561209457600080fd5b505afa1580156120a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cc9190614950565b101561210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614c8a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd612131612c26565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b815260040161217393929190614caa565b602060405180830381600087803b15801561218d57600080fd5b505af11580156121a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c591906149bb565b506121d76121d1612c26565b8761327a565b505050505050565b6121e7612c26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614d2d565b60405180910390fd5b8060056000612262612c26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661230f612c26565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123549190613c0c565b60405180910390a35050565b6000600f54905090565b6000612389670de0b6b3a7640000600e546132c290919063ffffffff16565b905090565b612396612c26565b73ffffffffffffffffffffffffffffffffffffffff166123b4611b7d565b73ffffffffffffffffffffffffffffffffffffffff161461240a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612401906147ac565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000601060009054906101000a900460ff16905090565b61246d612c26565b73ffffffffffffffffffffffffffffffffffffffff1661248b611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906147ac565b60405180910390fd5b80518251146124ef57600080fd5b60005b825181101561254c576125398382815181106125115761251061485e565b5b602002602001015183838151811061252c5761252b61485e565b5b60200260200101516118e2565b808061254490614717565b9150506124f2565b505050565b61256261255c612c26565b83612e2c565b6125a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125989061483e565b60405180910390fd5b6125ad848484846132d8565b50505050565b826008819055508160098190555080600a81905550505050565b6125d5612c26565b73ffffffffffffffffffffffffffffffffffffffff166125f3611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614612649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612640906147ac565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061269882612bba565b6126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614dbf565b60405180910390fd5b60006126e1613334565b90506000815111612701576040518060200160405280600081525061272c565b8061270b846133c6565b60405160200161271c929190614e1b565b6040516020818303038152906040525b915050919050565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606015805461276d90614500565b80601f016020809104026020016040519081016040528092919081815260200182805461279990614500565b80156127e65780601f106127bb576101008083540402835291602001916127e6565b820191906000526020600020905b8154815290600101906020018083116127c957829003601f168201915b5050505050905090565b6000600c54905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128575760019050612864565b6128618383613527565b90505b92915050565b612872612c26565b73ffffffffffffffffffffffffffffffffffffffff16612890611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd906147ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d90614eb1565b60405180910390fd5b61295f816131b4565b50565b61296a612c26565b73ffffffffffffffffffffffffffffffffffffffff16612988611b7d565b73ffffffffffffffffffffffffffffffffffffffff16146129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d5906147ac565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b612a03612c26565b73ffffffffffffffffffffffffffffffffffffffff16612a21611b7d565b73ffffffffffffffffffffffffffffffffffffffff1614612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6e906147ac565b60405180910390fd5b670de0b6b3a764000081612a8b9190614be4565b600e8190555050565b6000806000905060005b8351811015612b4657600f54848281518110612abd57612abc61485e565b5b60200260200101511115612ad057612b33565b6001151560116000868481518110612aeb57612aea61485e565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615151415612b1c57612b33565b612b30600183612ce790919063ffffffff16565b91505b8080612b3e90614717565b915050612a9e565b5080915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ca1836116af565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008183612cf59190614ed1565b905092915050565b6000612d08826116af565b9050612d16816000846135bb565b612d21600083612c2e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d719190614f27565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612e288282604051806020016040528060008152506136a8565b5050565b6000612e3782612bba565b612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d90614fcd565b60405180910390fd5b6000612e81836116af565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ef057508373ffffffffffffffffffffffffffffffffffffffff16612ed884610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f015750612f0081856127fa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f2a826116af565b73ffffffffffffffffffffffffffffffffffffffff1614612f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f779061505f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe7906150f1565b60405180910390fd5b612ffb8383836135bb565b613006600082612c2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130569190614f27565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ad9190614ed1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131706007613703565b600061317c6007613719565b90506000151561318b82612bba565b15151461319757600080fd5b600b548111156131a657600080fd5b6131b08282612e0e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5b60008111156132a85761328d82613166565b6132a160018261372790919063ffffffff16565b905061327b565b5050565b600081836132ba9190614be4565b905092915050565b600081836132d09190615140565b905092915050565b6132e3848484612f0a565b6132ef8484848461373d565b61332e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613325906151e3565b60405180910390fd5b50505050565b60606014805461334390614500565b80601f016020809104026020016040519081016040528092919081815260200182805461336f90614500565b80156133bc5780601f10613391576101008083540402835291602001916133bc565b820191906000526020600020905b81548152906001019060200180831161339f57829003601f168201915b5050505050905090565b6060600082141561340e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613522565b600082905060005b6000821461344057808061342990614717565b915050600a826134399190615140565b9150613416565b60008167ffffffffffffffff81111561345c5761345b613ebc565b5b6040519080825280601f01601f19166020018201604052801561348e5781602001600182028036833780820191505090505b5090505b6000851461351b576001826134a79190614f27565b9150600a856134b69190615203565b60306134c29190614ed1565b60f81b8183815181106134d8576134d761485e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135149190615140565b9450613492565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146136a357601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329780a4e8484846040518463ffffffff1660e01b815260040161367093929190614caa565b600060405180830381600087803b15801561368a57600080fd5b505af115801561369e573d6000803e3d6000fd5b505050505b505050565b6136b283836138d4565b6136bf600084848461373d565b6136fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f5906151e3565b60405180910390fd5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600081836137359190614f27565b905092915050565b600061375e8473ffffffffffffffffffffffffffffffffffffffff16613aa2565b156138c7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613787612c26565b8786866040518563ffffffff1660e01b81526004016137a99493929190615289565b602060405180830381600087803b1580156137c357600080fd5b505af19250505080156137f457506040513d601f19601f820116820180604052508101906137f191906152ea565b60015b613877573d8060008114613824576040519150601f19603f3d011682016040523d82523d6000602084013e613829565b606091505b5060008151141561386f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613866906151e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138cc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393b90615363565b60405180910390fd5b61394d81612bba565b1561398d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613984906153cf565b60405180910390fd5b613999600083836135bb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139e99190614ed1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ac190614500565b90600052602060002090601f016020900481019282613ae35760008555613b2a565b82601f10613afc57805160ff1916838001178555613b2a565b82800160010185558215613b2a579182015b82811115613b29578251825591602001919060010190613b0e565b5b509050613b379190613b3b565b5090565b5b80821115613b54576000816000905550600101613b3c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ba181613b6c565b8114613bac57600080fd5b50565b600081359050613bbe81613b98565b92915050565b600060208284031215613bda57613bd9613b62565b5b6000613be884828501613baf565b91505092915050565b60008115159050919050565b613c0681613bf1565b82525050565b6000602082019050613c216000830184613bfd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c61578082015181840152602081019050613c46565b83811115613c70576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c9282613c27565b613c9c8185613c32565b9350613cac818560208601613c43565b613cb581613c76565b840191505092915050565b60006020820190508181036000830152613cda8184613c87565b905092915050565b6000819050919050565b613cf581613ce2565b8114613d0057600080fd5b50565b600081359050613d1281613cec565b92915050565b600060208284031215613d2e57613d2d613b62565b5b6000613d3c84828501613d03565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7082613d45565b9050919050565b613d8081613d65565b82525050565b6000602082019050613d9b6000830184613d77565b92915050565b613daa81613d65565b8114613db557600080fd5b50565b600081359050613dc781613da1565b92915050565b60008060408385031215613de457613de3613b62565b5b6000613df285828601613db8565b9250506020613e0385828601613d03565b9150509250929050565b613e1681613ce2565b82525050565b6000602082019050613e316000830184613e0d565b92915050565b600080600060608486031215613e5057613e4f613b62565b5b6000613e5e86828701613db8565b9350506020613e6f86828701613db8565b9250506040613e8086828701613d03565b9150509250925092565b600060208284031215613ea057613e9f613b62565b5b6000613eae84828501613db8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ef482613c76565b810181811067ffffffffffffffff82111715613f1357613f12613ebc565b5b80604052505050565b6000613f26613b58565b9050613f328282613eeb565b919050565b600067ffffffffffffffff821115613f5257613f51613ebc565b5b602082029050602081019050919050565b600080fd5b6000613f7b613f7684613f37565b613f1c565b90508083825260208201905060208402830185811115613f9e57613f9d613f63565b5b835b81811015613fc75780613fb38882613d03565b845260208401935050602081019050613fa0565b5050509392505050565b600082601f830112613fe657613fe5613eb7565b5b8135613ff6848260208601613f68565b91505092915050565b60006020828403121561401557614014613b62565b5b600082013567ffffffffffffffff81111561403357614032613b67565b5b61403f84828501613fd1565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406857614067613ebc565b5b61407182613c76565b9050602081019050919050565b82818337600083830152505050565b60006140a061409b8461404d565b613f1c565b9050828152602081018484840111156140bc576140bb614048565b5b6140c784828561407e565b509392505050565b600082601f8301126140e4576140e3613eb7565b5b81356140f484826020860161408d565b91505092915050565b60006020828403121561411357614112613b62565b5b600082013567ffffffffffffffff81111561413157614130613b67565b5b61413d848285016140cf565b91505092915050565b61414f81613bf1565b811461415a57600080fd5b50565b60008135905061416c81614146565b92915050565b60006020828403121561418857614187613b62565b5b60006141968482850161415d565b91505092915050565b600080604083850312156141b6576141b5613b62565b5b60006141c485828601613db8565b92505060206141d58582860161415d565b9150509250929050565b600067ffffffffffffffff8211156141fa576141f9613ebc565b5b602082029050602081019050919050565b600061421e614219846141df565b613f1c565b9050808382526020820190506020840283018581111561424157614240613f63565b5b835b8181101561426a57806142568882613db8565b845260208401935050602081019050614243565b5050509392505050565b600082601f83011261428957614288613eb7565b5b813561429984826020860161420b565b91505092915050565b600080604083850312156142b9576142b8613b62565b5b600083013567ffffffffffffffff8111156142d7576142d6613b67565b5b6142e385828601614274565b925050602083013567ffffffffffffffff81111561430457614303613b67565b5b61431085828601613fd1565b9150509250929050565b600067ffffffffffffffff82111561433557614334613ebc565b5b61433e82613c76565b9050602081019050919050565b600061435e6143598461431a565b613f1c565b90508281526020810184848401111561437a57614379614048565b5b61438584828561407e565b509392505050565b600082601f8301126143a2576143a1613eb7565b5b81356143b284826020860161434b565b91505092915050565b600080600080608085870312156143d5576143d4613b62565b5b60006143e387828801613db8565b94505060206143f487828801613db8565b935050604061440587828801613d03565b925050606085013567ffffffffffffffff81111561442657614425613b67565b5b6144328782880161438d565b91505092959194509250565b60008060006060848603121561445757614456613b62565b5b600061446586828701613d03565b935050602061447686828701613d03565b925050604061448786828701613d03565b9150509250925092565b600080604083850312156144a8576144a7613b62565b5b60006144b685828601613db8565b92505060206144c785828601613db8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061451857607f821691505b6020821081141561452c5761452b6144d1565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061458e602c83613c32565b915061459982614532565b604082019050919050565b600060208201905081810360008301526145bd81614581565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614620602183613c32565b915061462b826145c4565b604082019050919050565b6000602082019050818103600083015261464f81614613565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006146b2603883613c32565b91506146bd82614656565b604082019050919050565b600060208201905081810360008301526146e1816146a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061472282613ce2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614755576147546146e8565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614796602083613c32565b91506147a182614760565b602082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614828603183613c32565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061489c81613da1565b92915050565b6000602082840312156148b8576148b7613b62565b5b60006148c68482850161488d565b91505092915050565b7f4e6f206f776e6572000000000000000000000000000000000000000000000000600082015250565b6000614905600883613c32565b9150614910826148cf565b602082019050919050565b60006020820190508181036000830152614934816148f8565b9050919050565b60008151905061494a81613cec565b92915050565b60006020828403121561496657614965613b62565b5b60006149748482850161493b565b91505092915050565b60006040820190506149926000830185613d77565b61499f6020830184613e0d565b9392505050565b6000815190506149b581614146565b92915050565b6000602082840312156149d1576149d0613b62565b5b60006149df848285016149a6565b91505092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a44602983613c32565b9150614a4f826149e8565b604082019050919050565b60006020820190508181036000830152614a7381614a37565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614ad6602a83613c32565b9150614ae182614a7a565b604082019050919050565b60006020820190508181036000830152614b0581614ac9565b9050919050565b7f6d75737420626520616374697665000000000000000000000000000000000000600082015250565b6000614b42600e83613c32565b9150614b4d82614b0c565b602082019050919050565b60006020820190508181036000830152614b7181614b35565b9050919050565b7f4f766572204d6178204d696e7420706572204164647265737300000000000000600082015250565b6000614bae601983613c32565b9150614bb982614b78565b602082019050919050565b60006020820190508181036000830152614bdd81614ba1565b9050919050565b6000614bef82613ce2565b9150614bfa83613ce2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c3357614c326146e8565b5b828202905092915050565b7f4d736b2062616c616e6365206973206e6f7420656e6f75676800000000000000600082015250565b6000614c74601983613c32565b9150614c7f82614c3e565b602082019050919050565b60006020820190508181036000830152614ca381614c67565b9050919050565b6000606082019050614cbf6000830186613d77565b614ccc6020830185613d77565b614cd96040830184613e0d565b949350505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614d17601983613c32565b9150614d2282614ce1565b602082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614da9602f83613c32565b9150614db482614d4d565b604082019050919050565b60006020820190508181036000830152614dd881614d9c565b9050919050565b600081905092915050565b6000614df582613c27565b614dff8185614ddf565b9350614e0f818560208601613c43565b80840191505092915050565b6000614e278285614dea565b9150614e338284614dea565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e9b602683613c32565b9150614ea682614e3f565b604082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b6000614edc82613ce2565b9150614ee783613ce2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f1c57614f1b6146e8565b5b828201905092915050565b6000614f3282613ce2565b9150614f3d83613ce2565b925082821015614f5057614f4f6146e8565b5b828203905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614fb7602c83613c32565b9150614fc282614f5b565b604082019050919050565b60006020820190508181036000830152614fe681614faa565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615049602983613c32565b915061505482614fed565b604082019050919050565b600060208201905081810360008301526150788161503c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150db602483613c32565b91506150e68261507f565b604082019050919050565b6000602082019050818103600083015261510a816150ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061514b82613ce2565b915061515683613ce2565b92508261516657615165615111565b5b828204905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006151cd603283613c32565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b600061520e82613ce2565b915061521983613ce2565b92508261522957615228615111565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061525b82615234565b615265818561523f565b9350615275818560208601613c43565b61527e81613c76565b840191505092915050565b600060808201905061529e6000830187613d77565b6152ab6020830186613d77565b6152b86040830185613e0d565b81810360608301526152ca8184615250565b905095945050505050565b6000815190506152e481613b98565b92915050565b600060208284031215615300576152ff613b62565b5b600061530e848285016152d5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061534d602083613c32565b915061535882615317565b602082019050919050565b6000602082019050818103600083015261537c81615340565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006153b9601c83613c32565b91506153c482615383565b602082019050919050565b600060208201905081810360008301526153e8816153ac565b905091905056fea2646970667358221220f5599f6123fed3a2fbe2426efc9d2a95809e801cfabe9b198d3544a6b870a5b464736f6c63430008090033

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.