ETH Price: $3,355.29 (-2.87%)
Gas: 2 Gwei

Token

PARAGONS (PARAGONS)
 

Overview

Max Total Supply

2,667 PARAGONS

Holders

689

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
sweetbabyburgs.eth
Balance
9 PARAGONS
0x09c603bcbd13a5c3a02fde8de63670ab5430643d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Paragons

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

// @title: Paragons
// @author: Paradox

//      ___
//    / __ \ ____ __________ _____ _____  ____  ____
//  / /_/  / __ `/ ___/ __ `/ __ `/ __ \/ __ \/ ___/
// / ____/ /_/ / /  / /_/ / /_/ / /_/ / / / (__  )
//_/    \__,_/_/   \__,_/\__, /\____/_/ /_/____/
//                     /____/


pragma solidity ^0.8.4;

import '@openzeppelin/contracts/utils/Counters.sol';
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';

contract Paragons is ERC721Enumerable, Ownable, ReentrancyGuard {

    using ECDSA for bytes32;
    using Counters for Counters.Counter;
    using Address for address payable;

    Counters.Counter private _tokenIds;

    enum State {
        Setup,
        PreSale,
        Sale,
        Pause
    }

    State private state;

    address private _signer;

    uint256 public constant MAX_PARAGONS = 9424;
    uint256 public constant MAX_PURCHASE_PER_TX = 5;
    uint256 public constant AMOUNT_RESERVED = 400;
    uint256 public RESERVED_AMOUNT_MINTED = 0;
    uint256 public constant PARAGON_PRICE = 0.15 ether;

    mapping(bytes => bool) public usedToken;
    mapping(address => uint) public presaleMinted;

    address payable[] private _communityWallet = [payable(address(0x001394722c2eAC08767bEB7DE6fdBcADe2c43483))];
    address payable[] private _artistWallet = [payable(address(0x7953319DeEdCEbD8ef845bC9Ea1cdfA08A29228a))];
    address payable[] private _devWallets = [payable(address(0x1110F53856674AAeCE08309530aBBE86138a1450)), payable(address(0x930CbFFA8361fFca05f70aA2B39B189B4EAE302f))];
    address payable[] private _marketingWallets = [payable(address(0xCac83515113e9Ece5CF63c4FA7BF1a0e79ab5B72)), payable(address(0xe4bae9B138f84a420F41a9238a491e16F50563eb)), payable(address(0x0d96C944ff359B12De16e1bCFe43985b6FB8C7B4)), payable(address(0x79a0Ba15C7bF6BE94Ee74BA053DE73b4Bd4C508C))];
    address payable[] private _advisorWallet = [payable(address(0x054838FB00e7B33318B43fC9511eABFED192652b))];

    event Minted(address minter, uint256 amount);
    event StateChanged(State state);
    event BaseURIChanged(string newBaseURI);
    event SignerChanged(address signer);

    string public baseURI;

    constructor(address signer) ERC721("PARAGONS","PARAGONS") {
        _signer = signer;
    }

    function _hash(string calldata salt, address _address, uint amount, uint allowedAmount) internal view returns (bytes32){
        return keccak256(abi.encode(salt, address(this), _address, amount, allowedAmount));
    }

    function _verify(bytes32 hash, bytes memory token) internal view returns (bool){
        return (_recover(hash, token) == _signer);
    }

    function _recover(bytes32 hash, bytes memory token) internal pure returns (address){
        return hash.toEthSignedMessageHash().recover(token);
    }

    function setState(State _state) external onlyOwner {
        state = _state;
        emit StateChanged(state);
    }

    function getState() public view returns (State) {
        return state;
    }

    function mintReserve(address reserveAddress, uint amount) public onlyOwner {
        require(RESERVED_AMOUNT_MINTED + amount <= AMOUNT_RESERVED, "Reserved Amount is over the reserve limit.");
        for(uint256 i = 0; i < amount; i++) {
            _safeMint(reserveAddress, _tokenIds.current());
            _tokenIds.increment();
        }
        RESERVED_AMOUNT_MINTED += amount;
    }

    function presaleMint(string calldata salt, bytes calldata token, uint256 amount, uint allowedAmount) external payable nonReentrant {
        require(state == State.PreSale, 'Presale is not active.');
        require(!Address.isContract(msg.sender), 'Contracts are not allowed to mint.');
        require(presaleMinted[msg.sender] + amount <= allowedAmount, 'The wallet is trying to mint more than allowed.');
        require(_tokenIds.current() + amount <= MAX_PARAGONS, 'Amount should not exceed max supply of tokens.');
        require(_verify(_hash(salt, msg.sender, amount, allowedAmount), token), 'Invalid token.');
        require(msg.value >= PARAGON_PRICE, 'Ether value sent is incorrect.');

        for (uint256 i = 0; i < amount; i++) {
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            _tokenIds.increment();
        }
        presaleMinted[msg.sender] += amount;
        emit Minted(msg.sender, amount);
    }

    function mint(string calldata salt, bytes calldata token, uint256 amount) external payable nonReentrant {
        require(state == State.Sale, 'Sale is not active.');
        require(!Address.isContract(msg.sender), 'Contracts are not allowed to mint.');
        require(amount <= MAX_PURCHASE_PER_TX, 'Amount should not exceed Max purchase per transaction.');
        require(_tokenIds.current() + amount <= MAX_PARAGONS, 'Amount should not exceed max supply of tokens.');
        require(msg.value >= PARAGON_PRICE * amount, 'Ether value sent is incorrect.');
        require(_verify(_hash(salt, msg.sender, amount, MAX_PURCHASE_PER_TX), token), 'Invalid token.');
        require(!usedToken[token], 'The token has been used.');

        for (uint256 i = 0; i < amount; i++) {
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            _tokenIds.increment();
        }

        usedToken[token] = true;
        emit Minted(msg.sender, amount);
    }

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

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

     function withdrawAllEth() public virtual onlyOwner {
         uint256 currentBalance = address(this).balance;
         uint8 communityPercent = 10;
         uint8 artistPercent = 16;
         uint8 devPercent = 15;
         uint8 marketingPercent = 10;
         uint8 advisorPercent = 4;
         _artistWallet[0].transfer(currentBalance * artistPercent / 100);
        for(uint8 i = 0; i < _devWallets.length; i++) {
            _devWallets[i].transfer(currentBalance * devPercent / 100);
        }
        for(uint8 i = 0; i < _marketingWallets.length; i++) {
            _marketingWallets[i].transfer(currentBalance * marketingPercent / 100);
        }
         _communityWallet[0].transfer(currentBalance * communityPercent / 100);
         _advisorWallet[0].transfer(currentBalance * advisorPercent / 100);
     }

    function setSigner(address signer) external onlyOwner {
        _signer = signer;
        emit SignerChanged(signer);
    }
}

File 2 of 16 : 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 3 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 16 : 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 5 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 6 of 16 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 7 of 16 : 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 8 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : 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 15 of 16 : 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 16 of 16 : 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":[{"internalType":"address","name":"signer","type":"address"}],"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum Paragons.State","name":"state","type":"uint8"}],"name":"StateChanged","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":[],"name":"AMOUNT_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PARAGONS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARAGON_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_AMOUNT_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getState","outputs":[{"internalType":"enum Paragons.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"reserveAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReserve","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":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"allowedAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Paragons.State","name":"_state","type":"uint8"}],"name":"setState","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"usedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAllEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600e556040518060200160405280721394722c2eac08767beb7de6fdbcade2c4348373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506011906001620000699291906200051b565b506040518060200160405280737953319deedcebd8ef845bc9ea1cdfa08a29228a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506012906001620000cb9291906200051b565b506040518060400160405280731110f53856674aaece08309530abbe86138a145073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173930cbffa8361ffca05f70aa2b39b189b4eae302f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601390600262000173929190620005aa565b50604051806080016040528073cac83515113e9ece5cf63c4fa7bf1a0e79ab5b7273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173e4bae9b138f84a420f41a9238a491e16f50563eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001730d96c944ff359b12de16e1bcfe43985b6fb8c7b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017379a0ba15c7bf6be94ee74ba053de73b4bd4c508c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506014906004620002a792919062000639565b50604051806020016040528073054838fb00e7b33318b43fc9511eabfed192652b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506015906001620003099291906200051b565b503480156200031757600080fd5b506040516200666c3803806200666c83398181016040528101906200033d91906200078f565b6040518060400160405280600881526020017f50415241474f4e530000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f50415241474f4e530000000000000000000000000000000000000000000000008152508160009080519060200190620003c1929190620006c8565b508060019080519060200190620003da929190620006c8565b505050620003fd620003f16200044d60201b60201c565b6200045560201b60201c565b6001600b8190555080600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200086e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000597579160200282015b82811115620005965782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200053c565b5b509050620005a6919062000759565b5090565b82805482825590600052602060002090810192821562000626579160200282015b82811115620006255782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620005cb565b5b50905062000635919062000759565b5090565b828054828255906000526020600020908101928215620006b5579160200282015b82811115620006b45782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200065a565b5b509050620006c4919062000759565b5090565b828054620006d690620007ef565b90600052602060002090601f016020900481019282620006fa576000855562000746565b82601f106200071557805160ff191683800117855562000746565b8280016001018555821562000746579182015b828111156200074557825182559160200191906001019062000728565b5b50905062000755919062000759565b5090565b5b80821115620007745760008160009055506001016200075a565b5090565b600081519050620007898162000854565b92915050565b600060208284031215620007a257600080fd5b6000620007b28482850162000778565b91505092915050565b6000620007c882620007cf565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200080857607f821691505b602082108114156200081f576200081e62000825565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200085f81620007bb565b81146200086b57600080fd5b50565b615dee806200087e6000396000f3fe6080604052600436106102045760003560e01c806356de96db116101185780638e825be0116100a0578063bc660cac1161006f578063bc660cac14610727578063c87b56dd14610764578063cd9f9b92146107a1578063e985e9c5146107de578063f2fde38b1461081b57610204565b80638e825be01461068157806395d89b41146106aa578063a22cb465146106d5578063b88d4fde146106fe57610204565b80637032e193116100e75780637032e193146105ac57806370a08231146105d7578063715018a61461061457806386f3cbe21461062b5780638da5cb5b1461065657610204565b806356de96db146104f25780636352211e1461051b5780636c0360eb146105585780636c19e7831461058357610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146104305780634a2728ab146104595780634f6ccce714610475578063519af30e146104b257806355f804b3146104c957610204565b806323b872dd146103745780632f745c591461039d5780633abc1a44146103da5780633f1cccf31461040557610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780631865c57d1461032d57806320c158e81461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063093512f7146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061414b565b610844565b60405161023d9190614a98565b60405180910390f35b34801561025257600080fd5b5061025b6108be565b6040516102689190614b93565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190614370565b610950565b6040516102a59190614a08565b60405180910390f35b3480156102ba57600080fd5b506102c36109d5565b6040516102d09190614fd5565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061410f565b6109e1565b005b34801561030e57600080fd5b50610317610af9565b6040516103249190614fd5565b60405180910390f35b34801561033957600080fd5b50610342610b06565b60405161034f9190614af8565b60405180910390f35b610372600480360381019061036d91906142d5565b610b1d565b005b34801561038057600080fd5b5061039b60048036038101906103969190614009565b610f21565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061410f565b610f81565b6040516103d19190614fd5565b60405180910390f35b3480156103e657600080fd5b506103ef611026565b6040516103fc9190614fd5565b60405180910390f35b34801561041157600080fd5b5061041a61102b565b6040516104279190614fd5565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190614009565b611031565b005b610473600480360381019061046e919061424c565b611051565b005b34801561048157600080fd5b5061049c60048036038101906104979190614370565b611468565b6040516104a99190614fd5565b60405180910390f35b3480156104be57600080fd5b506104c76114ff565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190614207565b6119d6565b005b3480156104fe57600080fd5b50610519600480360381019061051491906141de565b611aa1565b005b34801561052757600080fd5b50610542600480360381019061053d9190614370565b611bb6565b60405161054f9190614a08565b60405180910390f35b34801561056457600080fd5b5061056d611c68565b60405161057a9190614b93565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613fa4565b611cf6565b005b3480156105b857600080fd5b506105c1611ded565b6040516105ce9190614fd5565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613fa4565b611df3565b60405161060b9190614fd5565b60405180910390f35b34801561062057600080fd5b50610629611eab565b005b34801561063757600080fd5b50610640611f33565b60405161064d9190614fd5565b60405180910390f35b34801561066257600080fd5b5061066b611f39565b6040516106789190614a08565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a3919061410f565b611f63565b005b3480156106b657600080fd5b506106bf61208a565b6040516106cc9190614b93565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906140d3565b61211c565b005b34801561070a57600080fd5b5061072560048036038101906107209190614058565b61229d565b005b34801561073357600080fd5b5061074e60048036038101906107499190613fa4565b6122ff565b60405161075b9190614fd5565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190614370565b612317565b6040516107989190614b93565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c3919061419d565b6123be565b6040516107d59190614a98565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190613fcd565b6123f4565b6040516108129190614a98565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613fa4565b612488565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b757506108b682612580565b5b9050919050565b6060600080546108cd9061529b565b80601f01602080910402602001604051908101604052809291908181526020018280546108f99061529b565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095b82612662565b61099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190614df5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b670214e8348c4f000081565b60006109ec82611bb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490614ef5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7c6126ce565b73ffffffffffffffffffffffffffffffffffffffff161480610aab5750610aaa81610aa56126ce565b6123f4565b5b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190614d55565b60405180910390fd5b610af483836126d6565b505050565b6000600880549050905090565b6000600d60009054906101000a900460ff16905090565b6002600b541415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90614fb5565b60405180910390fd5b6002600b8190555060016003811115610ba5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600d60009054906101000a900460ff166003811115610bed577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490614f95565b60405180910390fd5b610c363361278f565b15610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90614f35565b60405180910390fd5b8082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc29190615094565b1115610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90614bd5565b60405180910390fd5b6124d082610d11600c6127a2565b610d1b9190615094565b1115610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390614e55565b60405180910390fd5b610db6610d6c87873386866127b0565b85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506127ee565b610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90614c95565b60405180910390fd5b670214e8348c4f0000341015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614f15565b60405180910390fd5b60005b82811015610e81576000610e57600c6127a2565b9050610e633382612852565b610e6d600c612870565b508080610e79906152fe565b915050610e43565b5081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed19190615094565b925050819055507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3383604051610f09929190614a6f565b60405180910390a16001600b81905550505050505050565b610f32610f2c6126ce565b82612886565b610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614f55565b60405180910390fd5b610f7c838383612964565b505050565b6000610f8c83611df3565b8210610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490614c15565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600581565b61019081565b61104c8383836040518060200160405280600081525061229d565b505050565b6002600b541415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90614fb5565b60405180910390fd5b6002600b81905550600260038111156110d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600d60009054906101000a900460ff166003811115611121577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890614ed5565b60405180910390fd5b61116a3361278f565b156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190614f35565b60405180910390fd5b60058111156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590614eb5565b60405180910390fd5b6124d0816111fc600c6127a2565b6112069190615094565b1115611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614e55565b60405180910390fd5b80670214e8348c4f000061125b919061511b565b34101561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490614f15565b60405180910390fd5b6112f86112ae8686338560056127b0565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506127ee565b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90614c95565b60405180910390fd5b600f83836040516113499291906149a5565b908152602001604051809103902060009054906101000a900460ff16156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614e15565b60405180910390fd5b60005b818110156113e65760006113bc600c6127a2565b90506113c83382612852565b6113d2600c612870565b5080806113de906152fe565b9150506113a8565b506001600f84846040516113fb9291906149a5565b908152602001604051809103902060006101000a81548160ff0219169083151502179055507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611451929190614a6f565b60405180910390a16001600b819055505050505050565b6000611472610af9565b82106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614f75565b60405180910390fd5b600882815481106114ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115076126ce565b73ffffffffffffffffffffffffffffffffffffffff16611525611f39565b73ffffffffffffffffffffffffffffffffffffffff161461157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290614e35565b60405180910390fd5b60004790506000600a90506000601090506000600f90506000600a905060006004905060126000815481106115d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648660ff168961162e919061511b565b61163891906150ea565b9081150290604051600060405180830381858888f19350505050158015611663573d6000803e3d6000fd5b5060005b6013805490508160ff1610156117525760138160ff16815481106116b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648660ff168a611709919061511b565b61171391906150ea565b9081150290604051600060405180830381858888f1935050505015801561173e573d6000803e3d6000fd5b50808061174a90615347565b915050611667565b5060005b6014805490508160ff1610156118415760148160ff16815481106117a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648560ff168a6117f8919061511b565b61180291906150ea565b9081150290604051600060405180830381858888f1935050505015801561182d573d6000803e3d6000fd5b50808061183990615347565b915050611756565b50601160008154811061187d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648760ff16896118d2919061511b565b6118dc91906150ea565b9081150290604051600060405180830381858888f19350505050158015611907573d6000803e3d6000fd5b506015600081548110611943577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648360ff1689611998919061511b565b6119a291906150ea565b9081150290604051600060405180830381858888f193505050501580156119cd573d6000803e3d6000fd5b50505050505050565b6119de6126ce565b73ffffffffffffffffffffffffffffffffffffffff166119fc611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990614e35565b60405180910390fd5b818160169190611a63929190613d87565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611a95929190614b13565b60405180910390a15050565b611aa96126ce565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490614e35565b60405180910390fd5b80600d60006101000a81548160ff02191690836003811115611b68577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600d60009054906101000a900460ff16604051611bab9190614af8565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690614d95565b60405180910390fd5b80915050919050565b60168054611c759061529b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca19061529b565b8015611cee5780601f10611cc357610100808354040283529160200191611cee565b820191906000526020600020905b815481529060010190602001808311611cd157829003601f168201915b505050505081565b611cfe6126ce565b73ffffffffffffffffffffffffffffffffffffffff16611d1c611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990614e35565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5719a5656c5cfdaafa148ecf366fd3b0a7fae06449ce2a46225977fb7417e29d81604051611de29190614a08565b60405180910390a150565b6124d081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90614d75565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611eb36126ce565b73ffffffffffffffffffffffffffffffffffffffff16611ed1611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614e35565b60405180910390fd5b611f316000612bc0565b565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f6b6126ce565b73ffffffffffffffffffffffffffffffffffffffff16611f89611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614e35565b60405180910390fd5b61019081600e54611ff09190615094565b1115612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614d35565b60405180910390fd5b60005b8181101561206c5761204f8361204a600c6127a2565b612852565b612059600c612870565b8080612064906152fe565b915050612034565b5080600e600082825461207f9190615094565b925050819055505050565b6060600180546120999061529b565b80601f01602080910402602001604051908101604052809291908181526020018280546120c59061529b565b80156121125780601f106120e757610100808354040283529160200191612112565b820191906000526020600020905b8154815290600101906020018083116120f557829003601f168201915b5050505050905090565b6121246126ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990614cd5565b60405180910390fd5b806005600061219f6126ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661224c6126ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122919190614a98565b60405180910390a35050565b6122ae6122a86126ce565b83612886565b6122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490614f55565b60405180910390fd5b6122f984848484612c86565b50505050565b60106020528060005260406000206000915090505481565b606061232282612662565b612361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235890614e95565b60405180910390fd5b600061236b612ce2565b9050600081511161238b57604051806020016040528060008152506123b6565b8061239584612d74565b6040516020016123a69291906149be565b6040516020818303038152906040525b915050919050565b600f818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124906126ce565b73ffffffffffffffffffffffffffffffffffffffff166124ae611f39565b73ffffffffffffffffffffffffffffffffffffffff1614612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614e35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614c55565b60405180910390fd5b61257d81612bc0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061265b575061265a82612f21565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661274983611bb6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080823b905060008111915050919050565b600081600001549050919050565b60008585308686866040516020016127cd96959493929190614b37565b60405160208183030381529060405280519060200120905095945050505050565b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128338484612f8b565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b61286c828260405180602001604052806000815250612fb0565b5050565b6001816000016000828254019250508190555050565b600061289182612662565b6128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c790614d15565b60405180910390fd5b60006128db83611bb6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061294a57508373ffffffffffffffffffffffffffffffffffffffff1661293284610950565b73ffffffffffffffffffffffffffffffffffffffff16145b8061295b575061295a81856123f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661298482611bb6565b73ffffffffffffffffffffffffffffffffffffffff16146129da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d190614e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614cb5565b60405180910390fd5b612a5583838361300b565b612a606000826126d6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ab09190615175565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b079190615094565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c91848484612964565b612c9d8484848461311f565b612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd390614c35565b60405180910390fd5b50505050565b606060168054612cf19061529b565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1d9061529b565b8015612d6a5780601f10612d3f57610100808354040283529160200191612d6a565b820191906000526020600020905b815481529060010190602001808311612d4d57829003601f168201915b5050505050905090565b60606000821415612dbc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f1c565b600082905060005b60008214612dee578080612dd7906152fe565b915050600a82612de791906150ea565b9150612dc4565b60008167ffffffffffffffff811115612e30577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e625781602001600182028036833780820191505090505b5090505b60008514612f1557600182612e7b9190615175565b9150600a85612e8a919061537b565b6030612e969190615094565b60f81b818381518110612ed2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f0e91906150ea565b9450612e66565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612fa882612f9a856132b6565b6132e690919063ffffffff16565b905092915050565b612fba838361330d565b612fc7600084848461311f565b613006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffd90614c35565b60405180910390fd5b505050565b6130168383836134db565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561305957613054816134e0565b613098565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613097576130968382613529565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130db576130d681613696565b61311a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131195761311882826137d9565b5b5b505050565b60006131408473ffffffffffffffffffffffffffffffffffffffff1661278f565b156132a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131696126ce565b8786866040518563ffffffff1660e01b815260040161318b9493929190614a23565b602060405180830381600087803b1580156131a557600080fd5b505af19250505080156131d657506040513d601f19601f820116820180604052508101906131d39190614174565b60015b613259573d8060008114613206576040519150601f19603f3d011682016040523d82523d6000602084013e61320b565b606091505b50600081511415613251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324890614c35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132ae565b600190505b949350505050565b6000816040516020016132c991906149e2565b604051602081830303815290604052805190602001209050919050565b60008060006132f58585613858565b91509150613302816138db565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561337d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337490614dd5565b60405180910390fd5b61338681612662565b156133c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bd90614c75565b60405180910390fd5b6133d26000838361300b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134229190615094565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161353684611df3565b6135409190615175565b9050600060076000848152602001908152602001600020549050818114613625576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136aa9190615175565b9050600060096000848152602001908152602001600020549050600060088381548110613700577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613748577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137e483611df3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008060418351141561389a5760008060006020860151925060408601519150606086015160001a905061388e87828585613c2c565b945094505050506138d4565b6040835114156138cb5760008060208501519150604085015190506138c0868383613d39565b9350935050506138d4565b60006002915091505b9250929050565b60006004811115613915577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561394e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561395957613c29565b60016004811115613993577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156139cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0490614bb5565b60405180910390fd5b60026004811115613a47577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab890614bf5565b60405180910390fd5b60036004811115613afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613b34577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6c90614cf5565b60405180910390fd5b600480811115613bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1f90614db5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613c67576000600391509150613d30565b601b8560ff1614158015613c7f5750601c8560ff1614155b15613c91576000600491509150613d30565b600060018787878760405160008152602001604052604051613cb69493929190614ab3565b6020604051602081039080840390855afa158015613cd8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d2757600060019250925050613d30565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613d7987828885613c2c565b935093505050935093915050565b828054613d939061529b565b90600052602060002090601f016020900481019282613db55760008555613dfc565b82601f10613dce57803560ff1916838001178555613dfc565b82800160010185558215613dfc579182015b82811115613dfb578235825591602001919060010190613de0565b5b509050613e099190613e0d565b5090565b5b80821115613e26576000816000905550600101613e0e565b5090565b6000613e3d613e3884615015565b614ff0565b905082815260208101848484011115613e5557600080fd5b613e60848285615259565b509392505050565b600081359050613e7781615d4c565b92915050565b600081359050613e8c81615d63565b92915050565b600081359050613ea181615d7a565b92915050565b600081519050613eb681615d7a565b92915050565b60008083601f840112613ece57600080fd5b8235905067ffffffffffffffff811115613ee757600080fd5b602083019150836001820283011115613eff57600080fd5b9250929050565b600082601f830112613f1757600080fd5b8135613f27848260208601613e2a565b91505092915050565b600081359050613f3f81615d91565b92915050565b60008083601f840112613f5757600080fd5b8235905067ffffffffffffffff811115613f7057600080fd5b602083019150836001820283011115613f8857600080fd5b9250929050565b600081359050613f9e81615da1565b92915050565b600060208284031215613fb657600080fd5b6000613fc484828501613e68565b91505092915050565b60008060408385031215613fe057600080fd5b6000613fee85828601613e68565b9250506020613fff85828601613e68565b9150509250929050565b60008060006060848603121561401e57600080fd5b600061402c86828701613e68565b935050602061403d86828701613e68565b925050604061404e86828701613f8f565b9150509250925092565b6000806000806080858703121561406e57600080fd5b600061407c87828801613e68565b945050602061408d87828801613e68565b935050604061409e87828801613f8f565b925050606085013567ffffffffffffffff8111156140bb57600080fd5b6140c787828801613f06565b91505092959194509250565b600080604083850312156140e657600080fd5b60006140f485828601613e68565b925050602061410585828601613e7d565b9150509250929050565b6000806040838503121561412257600080fd5b600061413085828601613e68565b925050602061414185828601613f8f565b9150509250929050565b60006020828403121561415d57600080fd5b600061416b84828501613e92565b91505092915050565b60006020828403121561418657600080fd5b600061419484828501613ea7565b91505092915050565b6000602082840312156141af57600080fd5b600082013567ffffffffffffffff8111156141c957600080fd5b6141d584828501613f06565b91505092915050565b6000602082840312156141f057600080fd5b60006141fe84828501613f30565b91505092915050565b6000806020838503121561421a57600080fd5b600083013567ffffffffffffffff81111561423457600080fd5b61424085828601613f45565b92509250509250929050565b60008060008060006060868803121561426457600080fd5b600086013567ffffffffffffffff81111561427e57600080fd5b61428a88828901613f45565b9550955050602086013567ffffffffffffffff8111156142a957600080fd5b6142b588828901613ebc565b935093505060406142c888828901613f8f565b9150509295509295909350565b600080600080600080608087890312156142ee57600080fd5b600087013567ffffffffffffffff81111561430857600080fd5b61431489828a01613f45565b9650965050602087013567ffffffffffffffff81111561433357600080fd5b61433f89828a01613ebc565b9450945050604061435289828a01613f8f565b925050606061436389828a01613f8f565b9150509295509295509295565b60006020828403121561438257600080fd5b600061439084828501613f8f565b91505092915050565b6143a2816151a9565b82525050565b6143b1816151bb565b82525050565b6143c0816151c7565b82525050565b6143d76143d2826151c7565b615371565b82525050565b60006143e9838561506d565b93506143f6838584615259565b82840190509392505050565b600061440d82615046565b614417818561505c565b9350614427818560208601615268565b61443081615497565b840191505092915050565b61444481615247565b82525050565b60006144568385615078565b9350614463838584615259565b61446c83615497565b840190509392505050565b600061448282615051565b61448c8185615078565b935061449c818560208601615268565b6144a581615497565b840191505092915050565b60006144bb82615051565b6144c58185615089565b93506144d5818560208601615268565b80840191505092915050565b60006144ee601883615078565b91506144f9826154a8565b602082019050919050565b6000614511602f83615078565b915061451c826154d1565b604082019050919050565b6000614534601f83615078565b915061453f82615520565b602082019050919050565b6000614557601c83615089565b915061456282615549565b601c82019050919050565b600061457a602b83615078565b915061458582615572565b604082019050919050565b600061459d603283615078565b91506145a8826155c1565b604082019050919050565b60006145c0602683615078565b91506145cb82615610565b604082019050919050565b60006145e3601c83615078565b91506145ee8261565f565b602082019050919050565b6000614606600e83615078565b915061461182615688565b602082019050919050565b6000614629602483615078565b9150614634826156b1565b604082019050919050565b600061464c601983615078565b915061465782615700565b602082019050919050565b600061466f602283615078565b915061467a82615729565b604082019050919050565b6000614692602c83615078565b915061469d82615778565b604082019050919050565b60006146b5602a83615078565b91506146c0826157c7565b604082019050919050565b60006146d8603883615078565b91506146e382615816565b604082019050919050565b60006146fb602a83615078565b915061470682615865565b604082019050919050565b600061471e602983615078565b9150614729826158b4565b604082019050919050565b6000614741602283615078565b915061474c82615903565b604082019050919050565b6000614764602083615078565b915061476f82615952565b602082019050919050565b6000614787602c83615078565b91506147928261597b565b604082019050919050565b60006147aa601883615078565b91506147b5826159ca565b602082019050919050565b60006147cd602083615078565b91506147d8826159f3565b602082019050919050565b60006147f0602e83615078565b91506147fb82615a1c565b604082019050919050565b6000614813602983615078565b915061481e82615a6b565b604082019050919050565b6000614836602f83615078565b915061484182615aba565b604082019050919050565b6000614859603683615078565b915061486482615b09565b604082019050919050565b600061487c601383615078565b915061488782615b58565b602082019050919050565b600061489f602183615078565b91506148aa82615b81565b604082019050919050565b60006148c2601e83615078565b91506148cd82615bd0565b602082019050919050565b60006148e5602283615078565b91506148f082615bf9565b604082019050919050565b6000614908603183615078565b915061491382615c48565b604082019050919050565b600061492b602c83615078565b915061493682615c97565b604082019050919050565b600061494e601683615078565b915061495982615ce6565b602082019050919050565b6000614971601f83615078565b915061497c82615d0f565b602082019050919050565b61499081615230565b82525050565b61499f8161523a565b82525050565b60006149b28284866143dd565b91508190509392505050565b60006149ca82856144b0565b91506149d682846144b0565b91508190509392505050565b60006149ed8261454a565b91506149f982846143c6565b60208201915081905092915050565b6000602082019050614a1d6000830184614399565b92915050565b6000608082019050614a386000830187614399565b614a456020830186614399565b614a526040830185614987565b8181036060830152614a648184614402565b905095945050505050565b6000604082019050614a846000830185614399565b614a916020830184614987565b9392505050565b6000602082019050614aad60008301846143a8565b92915050565b6000608082019050614ac860008301876143b7565b614ad56020830186614996565b614ae260408301856143b7565b614aef60608301846143b7565b95945050505050565b6000602082019050614b0d600083018461443b565b92915050565b60006020820190508181036000830152614b2e81848661444a565b90509392505050565b600060a0820190508181036000830152614b5281888a61444a565b9050614b616020830187614399565b614b6e6040830186614399565b614b7b6060830185614987565b614b886080830184614987565b979650505050505050565b60006020820190508181036000830152614bad8184614477565b905092915050565b60006020820190508181036000830152614bce816144e1565b9050919050565b60006020820190508181036000830152614bee81614504565b9050919050565b60006020820190508181036000830152614c0e81614527565b9050919050565b60006020820190508181036000830152614c2e8161456d565b9050919050565b60006020820190508181036000830152614c4e81614590565b9050919050565b60006020820190508181036000830152614c6e816145b3565b9050919050565b60006020820190508181036000830152614c8e816145d6565b9050919050565b60006020820190508181036000830152614cae816145f9565b9050919050565b60006020820190508181036000830152614cce8161461c565b9050919050565b60006020820190508181036000830152614cee8161463f565b9050919050565b60006020820190508181036000830152614d0e81614662565b9050919050565b60006020820190508181036000830152614d2e81614685565b9050919050565b60006020820190508181036000830152614d4e816146a8565b9050919050565b60006020820190508181036000830152614d6e816146cb565b9050919050565b60006020820190508181036000830152614d8e816146ee565b9050919050565b60006020820190508181036000830152614dae81614711565b9050919050565b60006020820190508181036000830152614dce81614734565b9050919050565b60006020820190508181036000830152614dee81614757565b9050919050565b60006020820190508181036000830152614e0e8161477a565b9050919050565b60006020820190508181036000830152614e2e8161479d565b9050919050565b60006020820190508181036000830152614e4e816147c0565b9050919050565b60006020820190508181036000830152614e6e816147e3565b9050919050565b60006020820190508181036000830152614e8e81614806565b9050919050565b60006020820190508181036000830152614eae81614829565b9050919050565b60006020820190508181036000830152614ece8161484c565b9050919050565b60006020820190508181036000830152614eee8161486f565b9050919050565b60006020820190508181036000830152614f0e81614892565b9050919050565b60006020820190508181036000830152614f2e816148b5565b9050919050565b60006020820190508181036000830152614f4e816148d8565b9050919050565b60006020820190508181036000830152614f6e816148fb565b9050919050565b60006020820190508181036000830152614f8e8161491e565b9050919050565b60006020820190508181036000830152614fae81614941565b9050919050565b60006020820190508181036000830152614fce81614964565b9050919050565b6000602082019050614fea6000830184614987565b92915050565b6000614ffa61500b565b905061500682826152cd565b919050565b6000604051905090565b600067ffffffffffffffff8211156150305761502f615468565b5b61503982615497565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061509f82615230565b91506150aa83615230565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150df576150de6153ac565b5b828201905092915050565b60006150f582615230565b915061510083615230565b9250826151105761510f6153db565b5b828204905092915050565b600061512682615230565b915061513183615230565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561516a576151696153ac565b5b828202905092915050565b600061518082615230565b915061518b83615230565b92508282101561519e5761519d6153ac565b5b828203905092915050565b60006151b482615210565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061520b82615d38565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615252826151fd565b9050919050565b82818337600083830152505050565b60005b8381101561528657808201518184015260208101905061526b565b83811115615295576000848401525b50505050565b600060028204905060018216806152b357607f821691505b602082108114156152c7576152c6615439565b5b50919050565b6152d682615497565b810181811067ffffffffffffffff821117156152f5576152f4615468565b5b80604052505050565b600061530982615230565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561533c5761533b6153ac565b5b600182019050919050565b60006153528261523a565b915060ff821415615366576153656153ac565b5b600182019050919050565b6000819050919050565b600061538682615230565b915061539183615230565b9250826153a1576153a06153db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f5468652077616c6c657420697320747279696e6720746f206d696e74206d6f7260008201527f65207468616e20616c6c6f7765642e0000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420746f6b656e2e000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f526573657276656420416d6f756e74206973206f76657220746865207265736560008201527f727665206c696d69742e00000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f54686520746f6b656e20686173206265656e20757365642e0000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060008201527f706c79206f6620746f6b656e732e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f416d6f756e742073686f756c64206e6f7420657863656564204d61782070757260008201527f636861736520706572207472616e73616374696f6e2e00000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e7420697320696e636f72726563742e0000600082015250565b7f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60048110615d4957615d4861540a565b5b50565b615d55816151a9565b8114615d6057600080fd5b50565b615d6c816151bb565b8114615d7757600080fd5b50565b615d83816151d1565b8114615d8e57600080fd5b50565b60048110615d9e57600080fd5b50565b615daa81615230565b8114615db557600080fd5b5056fea26469706673582212206533446a045c84181b2ac64c82e03419c8d24d3fabf49628a8985d38e9d66c2f64736f6c6343000804003300000000000000000000000034ea603dba3aa05efa49a30dd907d0e1763ee445

Deployed Bytecode

0x6080604052600436106102045760003560e01c806356de96db116101185780638e825be0116100a0578063bc660cac1161006f578063bc660cac14610727578063c87b56dd14610764578063cd9f9b92146107a1578063e985e9c5146107de578063f2fde38b1461081b57610204565b80638e825be01461068157806395d89b41146106aa578063a22cb465146106d5578063b88d4fde146106fe57610204565b80637032e193116100e75780637032e193146105ac57806370a08231146105d7578063715018a61461061457806386f3cbe21461062b5780638da5cb5b1461065657610204565b806356de96db146104f25780636352211e1461051b5780636c0360eb146105585780636c19e7831461058357610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146104305780634a2728ab146104595780634f6ccce714610475578063519af30e146104b257806355f804b3146104c957610204565b806323b872dd146103745780632f745c591461039d5780633abc1a44146103da5780633f1cccf31461040557610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780631865c57d1461032d57806320c158e81461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063093512f7146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061414b565b610844565b60405161023d9190614a98565b60405180910390f35b34801561025257600080fd5b5061025b6108be565b6040516102689190614b93565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190614370565b610950565b6040516102a59190614a08565b60405180910390f35b3480156102ba57600080fd5b506102c36109d5565b6040516102d09190614fd5565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061410f565b6109e1565b005b34801561030e57600080fd5b50610317610af9565b6040516103249190614fd5565b60405180910390f35b34801561033957600080fd5b50610342610b06565b60405161034f9190614af8565b60405180910390f35b610372600480360381019061036d91906142d5565b610b1d565b005b34801561038057600080fd5b5061039b60048036038101906103969190614009565b610f21565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061410f565b610f81565b6040516103d19190614fd5565b60405180910390f35b3480156103e657600080fd5b506103ef611026565b6040516103fc9190614fd5565b60405180910390f35b34801561041157600080fd5b5061041a61102b565b6040516104279190614fd5565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190614009565b611031565b005b610473600480360381019061046e919061424c565b611051565b005b34801561048157600080fd5b5061049c60048036038101906104979190614370565b611468565b6040516104a99190614fd5565b60405180910390f35b3480156104be57600080fd5b506104c76114ff565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190614207565b6119d6565b005b3480156104fe57600080fd5b50610519600480360381019061051491906141de565b611aa1565b005b34801561052757600080fd5b50610542600480360381019061053d9190614370565b611bb6565b60405161054f9190614a08565b60405180910390f35b34801561056457600080fd5b5061056d611c68565b60405161057a9190614b93565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613fa4565b611cf6565b005b3480156105b857600080fd5b506105c1611ded565b6040516105ce9190614fd5565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613fa4565b611df3565b60405161060b9190614fd5565b60405180910390f35b34801561062057600080fd5b50610629611eab565b005b34801561063757600080fd5b50610640611f33565b60405161064d9190614fd5565b60405180910390f35b34801561066257600080fd5b5061066b611f39565b6040516106789190614a08565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a3919061410f565b611f63565b005b3480156106b657600080fd5b506106bf61208a565b6040516106cc9190614b93565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906140d3565b61211c565b005b34801561070a57600080fd5b5061072560048036038101906107209190614058565b61229d565b005b34801561073357600080fd5b5061074e60048036038101906107499190613fa4565b6122ff565b60405161075b9190614fd5565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190614370565b612317565b6040516107989190614b93565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c3919061419d565b6123be565b6040516107d59190614a98565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190613fcd565b6123f4565b6040516108129190614a98565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613fa4565b612488565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b757506108b682612580565b5b9050919050565b6060600080546108cd9061529b565b80601f01602080910402602001604051908101604052809291908181526020018280546108f99061529b565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095b82612662565b61099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190614df5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b670214e8348c4f000081565b60006109ec82611bb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490614ef5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7c6126ce565b73ffffffffffffffffffffffffffffffffffffffff161480610aab5750610aaa81610aa56126ce565b6123f4565b5b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190614d55565b60405180910390fd5b610af483836126d6565b505050565b6000600880549050905090565b6000600d60009054906101000a900460ff16905090565b6002600b541415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90614fb5565b60405180910390fd5b6002600b8190555060016003811115610ba5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600d60009054906101000a900460ff166003811115610bed577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490614f95565b60405180910390fd5b610c363361278f565b15610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90614f35565b60405180910390fd5b8082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc29190615094565b1115610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90614bd5565b60405180910390fd5b6124d082610d11600c6127a2565b610d1b9190615094565b1115610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390614e55565b60405180910390fd5b610db6610d6c87873386866127b0565b85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506127ee565b610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90614c95565b60405180910390fd5b670214e8348c4f0000341015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614f15565b60405180910390fd5b60005b82811015610e81576000610e57600c6127a2565b9050610e633382612852565b610e6d600c612870565b508080610e79906152fe565b915050610e43565b5081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed19190615094565b925050819055507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3383604051610f09929190614a6f565b60405180910390a16001600b81905550505050505050565b610f32610f2c6126ce565b82612886565b610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614f55565b60405180910390fd5b610f7c838383612964565b505050565b6000610f8c83611df3565b8210610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490614c15565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600581565b61019081565b61104c8383836040518060200160405280600081525061229d565b505050565b6002600b541415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90614fb5565b60405180910390fd5b6002600b81905550600260038111156110d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600d60009054906101000a900460ff166003811115611121577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890614ed5565b60405180910390fd5b61116a3361278f565b156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190614f35565b60405180910390fd5b60058111156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590614eb5565b60405180910390fd5b6124d0816111fc600c6127a2565b6112069190615094565b1115611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614e55565b60405180910390fd5b80670214e8348c4f000061125b919061511b565b34101561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490614f15565b60405180910390fd5b6112f86112ae8686338560056127b0565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506127ee565b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90614c95565b60405180910390fd5b600f83836040516113499291906149a5565b908152602001604051809103902060009054906101000a900460ff16156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614e15565b60405180910390fd5b60005b818110156113e65760006113bc600c6127a2565b90506113c83382612852565b6113d2600c612870565b5080806113de906152fe565b9150506113a8565b506001600f84846040516113fb9291906149a5565b908152602001604051809103902060006101000a81548160ff0219169083151502179055507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611451929190614a6f565b60405180910390a16001600b819055505050505050565b6000611472610af9565b82106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614f75565b60405180910390fd5b600882815481106114ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115076126ce565b73ffffffffffffffffffffffffffffffffffffffff16611525611f39565b73ffffffffffffffffffffffffffffffffffffffff161461157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290614e35565b60405180910390fd5b60004790506000600a90506000601090506000600f90506000600a905060006004905060126000815481106115d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648660ff168961162e919061511b565b61163891906150ea565b9081150290604051600060405180830381858888f19350505050158015611663573d6000803e3d6000fd5b5060005b6013805490508160ff1610156117525760138160ff16815481106116b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648660ff168a611709919061511b565b61171391906150ea565b9081150290604051600060405180830381858888f1935050505015801561173e573d6000803e3d6000fd5b50808061174a90615347565b915050611667565b5060005b6014805490508160ff1610156118415760148160ff16815481106117a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648560ff168a6117f8919061511b565b61180291906150ea565b9081150290604051600060405180830381858888f1935050505015801561182d573d6000803e3d6000fd5b50808061183990615347565b915050611756565b50601160008154811061187d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648760ff16896118d2919061511b565b6118dc91906150ea565b9081150290604051600060405180830381858888f19350505050158015611907573d6000803e3d6000fd5b506015600081548110611943577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60648360ff1689611998919061511b565b6119a291906150ea565b9081150290604051600060405180830381858888f193505050501580156119cd573d6000803e3d6000fd5b50505050505050565b6119de6126ce565b73ffffffffffffffffffffffffffffffffffffffff166119fc611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990614e35565b60405180910390fd5b818160169190611a63929190613d87565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611a95929190614b13565b60405180910390a15050565b611aa96126ce565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490614e35565b60405180910390fd5b80600d60006101000a81548160ff02191690836003811115611b68577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600d60009054906101000a900460ff16604051611bab9190614af8565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690614d95565b60405180910390fd5b80915050919050565b60168054611c759061529b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca19061529b565b8015611cee5780601f10611cc357610100808354040283529160200191611cee565b820191906000526020600020905b815481529060010190602001808311611cd157829003601f168201915b505050505081565b611cfe6126ce565b73ffffffffffffffffffffffffffffffffffffffff16611d1c611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990614e35565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5719a5656c5cfdaafa148ecf366fd3b0a7fae06449ce2a46225977fb7417e29d81604051611de29190614a08565b60405180910390a150565b6124d081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90614d75565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611eb36126ce565b73ffffffffffffffffffffffffffffffffffffffff16611ed1611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614e35565b60405180910390fd5b611f316000612bc0565b565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f6b6126ce565b73ffffffffffffffffffffffffffffffffffffffff16611f89611f39565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614e35565b60405180910390fd5b61019081600e54611ff09190615094565b1115612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614d35565b60405180910390fd5b60005b8181101561206c5761204f8361204a600c6127a2565b612852565b612059600c612870565b8080612064906152fe565b915050612034565b5080600e600082825461207f9190615094565b925050819055505050565b6060600180546120999061529b565b80601f01602080910402602001604051908101604052809291908181526020018280546120c59061529b565b80156121125780601f106120e757610100808354040283529160200191612112565b820191906000526020600020905b8154815290600101906020018083116120f557829003601f168201915b5050505050905090565b6121246126ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990614cd5565b60405180910390fd5b806005600061219f6126ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661224c6126ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122919190614a98565b60405180910390a35050565b6122ae6122a86126ce565b83612886565b6122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490614f55565b60405180910390fd5b6122f984848484612c86565b50505050565b60106020528060005260406000206000915090505481565b606061232282612662565b612361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235890614e95565b60405180910390fd5b600061236b612ce2565b9050600081511161238b57604051806020016040528060008152506123b6565b8061239584612d74565b6040516020016123a69291906149be565b6040516020818303038152906040525b915050919050565b600f818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124906126ce565b73ffffffffffffffffffffffffffffffffffffffff166124ae611f39565b73ffffffffffffffffffffffffffffffffffffffff1614612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614e35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614c55565b60405180910390fd5b61257d81612bc0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061265b575061265a82612f21565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661274983611bb6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080823b905060008111915050919050565b600081600001549050919050565b60008585308686866040516020016127cd96959493929190614b37565b60405160208183030381529060405280519060200120905095945050505050565b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128338484612f8b565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b61286c828260405180602001604052806000815250612fb0565b5050565b6001816000016000828254019250508190555050565b600061289182612662565b6128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c790614d15565b60405180910390fd5b60006128db83611bb6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061294a57508373ffffffffffffffffffffffffffffffffffffffff1661293284610950565b73ffffffffffffffffffffffffffffffffffffffff16145b8061295b575061295a81856123f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661298482611bb6565b73ffffffffffffffffffffffffffffffffffffffff16146129da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d190614e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614cb5565b60405180910390fd5b612a5583838361300b565b612a606000826126d6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ab09190615175565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b079190615094565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c91848484612964565b612c9d8484848461311f565b612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd390614c35565b60405180910390fd5b50505050565b606060168054612cf19061529b565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1d9061529b565b8015612d6a5780601f10612d3f57610100808354040283529160200191612d6a565b820191906000526020600020905b815481529060010190602001808311612d4d57829003601f168201915b5050505050905090565b60606000821415612dbc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f1c565b600082905060005b60008214612dee578080612dd7906152fe565b915050600a82612de791906150ea565b9150612dc4565b60008167ffffffffffffffff811115612e30577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e625781602001600182028036833780820191505090505b5090505b60008514612f1557600182612e7b9190615175565b9150600a85612e8a919061537b565b6030612e969190615094565b60f81b818381518110612ed2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f0e91906150ea565b9450612e66565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612fa882612f9a856132b6565b6132e690919063ffffffff16565b905092915050565b612fba838361330d565b612fc7600084848461311f565b613006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffd90614c35565b60405180910390fd5b505050565b6130168383836134db565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561305957613054816134e0565b613098565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613097576130968382613529565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130db576130d681613696565b61311a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131195761311882826137d9565b5b5b505050565b60006131408473ffffffffffffffffffffffffffffffffffffffff1661278f565b156132a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131696126ce565b8786866040518563ffffffff1660e01b815260040161318b9493929190614a23565b602060405180830381600087803b1580156131a557600080fd5b505af19250505080156131d657506040513d601f19601f820116820180604052508101906131d39190614174565b60015b613259573d8060008114613206576040519150601f19603f3d011682016040523d82523d6000602084013e61320b565b606091505b50600081511415613251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324890614c35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132ae565b600190505b949350505050565b6000816040516020016132c991906149e2565b604051602081830303815290604052805190602001209050919050565b60008060006132f58585613858565b91509150613302816138db565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561337d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337490614dd5565b60405180910390fd5b61338681612662565b156133c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bd90614c75565b60405180910390fd5b6133d26000838361300b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134229190615094565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161353684611df3565b6135409190615175565b9050600060076000848152602001908152602001600020549050818114613625576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136aa9190615175565b9050600060096000848152602001908152602001600020549050600060088381548110613700577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613748577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137e483611df3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008060418351141561389a5760008060006020860151925060408601519150606086015160001a905061388e87828585613c2c565b945094505050506138d4565b6040835114156138cb5760008060208501519150604085015190506138c0868383613d39565b9350935050506138d4565b60006002915091505b9250929050565b60006004811115613915577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561394e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561395957613c29565b60016004811115613993577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156139cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0490614bb5565b60405180910390fd5b60026004811115613a47577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab890614bf5565b60405180910390fd5b60036004811115613afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613b34577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6c90614cf5565b60405180910390fd5b600480811115613bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1f90614db5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613c67576000600391509150613d30565b601b8560ff1614158015613c7f5750601c8560ff1614155b15613c91576000600491509150613d30565b600060018787878760405160008152602001604052604051613cb69493929190614ab3565b6020604051602081039080840390855afa158015613cd8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d2757600060019250925050613d30565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613d7987828885613c2c565b935093505050935093915050565b828054613d939061529b565b90600052602060002090601f016020900481019282613db55760008555613dfc565b82601f10613dce57803560ff1916838001178555613dfc565b82800160010185558215613dfc579182015b82811115613dfb578235825591602001919060010190613de0565b5b509050613e099190613e0d565b5090565b5b80821115613e26576000816000905550600101613e0e565b5090565b6000613e3d613e3884615015565b614ff0565b905082815260208101848484011115613e5557600080fd5b613e60848285615259565b509392505050565b600081359050613e7781615d4c565b92915050565b600081359050613e8c81615d63565b92915050565b600081359050613ea181615d7a565b92915050565b600081519050613eb681615d7a565b92915050565b60008083601f840112613ece57600080fd5b8235905067ffffffffffffffff811115613ee757600080fd5b602083019150836001820283011115613eff57600080fd5b9250929050565b600082601f830112613f1757600080fd5b8135613f27848260208601613e2a565b91505092915050565b600081359050613f3f81615d91565b92915050565b60008083601f840112613f5757600080fd5b8235905067ffffffffffffffff811115613f7057600080fd5b602083019150836001820283011115613f8857600080fd5b9250929050565b600081359050613f9e81615da1565b92915050565b600060208284031215613fb657600080fd5b6000613fc484828501613e68565b91505092915050565b60008060408385031215613fe057600080fd5b6000613fee85828601613e68565b9250506020613fff85828601613e68565b9150509250929050565b60008060006060848603121561401e57600080fd5b600061402c86828701613e68565b935050602061403d86828701613e68565b925050604061404e86828701613f8f565b9150509250925092565b6000806000806080858703121561406e57600080fd5b600061407c87828801613e68565b945050602061408d87828801613e68565b935050604061409e87828801613f8f565b925050606085013567ffffffffffffffff8111156140bb57600080fd5b6140c787828801613f06565b91505092959194509250565b600080604083850312156140e657600080fd5b60006140f485828601613e68565b925050602061410585828601613e7d565b9150509250929050565b6000806040838503121561412257600080fd5b600061413085828601613e68565b925050602061414185828601613f8f565b9150509250929050565b60006020828403121561415d57600080fd5b600061416b84828501613e92565b91505092915050565b60006020828403121561418657600080fd5b600061419484828501613ea7565b91505092915050565b6000602082840312156141af57600080fd5b600082013567ffffffffffffffff8111156141c957600080fd5b6141d584828501613f06565b91505092915050565b6000602082840312156141f057600080fd5b60006141fe84828501613f30565b91505092915050565b6000806020838503121561421a57600080fd5b600083013567ffffffffffffffff81111561423457600080fd5b61424085828601613f45565b92509250509250929050565b60008060008060006060868803121561426457600080fd5b600086013567ffffffffffffffff81111561427e57600080fd5b61428a88828901613f45565b9550955050602086013567ffffffffffffffff8111156142a957600080fd5b6142b588828901613ebc565b935093505060406142c888828901613f8f565b9150509295509295909350565b600080600080600080608087890312156142ee57600080fd5b600087013567ffffffffffffffff81111561430857600080fd5b61431489828a01613f45565b9650965050602087013567ffffffffffffffff81111561433357600080fd5b61433f89828a01613ebc565b9450945050604061435289828a01613f8f565b925050606061436389828a01613f8f565b9150509295509295509295565b60006020828403121561438257600080fd5b600061439084828501613f8f565b91505092915050565b6143a2816151a9565b82525050565b6143b1816151bb565b82525050565b6143c0816151c7565b82525050565b6143d76143d2826151c7565b615371565b82525050565b60006143e9838561506d565b93506143f6838584615259565b82840190509392505050565b600061440d82615046565b614417818561505c565b9350614427818560208601615268565b61443081615497565b840191505092915050565b61444481615247565b82525050565b60006144568385615078565b9350614463838584615259565b61446c83615497565b840190509392505050565b600061448282615051565b61448c8185615078565b935061449c818560208601615268565b6144a581615497565b840191505092915050565b60006144bb82615051565b6144c58185615089565b93506144d5818560208601615268565b80840191505092915050565b60006144ee601883615078565b91506144f9826154a8565b602082019050919050565b6000614511602f83615078565b915061451c826154d1565b604082019050919050565b6000614534601f83615078565b915061453f82615520565b602082019050919050565b6000614557601c83615089565b915061456282615549565b601c82019050919050565b600061457a602b83615078565b915061458582615572565b604082019050919050565b600061459d603283615078565b91506145a8826155c1565b604082019050919050565b60006145c0602683615078565b91506145cb82615610565b604082019050919050565b60006145e3601c83615078565b91506145ee8261565f565b602082019050919050565b6000614606600e83615078565b915061461182615688565b602082019050919050565b6000614629602483615078565b9150614634826156b1565b604082019050919050565b600061464c601983615078565b915061465782615700565b602082019050919050565b600061466f602283615078565b915061467a82615729565b604082019050919050565b6000614692602c83615078565b915061469d82615778565b604082019050919050565b60006146b5602a83615078565b91506146c0826157c7565b604082019050919050565b60006146d8603883615078565b91506146e382615816565b604082019050919050565b60006146fb602a83615078565b915061470682615865565b604082019050919050565b600061471e602983615078565b9150614729826158b4565b604082019050919050565b6000614741602283615078565b915061474c82615903565b604082019050919050565b6000614764602083615078565b915061476f82615952565b602082019050919050565b6000614787602c83615078565b91506147928261597b565b604082019050919050565b60006147aa601883615078565b91506147b5826159ca565b602082019050919050565b60006147cd602083615078565b91506147d8826159f3565b602082019050919050565b60006147f0602e83615078565b91506147fb82615a1c565b604082019050919050565b6000614813602983615078565b915061481e82615a6b565b604082019050919050565b6000614836602f83615078565b915061484182615aba565b604082019050919050565b6000614859603683615078565b915061486482615b09565b604082019050919050565b600061487c601383615078565b915061488782615b58565b602082019050919050565b600061489f602183615078565b91506148aa82615b81565b604082019050919050565b60006148c2601e83615078565b91506148cd82615bd0565b602082019050919050565b60006148e5602283615078565b91506148f082615bf9565b604082019050919050565b6000614908603183615078565b915061491382615c48565b604082019050919050565b600061492b602c83615078565b915061493682615c97565b604082019050919050565b600061494e601683615078565b915061495982615ce6565b602082019050919050565b6000614971601f83615078565b915061497c82615d0f565b602082019050919050565b61499081615230565b82525050565b61499f8161523a565b82525050565b60006149b28284866143dd565b91508190509392505050565b60006149ca82856144b0565b91506149d682846144b0565b91508190509392505050565b60006149ed8261454a565b91506149f982846143c6565b60208201915081905092915050565b6000602082019050614a1d6000830184614399565b92915050565b6000608082019050614a386000830187614399565b614a456020830186614399565b614a526040830185614987565b8181036060830152614a648184614402565b905095945050505050565b6000604082019050614a846000830185614399565b614a916020830184614987565b9392505050565b6000602082019050614aad60008301846143a8565b92915050565b6000608082019050614ac860008301876143b7565b614ad56020830186614996565b614ae260408301856143b7565b614aef60608301846143b7565b95945050505050565b6000602082019050614b0d600083018461443b565b92915050565b60006020820190508181036000830152614b2e81848661444a565b90509392505050565b600060a0820190508181036000830152614b5281888a61444a565b9050614b616020830187614399565b614b6e6040830186614399565b614b7b6060830185614987565b614b886080830184614987565b979650505050505050565b60006020820190508181036000830152614bad8184614477565b905092915050565b60006020820190508181036000830152614bce816144e1565b9050919050565b60006020820190508181036000830152614bee81614504565b9050919050565b60006020820190508181036000830152614c0e81614527565b9050919050565b60006020820190508181036000830152614c2e8161456d565b9050919050565b60006020820190508181036000830152614c4e81614590565b9050919050565b60006020820190508181036000830152614c6e816145b3565b9050919050565b60006020820190508181036000830152614c8e816145d6565b9050919050565b60006020820190508181036000830152614cae816145f9565b9050919050565b60006020820190508181036000830152614cce8161461c565b9050919050565b60006020820190508181036000830152614cee8161463f565b9050919050565b60006020820190508181036000830152614d0e81614662565b9050919050565b60006020820190508181036000830152614d2e81614685565b9050919050565b60006020820190508181036000830152614d4e816146a8565b9050919050565b60006020820190508181036000830152614d6e816146cb565b9050919050565b60006020820190508181036000830152614d8e816146ee565b9050919050565b60006020820190508181036000830152614dae81614711565b9050919050565b60006020820190508181036000830152614dce81614734565b9050919050565b60006020820190508181036000830152614dee81614757565b9050919050565b60006020820190508181036000830152614e0e8161477a565b9050919050565b60006020820190508181036000830152614e2e8161479d565b9050919050565b60006020820190508181036000830152614e4e816147c0565b9050919050565b60006020820190508181036000830152614e6e816147e3565b9050919050565b60006020820190508181036000830152614e8e81614806565b9050919050565b60006020820190508181036000830152614eae81614829565b9050919050565b60006020820190508181036000830152614ece8161484c565b9050919050565b60006020820190508181036000830152614eee8161486f565b9050919050565b60006020820190508181036000830152614f0e81614892565b9050919050565b60006020820190508181036000830152614f2e816148b5565b9050919050565b60006020820190508181036000830152614f4e816148d8565b9050919050565b60006020820190508181036000830152614f6e816148fb565b9050919050565b60006020820190508181036000830152614f8e8161491e565b9050919050565b60006020820190508181036000830152614fae81614941565b9050919050565b60006020820190508181036000830152614fce81614964565b9050919050565b6000602082019050614fea6000830184614987565b92915050565b6000614ffa61500b565b905061500682826152cd565b919050565b6000604051905090565b600067ffffffffffffffff8211156150305761502f615468565b5b61503982615497565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061509f82615230565b91506150aa83615230565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150df576150de6153ac565b5b828201905092915050565b60006150f582615230565b915061510083615230565b9250826151105761510f6153db565b5b828204905092915050565b600061512682615230565b915061513183615230565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561516a576151696153ac565b5b828202905092915050565b600061518082615230565b915061518b83615230565b92508282101561519e5761519d6153ac565b5b828203905092915050565b60006151b482615210565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061520b82615d38565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615252826151fd565b9050919050565b82818337600083830152505050565b60005b8381101561528657808201518184015260208101905061526b565b83811115615295576000848401525b50505050565b600060028204905060018216806152b357607f821691505b602082108114156152c7576152c6615439565b5b50919050565b6152d682615497565b810181811067ffffffffffffffff821117156152f5576152f4615468565b5b80604052505050565b600061530982615230565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561533c5761533b6153ac565b5b600182019050919050565b60006153528261523a565b915060ff821415615366576153656153ac565b5b600182019050919050565b6000819050919050565b600061538682615230565b915061539183615230565b9250826153a1576153a06153db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f5468652077616c6c657420697320747279696e6720746f206d696e74206d6f7260008201527f65207468616e20616c6c6f7765642e0000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420746f6b656e2e000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f526573657276656420416d6f756e74206973206f76657220746865207265736560008201527f727665206c696d69742e00000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f54686520746f6b656e20686173206265656e20757365642e0000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060008201527f706c79206f6620746f6b656e732e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f416d6f756e742073686f756c64206e6f7420657863656564204d61782070757260008201527f636861736520706572207472616e73616374696f6e2e00000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e7420697320696e636f72726563742e0000600082015250565b7f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60048110615d4957615d4861540a565b5b50565b615d55816151a9565b8114615d6057600080fd5b50565b615d6c816151bb565b8114615d7757600080fd5b50565b615d83816151d1565b8114615d8e57600080fd5b50565b60048110615d9e57600080fd5b50565b615daa81615230565b8114615db557600080fd5b5056fea26469706673582212206533446a045c84181b2ac64c82e03419c8d24d3fabf49628a8985d38e9d66c2f64736f6c63430008040033

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

00000000000000000000000034ea603dba3aa05efa49a30dd907d0e1763ee445

-----Decoded View---------------
Arg [0] : signer (address): 0x34Ea603DbA3aa05efa49A30Dd907D0e1763eE445

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000034ea603dba3aa05efa49a30dd907d0e1763ee445


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.