ETH Price: $3,280.15 (+0.77%)
Gas: 5 Gwei

Token

Doodle Noodles Official (NOODS)
 

Overview

Max Total Supply

286 NOODS

Holders

144

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 NOODS
0xB3CE390F096AAc1244B747f5B8D929dfA254264E
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:
DoodleNoodles

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : DoodleNoodles.sol
// File contracts/IERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
    Fully commented standard ERC721 Distilled from OpenZeppelin Docs
    Base for Building ERC721 by Martin McConnell
    All the utility without the fluff.
*/


interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File contracts/IERC721.sol

pragma solidity ^0.8.0;

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`.
    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 contracts/IERC721Receiver.sol

pragma solidity ^0.8.0;
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 contracts/IERC721Metadata.sol

pragma solidity ^0.8.0;

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 contracts/Context.sol

pragma solidity ^0.8.0;



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 contracts/Ownable.sol

pragma solidity ^0.8.0;

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 contracts/Functional.sol

pragma solidity ^0.8.0;


abstract contract Functional {
    function toString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
    
    bool private _reentryKey = false;
    modifier reentryLock {
        require(!_reentryKey, "attempt to reenter a locked function");
        _reentryKey = true;
        _;
        _reentryKey = false;
    }
}


// File contracts/Address.sol

pragma solidity ^0.8.0;

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 contracts/ControlledAccess.sol

pragma solidity ^0.8.0;

/* @title ControlledAccess
 * @dev The ControlledAccess contract allows function to be restricted to users
 * that possess a signed authorization from the owner of the contract. This signed
 * message includes the user to give permission to and the contract address to prevent
 * reusing the same authorization message on different contract with same owner.
 */

contract ControlledAccess is Ownable {
    address public signerAddress;
    address public owner1 = 0x5916cbaF66a7bFa2B0F2bF60c05cb16763F051F8;

    /*
     * @dev Requires msg.sender to have valid access message.
     * @param _v ECDSA signature parameter v.
     * @param _r ECDSA signature parameters r.
     * @param _s ECDSA signature parameters s.
     */
    modifier onlyValidAccess(
        bytes32 _r,
        bytes32 _s,
        uint8 _v
    ) {
        require(isValidAccessMessage(msg.sender, _r, _s, _v));
        _;
    }

    function setSignerAddress(address newAddress) external onlyOwner {
        signerAddress = newAddress;
    }

    /*
     * @dev Verifies if message was signed by owner to give access to _add for this contract.
     *      Assumes Geth signature prefix.
     * @param _add Address of agent with access
     * @param _v ECDSA signature parameter v.
     * @param _r ECDSA signature parameters r.
     * @param _s ECDSA signature parameters s.
     * @return Validity of access message for a given address.
     */
    function isValidAccessMessage(
        address _add,
        bytes32 _r,
        bytes32 _s,
        uint8 _v
    ) public view returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(owner1, _add));
        bytes32 message = keccak256(
            abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
        );
        address sig = ecrecover(message, _v, _r, _s);

        require(signerAddress == sig, "Signature does not match");

        return signerAddress == sig;
    }
}


pragma solidity ^0.8.0;

// project: Doodle Noodles
/**
 ____                        __   ___               __  __                      __   ___                    
/\  _`\                     /\ \ /\_ \             /\ \/\ \                    /\ \ /\_ \                   
\ \ \/\ \    ___     ___    \_\ \\//\ \      __    \ \ `\\ \    ___     ___    \_\ \\//\ \      __    ____  
 \ \ \ \ \  / __`\  / __`\  /'_` \ \ \ \   /'__`\   \ \ , ` \  / __`\  / __`\  /'_` \ \ \ \   /'__`\ /',__\ 
  \ \ \_\ \/\ \L\ \/\ \L\ \/\ \L\ \ \_\ \_/\  __/    \ \ \`\ \/\ \L\ \/\ \L\ \/\ \L\ \ \_\ \_/\  __//\__, `\
   \ \____/\ \____/\ \____/\ \___,_\/\____\ \____\    \ \_\ \_\ \____/\ \____/\ \___,_\/\____\ \____\/\____/
    \/___/  \/___/  \/___/  \/__,_ /\/____/\/____/     \/_/\/_/\/___/  \/___/  \/__,_ /\/____/\/____/\/___/                                                                                                     
 */


contract DoodleNoodles is IERC721, Ownable, Functional, ControlledAccess {

    using Address for address;

    // Declare variables
    string private _name;
    string private _symbol;
    string private _baseURI;
    string public provenanceHash;

    bool public mintActive;
    bool public presaleActive;
    bool public revealed;
    uint256 public price;
    uint256 public totalNoodles;
    uint256 public numberMinted;
    uint256 public maxPerWallet;
    uint256 public maxPerTx;
    uint256 public reservedNoodles;
    uint256 public goldenNoodles;
    uint256 public startingIndex;
    uint256 public startingIndexBlock;
    
    // Mappings
    mapping(uint256 => address) private _owners;
    mapping(address => uint256) private _balances;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    mapping(address => uint256) private _tokensMintedby;

    // Initialise contract
    constructor() {
        _name = "Doodle Noodles Official";
        _symbol = "NOODS";

        revealed = false;
        mintActive = false;
        presaleActive = false;
        totalNoodles = 5555;
        price = 0.06 ether;
        maxPerWallet = 5;
        maxPerTx = 5;
        reservedNoodles = 40; // reserved for giveaways and such
        goldenNoodles = 5; // Defines 5 custom Golden Noodles
        signerAddress = 0x5916cbaF66a7bFa2B0F2bF60c05cb16763F051F8;
    }

    //@dev See {IERC165-supportsInterface}. Interfaces Supported by this Standard
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return  interfaceId == type(IERC721).interfaceId ||
                interfaceId == type(IERC721Metadata).interfaceId ||
                interfaceId == type(IERC165).interfaceId ||
                interfaceId == DoodleNoodles.onERC721Received.selector;
    }

    // Withdraw function
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function giveAway(address _to, uint256 _qty) external onlyOwner() {
        require( _qty <= (reservedNoodles - goldenNoodles), "Exceeds reserved Noodles supply" );

        uint256 mintSeedValue = numberMinted;
        for(uint256 i = 0; i < _qty; i++) {
            _safeMint(_to, mintSeedValue + i);
            numberMinted ++; 
        }
        reservedNoodles -= _qty;
    }

     function goldenNoodle(address _to, uint256 _qty) external onlyOwner() {
        require( _qty <= goldenNoodles, "Exceeds reserved Golden Noodles supply" );

        uint256 mintSeedValue = numberMinted;
        for(uint256 i = 0; i < _qty; i++) {
            _safeMint(_to, mintSeedValue + i);
            numberMinted ++; 
        }
        goldenNoodles -= _qty;
    }

    function mintNoodle(uint256 qty) external payable reentryLock {
        require(mintActive);
        require((qty + numberMinted + reservedNoodles) < totalNoodles, "Not enough availability");
        require(qty <= maxPerTx, "Exceeds max allowed per transaction");
        require((_tokensMintedby[_msgSender()] + qty) <= maxPerWallet, "Exceeds Max allowed per wallet");
        require(msg.value >= qty * price, "Insufficient Funds");
        
        uint256 mintSeedValue = numberMinted; //Store the starting value of the mint batch

        //Handle ETH transactions
        uint256 cashIn = msg.value;
        uint256 cashChange = cashIn - (qty * price);

        //send tokens
        for(uint256 i = 0; i < qty; i++) {
            _safeMint(_msgSender(), mintSeedValue + i);
            numberMinted ++;
            _tokensMintedby[_msgSender()] ++;
        }

        if (cashChange > 0){
            (bool success, ) = msg.sender.call{value: cashChange}("");
            require(success, "Mint: unable to send change to user");
        }
    }
    
    function presaleMintNoodle(uint256 qty,
        bytes32 _r,
        bytes32 _s,
        uint8 _v
                        ) external payable onlyValidAccess(_r, _s, _v) reentryLock {
        require(presaleActive);
        require((qty + numberMinted + reservedNoodles) < totalNoodles, "Not enough availability");
        require(qty <= maxPerTx, "Exceeds max allowed per transaction");
        require((_tokensMintedby[_msgSender()] + qty) <= maxPerWallet, "Exceeds Max allowed per wallet");
        require(msg.value >= qty * price, "Insufficient Funds");
        
        uint256 mintSeedValue = numberMinted; //Store the starting value of the mint batch

        //Handle ETH transactions
        uint256 cashIn = msg.value;
        uint256 cashChange = cashIn - (qty * price);

        //send tokens
        for(uint256 i = 0; i < qty; i++) {
            _safeMint(_msgSender(), mintSeedValue + i);
            numberMinted ++;
            _tokensMintedby[_msgSender()] ++;
        }

        if (cashChange > 0){
            (bool success, ) = msg.sender.call{value: cashChange}("");
            require(success, "Mint: unable to send change to user");
        }
    }


    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        if(revealed == false) {
        return string(abi.encodePacked(_baseURI, "0.json"));
        }
        // Otherwise
        return string(abi.encodePacked(_baseURI, toString(tokenId), ".json")); 
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setMaxPerWallet(uint256 maxWallet) external onlyOwner {
        maxPerWallet = maxWallet;
    }

    function setMaxPerTx(uint256 newMax) external onlyOwner {
        maxPerTx = newMax;
    }

    function setBaseURI(string memory newURI) public onlyOwner {
        _baseURI = newURI;
    }

    function activateMint() public onlyOwner {
        mintActive = true;
    }

     function activatePresale() public onlyOwner {
        presaleActive = true;
    }

    function deactivateMint() public onlyOwner {
        mintActive = false;
    }

    function deactivatePresale() public onlyOwner {
        presaleActive = false;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setTotalTokens(uint256 numTokens) public onlyOwner {
        totalNoodles = numTokens;
    }

    function totalSupply() external view returns (uint256) {
        return numberMinted;
    }

    ///////// required functions
    function getBalance(address tokenAddress) view external returns (uint256) {
        return _balances[tokenAddress];
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "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 != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, 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(msg.sender, 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(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    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");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    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"
        );
    }

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = 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);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(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);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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;
        }
    }

    function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns(bytes4) {
        //InterfaceID=0x150b7a02
        return this.onERC721Received.selector;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    function name() external view returns (string memory){
        return _name;
    }

    function symbol() external view returns (string memory){
        return _symbol;
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(_baseURI,"contract.json"));
    }

    //Provenance
    function setProvenanceHash(string calldata hash) public onlyOwner {
        provenanceHash = hash;
    }
    
    function setStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");

        startingIndex = uint256(blockhash(startingIndexBlock)) % totalNoodles;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number % startingIndexBlock > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % totalNoodles;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function setStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");

        startingIndexBlock = block.number;
    }

    receive() external payable {}

    fallback() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"activateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activatePresale","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"goldenNoodle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goldenNoodles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintNoodle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner1","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":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"}],"name":"presaleMintNoodle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNoodles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setTotalTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNoodles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260008060146101000a81548160ff021916908315150217905550735916cbaf66a7bfa2b0f2bf60c05cb16763f051f8600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008057600080fd5b50620000a1620000956200022060201b60201c565b6200022860201b60201c565b6040518060400160405280601781526020017f446f6f646c65204e6f6f646c6573204f6666696369616c00000000000000000081525060039080519060200190620000ee929190620002ec565b506040518060400160405280600581526020017f4e4f4f4453000000000000000000000000000000000000000000000000000000815250600490805190602001906200013c929190620002ec565b506000600760026101000a81548160ff0219169083151502179055506000600760006101000a81548160ff0219169083151502179055506000600760016101000a81548160ff0219169083151502179055506115b360098190555066d529ae9e8600006008819055506005600b819055506005600c819055506028600d819055506005600e81905550735916cbaf66a7bfa2b0f2bf60c05cb16763f051f8600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000401565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002fa906200039c565b90600052602060002090601f0160209004810192826200031e57600085556200036a565b82601f106200033957805160ff19168380011785556200036a565b828001600101855582156200036a579182015b82811115620003695782518255916020019190600101906200034c565b5b5090506200037991906200037d565b5090565b5b80821115620003985760008160009055506001016200037e565b5090565b60006002820490506001821680620003b557607f821691505b60208210811415620003cc57620003cb620003d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61579580620004116000396000f3fe6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c91c0462116100f7578063e8a3d48511610095578063eb1855631161006f578063eb18556314610b92578063f2fde38b14610bbb578063f8b2cb4f14610be4578063f968adbe14610c215761035b565b8063e8a3d48514610b13578063e985e9c514610b3e578063e986655014610b7b5761035b565b8063d5dc3efd116100d1578063d5dc3efd14610a7d578063d829210a14610a94578063e268e4d314610abf578063e36d649814610ae85761035b565b8063c91c046214610a12578063ca80014414610a29578063cb774d4714610a525761035b565b8063b68e8c9111610164578063c1dd27dc1161013e578063c1dd27dc14610944578063c6ab67a314610981578063c6f6f216146109ac578063c87b56dd146109d55761035b565b8063b68e8c91146108d9578063b88d4fde146108f0578063bb01f6ad146109195761035b565b8063a035b1fe116101a0578063a035b1fe14610845578063a22cb46514610870578063a475b5dd14610899578063b0b92263146108b05761035b565b80638da5cb5b146107c657806391b7f5ed146107f157806395d89b411461081a5761035b565b80633ccfd60b116102a057806357153fb41161023e5780636ed3f50c116102185780636ed3f50c1461071c57806370a0823114610747578063715018a614610784578063736889141461079b5761035b565b806357153fb4146106985780635b7633d0146106b45780636352211e146106df5761035b565b806349a772b51161027a57806349a772b5146105ee578063518302271461061957806353135ca01461064457806355f804b31461066f5761035b565b80633ccfd60b1461058357806342842e0e1461059a578063453c2310146105c35761035b565b806310ad132a1161030d57806323b872dd116102e757806323b872dd1461050157806325fd90f31461052a578063290fd843146105555780632e56f71e1461056c5761035b565b806310ad132a1461047d578063150b7a021461049957806318160ddd146104d65761035b565b806301ffc9a71461035d578063046dc1661461039a57806306fdde03146103c3578063081812fc146103ee578063095ea7b31461042b57806310969523146104545761035b565b3661035b57005b005b34801561036957600080fd5b50610384600480360381019061037f9190613faa565b610c4c565b6040516103919190614e33565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613d20565b610dd5565b005b3480156103cf57600080fd5b506103d8610e95565b6040516103e59190614eae565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190614082565b610f27565b6040516104229190614dcc565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190613f6e565b610fac565b005b34801561046057600080fd5b5061047b60048036038101906104769190613ffc565b6110b6565b005b61049760048036038101906104929190614082565b611148565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190613dd4565b611504565b6040516104cd9190614e93565b60405180910390f35b3480156104e257600080fd5b506104eb611519565b6040516104f89190615230565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190613d85565b611523565b005b34801561053657600080fd5b5061053f61157c565b60405161054c9190614e33565b60405180910390f35b34801561056157600080fd5b5061056a61158f565b005b34801561057857600080fd5b50610581611628565b005b34801561058f57600080fd5b506105986116c1565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190613d85565b61178c565b005b3480156105cf57600080fd5b506105d86117ac565b6040516105e59190615230565b60405180910390f35b3480156105fa57600080fd5b506106036117b2565b6040516106109190615230565b60405180910390f35b34801561062557600080fd5b5061062e6117b8565b60405161063b9190614e33565b60405180910390f35b34801561065057600080fd5b506106596117cb565b6040516106669190614e33565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190614041565b6117de565b005b6106b260048036038101906106ad91906140ab565b611874565b005b3480156106c057600080fd5b506106c9611c4e565b6040516106d69190614dcc565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190614082565b611c74565b6040516107139190614dcc565b60405180910390f35b34801561072857600080fd5b50610731611d26565b60405161073e9190615230565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613d20565b611d2c565b60405161077b9190615230565b60405180910390f35b34801561079057600080fd5b50610799611de4565b005b3480156107a757600080fd5b506107b0611e6c565b6040516107bd9190614dcc565b60405180910390f35b3480156107d257600080fd5b506107db611e92565b6040516107e89190614dcc565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190614082565b611ebb565b005b34801561082657600080fd5b5061082f611f41565b60405161083c9190614eae565b60405180910390f35b34801561085157600080fd5b5061085a611fd3565b6040516108679190615230565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613ecf565b611fd9565b005b3480156108a557600080fd5b506108ae612145565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190614082565b6121de565b005b3480156108e557600080fd5b506108ee612264565b005b3480156108fc57600080fd5b5061091760048036038101906109129190613e54565b6122fd565b005b34801561092557600080fd5b5061092e612358565b60405161093b9190615230565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613f0b565b61235e565b6040516109789190614e33565b60405180910390f35b34801561098d57600080fd5b5061099661251a565b6040516109a39190614eae565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190614082565b6125a8565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190614082565b61262e565b604051610a099190614eae565b60405180910390f35b348015610a1e57600080fd5b50610a276126ef565b005b348015610a3557600080fd5b50610a506004803603810190610a4b9190613f6e565b612788565b005b348015610a5e57600080fd5b50610a676128c7565b604051610a749190615230565b60405180910390f35b348015610a8957600080fd5b50610a926128cd565b005b348015610aa057600080fd5b50610aa9612997565b604051610ab69190615230565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190614082565b61299d565b005b348015610af457600080fd5b50610afd612a23565b604051610b0a9190615230565b60405180910390f35b348015610b1f57600080fd5b50610b28612a29565b604051610b359190614eae565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613d49565b612a51565b604051610b729190614e33565b60405180910390f35b348015610b8757600080fd5b50610b90612ae5565b005b348015610b9e57600080fd5b50610bb96004803603810190610bb49190613f6e565b612c64565b005b348015610bc757600080fd5b50610be26004803603810190610bdd9190613d20565b612d96565b005b348015610bf057600080fd5b50610c0b6004803603810190610c069190613d20565b612e8e565b604051610c189190615230565b60405180910390f35b348015610c2d57600080fd5b50610c36612ed7565b604051610c439190615230565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dce575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610ddd612edd565b73ffffffffffffffffffffffffffffffffffffffff16610dfb611e92565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906150f0565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610ea490615521565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090615521565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b5050505050905090565b6000610f3282612ee5565b610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906150d0565b60405180910390fd5b6013600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fb782611c74565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90615190565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061106857506110678133612a51565b5b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90615050565b60405180910390fd5b6110b18383612f51565b505050565b6110be612edd565b73ffffffffffffffffffffffffffffffffffffffff166110dc611e92565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611129906150f0565b60405180910390fd5b818160069190611143929190613a00565b505050565b600060149054906101000a900460ff1615611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90615030565b60405180910390fd5b6001600060146101000a81548160ff021916908315150217905550600760009054906101000a900460ff166111cc57600080fd5b600954600d54600a54836111e0919061533f565b6111ea919061533f565b1061122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614fb0565b60405180910390fd5b600c5481111561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690615210565b60405180910390fd5b600b54816015600061127f612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112c4919061533f565b1115611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906151b0565b60405180910390fd5b6008548161131391906153c6565b341015611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90614f50565b60405180910390fd5b6000600a549050600034905060006008548461137191906153c6565b8261137c9190615420565b905060005b8481101561142c576113a5611394612edd565b82866113a0919061533f565b61300a565b600a60008154809291906113b890615553565b9190505550601560006113c9612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061141490615553565b9190505550808061142490615553565b915050611381565b5060008111156114e45760003373ffffffffffffffffffffffffffffffffffffffff168260405161145c90614db7565b60006040518083038185875af1925050503d8060008114611499576040519150601f19603f3d011682016040523d82523d6000602084013e61149e565b606091505b50509050806114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990614ed0565b60405180910390fd5b505b50505060008060146101000a81548160ff02191690831515021790555050565b600063150b7a0260e01b905095945050505050565b6000600a54905090565b61152d3382613028565b61156c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611563906151f0565b60405180910390fd5b611577838383613106565b505050565b600760009054906101000a900460ff1681565b611597612edd565b73ffffffffffffffffffffffffffffffffffffffff166115b5611e92565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906150f0565b60405180910390fd5b6000600760016101000a81548160ff021916908315150217905550565b611630612edd565b73ffffffffffffffffffffffffffffffffffffffff1661164e611e92565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906150f0565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6116c9612edd565b73ffffffffffffffffffffffffffffffffffffffff166116e7611e92565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611734906150f0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611788573d6000803e3d6000fd5b5050565b6117a7838383604051806020016040528060008152506122fd565b505050565b600b5481565b600a5481565b600760029054906101000a900460ff1681565b600760019054906101000a900460ff1681565b6117e6612edd565b73ffffffffffffffffffffffffffffffffffffffff16611804611e92565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906150f0565b60405180910390fd5b8060059080519060200190611870929190613a86565b5050565b8282826118833384848461235e565b61188c57600080fd5b600060149054906101000a900460ff16156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390615030565b60405180910390fd5b6001600060146101000a81548160ff021916908315150217905550600760019054906101000a900460ff1661191057600080fd5b600954600d54600a5489611924919061533f565b61192e919061533f565b1061196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590614fb0565b60405180910390fd5b600c548711156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90615210565b60405180910390fd5b600b5487601560006119c3612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a08919061533f565b1115611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906151b0565b60405180910390fd5b60085487611a5791906153c6565b341015611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9090614f50565b60405180910390fd5b6000600a549050600034905060006008548a611ab591906153c6565b82611ac09190615420565b905060005b8a811015611b7057611ae9611ad8612edd565b8286611ae4919061533f565b61300a565b600a6000815480929190611afc90615553565b919050555060156000611b0d612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b5890615553565b91905055508080611b6890615553565b915050611ac5565b506000811115611c285760003373ffffffffffffffffffffffffffffffffffffffff1682604051611ba090614db7565b60006040518083038185875af1925050503d8060008114611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b5050905080611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614ed0565b60405180910390fd5b505b50505060008060146101000a81548160ff02191690831515021790555050505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806011600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490615090565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490615070565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dec612edd565b73ffffffffffffffffffffffffffffffffffffffff16611e0a611e92565b73ffffffffffffffffffffffffffffffffffffffff1614611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e57906150f0565b60405180910390fd5b611e6a6000613362565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ec3612edd565b73ffffffffffffffffffffffffffffffffffffffff16611ee1611e92565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e906150f0565b60405180910390fd5b8060088190555050565b606060048054611f5090615521565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7c90615521565b8015611fc95780601f10611f9e57610100808354040283529160200191611fc9565b820191906000526020600020905b815481529060010190602001808311611fac57829003601f168201915b5050505050905090565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614f90565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121399190614e33565b60405180910390a35050565b61214d612edd565b73ffffffffffffffffffffffffffffffffffffffff1661216b611e92565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b8906150f0565b60405180910390fd5b6001600760026101000a81548160ff021916908315150217905550565b6121e6612edd565b73ffffffffffffffffffffffffffffffffffffffff16612204611e92565b73ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612251906150f0565b60405180910390fd5b8060098190555050565b61226c612edd565b73ffffffffffffffffffffffffffffffffffffffff1661228a611e92565b73ffffffffffffffffffffffffffffffffffffffff16146122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d7906150f0565b60405180910390fd5b6001600760016101000a81548160ff021916908315150217905550565b6123073383613028565b612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906151f0565b60405180910390fd5b61235284848484613426565b50505050565b60095481565b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686604051602001612396929190614cf2565b6040516020818303038152906040528051906020012090506000816040516020016123c19190614d91565b6040516020818303038152906040528051906020012090506000600182868989604051600081526020016040526040516123fe9493929190614e4e565b6020604051602081039080840390855afa158015612420573d6000803e3d6000fd5b5050506020604051035190508073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b390615170565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149350505050949350505050565b6006805461252790615521565b80601f016020809104026020016040519081016040528092919081815260200182805461255390615521565b80156125a05780601f10612575576101008083540402835291602001916125a0565b820191906000526020600020905b81548152906001019060200180831161258357829003601f168201915b505050505081565b6125b0612edd565b73ffffffffffffffffffffffffffffffffffffffff166125ce611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b906150f0565b60405180910390fd5b80600c8190555050565b606061263982612ee5565b612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90615130565b60405180910390fd5b60001515600760029054906101000a900460ff16151514156126bc5760056040516020016126a69190614d6f565b60405160208183030381529060405290506126ea565b60056126c783613482565b6040516020016126d8929190614d1e565b60405160208183030381529060405290505b919050565b6126f7612edd565b73ffffffffffffffffffffffffffffffffffffffff16612715611e92565b73ffffffffffffffffffffffffffffffffffffffff161461276b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612762906150f0565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b612790612edd565b73ffffffffffffffffffffffffffffffffffffffff166127ae611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb906150f0565b60405180910390fd5b600e54600d546128149190615420565b811115612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90615150565b60405180910390fd5b6000600a54905060005b828110156128a85761287d848284612878919061533f565b61300a565b600a600081548092919061289090615553565b919050555080806128a090615553565b915050612860565b5081600d60008282546128bb9190615420565b92505081905550505050565b600f5481565b6128d5612edd565b73ffffffffffffffffffffffffffffffffffffffff166128f3611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612940906150f0565b60405180910390fd5b6000600f541461298e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298590615010565b60405180910390fd5b43601081905550565b600d5481565b6129a5612edd565b73ffffffffffffffffffffffffffffffffffffffff166129c3611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a10906150f0565b60405180910390fd5b80600b8190555050565b60105481565b60606005604051602001612a3d9190614d4d565b604051602081830303815290604052905090565b6000601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612aed612edd565b73ffffffffffffffffffffffffffffffffffffffff16612b0b611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b58906150f0565b60405180910390fd5b6000600f5414612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90615010565b60405180910390fd5b60006010541415612bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be3906151d0565b60405180910390fd5b6009546010544060001c612c0091906155ca565b600f8190555060ff60105443612c1691906155ca565b1115612c4157600954600143612c2c9190615420565b4060001c612c3a91906155ca565b600f819055505b6000600f541415612c62576001600f54612c5b919061533f565b600f819055505b565b612c6c612edd565b73ffffffffffffffffffffffffffffffffffffffff16612c8a611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd7906150f0565b60405180910390fd5b600e54811115612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90614ff0565b60405180910390fd5b6000600a54905060005b82811015612d7757612d4c848284612d47919061533f565b61300a565b600a6000815480929190612d5f90615553565b91905055508080612d6f90615553565b915050612d2f565b5081600e6000828254612d8a9190615420565b92505081905550505050565b612d9e612edd565b73ffffffffffffffffffffffffffffffffffffffff16612dbc611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e09906150f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990614f10565b60405180910390fd5b612e8b81613362565b50565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166011600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816013600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fc483611c74565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61302482826040518060200160405280600081525061362f565b5050565b600061303382612ee5565b613072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306990614fd0565b60405180910390fd5b600061307d83611c74565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130ec57508373ffffffffffffffffffffffffffffffffffffffff166130d484610f27565b73ffffffffffffffffffffffffffffffffffffffff16145b806130fd57506130fc8185612a51565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661312682611c74565b73ffffffffffffffffffffffffffffffffffffffff161461317c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317390615110565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e390614f70565b60405180910390fd5b6131f783838361368a565b613202600082612f51565b6001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132529190615420565b925050819055506001601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132a9919061533f565b92505081905550816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613431848484613106565b61343d8484848461368f565b61347c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347390614ef0565b60405180910390fd5b50505050565b606060008214156134ca576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061362a565b600082905060005b600082146134fc5780806134e590615553565b915050600a826134f59190615395565b91506134d2565b60008167ffffffffffffffff81111561353e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135705781602001600182028036833780820191505090505b5090505b60008514613623576001826135899190615420565b9150600a8561359891906155ca565b60306135a4919061533f565b60f81b8183815181106135e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561361c9190615395565b9450613574565b8093505050505b919050565b613639838361381f565b613646600084848461368f565b613685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367c90614ef0565b60405180910390fd5b505050565b505050565b60006136b08473ffffffffffffffffffffffffffffffffffffffff166139ed565b15613812578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016136f49493929190614de7565b602060405180830381600087803b15801561370e57600080fd5b505af192505050801561373f57506040513d601f19601f8201168201806040525081019061373c9190613fd3565b60015b6137c2573d806000811461376f576040519150601f19603f3d011682016040523d82523d6000602084013e613774565b606091505b506000815114156137ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b190614ef0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613817565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561388f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613886906150b0565b60405180910390fd5b61389881612ee5565b156138d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138cf90614f30565b60405180910390fd5b6138e46000838361368a565b6001601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613934919061533f565b92505081905550816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a0c90615521565b90600052602060002090601f016020900481019282613a2e5760008555613a75565b82601f10613a4757803560ff1916838001178555613a75565b82800160010185558215613a75579182015b82811115613a74578235825591602001919060010190613a59565b5b509050613a829190613b0c565b5090565b828054613a9290615521565b90600052602060002090601f016020900481019282613ab45760008555613afb565b82601f10613acd57805160ff1916838001178555613afb565b82800160010185558215613afb579182015b82811115613afa578251825591602001919060010190613adf565b5b509050613b089190613b0c565b5090565b5b80821115613b25576000816000905550600101613b0d565b5090565b6000613b3c613b378461527c565b61524b565b905082815260208101848484011115613b5457600080fd5b613b5f8482856154df565b509392505050565b6000613b7a613b75846152ac565b61524b565b905082815260208101848484011115613b9257600080fd5b613b9d8482856154df565b509392505050565b600081359050613bb4816156d5565b92915050565b600081359050613bc9816156ec565b92915050565b600081359050613bde81615703565b92915050565b600081359050613bf38161571a565b92915050565b600081519050613c088161571a565b92915050565b60008083601f840112613c2057600080fd5b8235905067ffffffffffffffff811115613c3957600080fd5b602083019150836001820283011115613c5157600080fd5b9250929050565b600082601f830112613c6957600080fd5b8135613c79848260208601613b29565b91505092915050565b60008083601f840112613c9457600080fd5b8235905067ffffffffffffffff811115613cad57600080fd5b602083019150836001820283011115613cc557600080fd5b9250929050565b600082601f830112613cdd57600080fd5b8135613ced848260208601613b67565b91505092915050565b600081359050613d0581615731565b92915050565b600081359050613d1a81615748565b92915050565b600060208284031215613d3257600080fd5b6000613d4084828501613ba5565b91505092915050565b60008060408385031215613d5c57600080fd5b6000613d6a85828601613ba5565b9250506020613d7b85828601613ba5565b9150509250929050565b600080600060608486031215613d9a57600080fd5b6000613da886828701613ba5565b9350506020613db986828701613ba5565b9250506040613dca86828701613cf6565b9150509250925092565b600080600080600060808688031215613dec57600080fd5b6000613dfa88828901613ba5565b9550506020613e0b88828901613ba5565b9450506040613e1c88828901613cf6565b935050606086013567ffffffffffffffff811115613e3957600080fd5b613e4588828901613c0e565b92509250509295509295909350565b60008060008060808587031215613e6a57600080fd5b6000613e7887828801613ba5565b9450506020613e8987828801613ba5565b9350506040613e9a87828801613cf6565b925050606085013567ffffffffffffffff811115613eb757600080fd5b613ec387828801613c58565b91505092959194509250565b60008060408385031215613ee257600080fd5b6000613ef085828601613ba5565b9250506020613f0185828601613bba565b9150509250929050565b60008060008060808587031215613f2157600080fd5b6000613f2f87828801613ba5565b9450506020613f4087828801613bcf565b9350506040613f5187828801613bcf565b9250506060613f6287828801613d0b565b91505092959194509250565b60008060408385031215613f8157600080fd5b6000613f8f85828601613ba5565b9250506020613fa085828601613cf6565b9150509250929050565b600060208284031215613fbc57600080fd5b6000613fca84828501613be4565b91505092915050565b600060208284031215613fe557600080fd5b6000613ff384828501613bf9565b91505092915050565b6000806020838503121561400f57600080fd5b600083013567ffffffffffffffff81111561402957600080fd5b61403585828601613c82565b92509250509250929050565b60006020828403121561405357600080fd5b600082013567ffffffffffffffff81111561406d57600080fd5b61407984828501613ccc565b91505092915050565b60006020828403121561409457600080fd5b60006140a284828501613cf6565b91505092915050565b600080600080608085870312156140c157600080fd5b60006140cf87828801613cf6565b94505060206140e087828801613bcf565b93505060406140f187828801613bcf565b925050606061410287828801613d0b565b91505092959194509250565b61411781615454565b82525050565b61412e61412982615454565b61559c565b82525050565b61413d81615466565b82525050565b61414c81615472565b82525050565b61416361415e82615472565b6155ae565b82525050565b6141728161547c565b82525050565b6000614183826152f1565b61418d8185615307565b935061419d8185602086016154ee565b6141a6816156b7565b840191505092915050565b60006141bc826152fc565b6141c68185615323565b93506141d68185602086016154ee565b6141df816156b7565b840191505092915050565b60006141f5826152fc565b6141ff8185615334565b935061420f8185602086016154ee565b80840191505092915050565b6000815461422881615521565b6142328186615334565b9450600182166000811461424d576001811461425e57614291565b60ff19831686528186019350614291565b614267856152dc565b60005b838110156142895781548189015260018201915060208101905061426a565b838801955050505b50505092915050565b60006142a7600d83615334565b91507f636f6e74726163742e6a736f6e000000000000000000000000000000000000006000830152600d82019050919050565b60006142e7602383615323565b91507f4d696e743a20756e61626c6520746f2073656e64206368616e676520746f207560008301527f73657200000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061434d601c83615334565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b600061438d603283615323565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006143f3602683615323565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614459601c83615323565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614499601283615323565b91507f496e73756666696369656e742046756e647300000000000000000000000000006000830152602082019050919050565b60006144d9602483615323565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061453f601983615323565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061457f601783615323565b91507f4e6f7420656e6f75676820617661696c6162696c6974790000000000000000006000830152602082019050919050565b60006145bf602c83615323565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614625602683615323565b91507f4578636565647320726573657276656420476f6c64656e204e6f6f646c65732060008301527f737570706c7900000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061468b601d83615323565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b60006146cb602483615323565b91507f617474656d707420746f207265656e7465722061206c6f636b65642066756e6360008301527f74696f6e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614731603883615323565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614797602a83615323565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006147fd602983615323565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614863602083615323565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006148a3602c83615323565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614909600583615334565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614949602083615323565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614989602983615323565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149ef602f83615323565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614a55601f83615323565b91507f45786365656473207265736572766564204e6f6f646c657320737570706c79006000830152602082019050919050565b6000614a95601883615323565b91507f5369676e617475726520646f6573206e6f74206d6174636800000000000000006000830152602082019050919050565b6000614ad5602183615323565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b3b601e83615323565b91507f45786365656473204d617820616c6c6f776564207065722077616c6c657400006000830152602082019050919050565b6000614b7b600683615334565b91507f302e6a736f6e00000000000000000000000000000000000000000000000000006000830152600682019050919050565b6000614bbb602083615323565b91507f5374617274696e6720696e64657820626c6f636b206d757374206265207365746000830152602082019050919050565b6000614bfb600083615318565b9150600082019050919050565b6000614c15603183615323565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614c7b602383615323565b91507f45786365656473206d617820616c6c6f77656420706572207472616e7361637460008301527f696f6e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b614cdd816154c8565b82525050565b614cec816154d2565b82525050565b6000614cfe828561411d565b601482019150614d0e828461411d565b6014820191508190509392505050565b6000614d2a828561421b565b9150614d3682846141ea565b9150614d41826148fc565b91508190509392505050565b6000614d59828461421b565b9150614d648261429a565b915081905092915050565b6000614d7b828461421b565b9150614d8682614b6e565b915081905092915050565b6000614d9c82614340565b9150614da88284614152565b60208201915081905092915050565b6000614dc282614bee565b9150819050919050565b6000602082019050614de1600083018461410e565b92915050565b6000608082019050614dfc600083018761410e565b614e09602083018661410e565b614e166040830185614cd4565b8181036060830152614e288184614178565b905095945050505050565b6000602082019050614e486000830184614134565b92915050565b6000608082019050614e636000830187614143565b614e706020830186614ce3565b614e7d6040830185614143565b614e8a6060830184614143565b95945050505050565b6000602082019050614ea86000830184614169565b92915050565b60006020820190508181036000830152614ec881846141b1565b905092915050565b60006020820190508181036000830152614ee9816142da565b9050919050565b60006020820190508181036000830152614f0981614380565b9050919050565b60006020820190508181036000830152614f29816143e6565b9050919050565b60006020820190508181036000830152614f498161444c565b9050919050565b60006020820190508181036000830152614f698161448c565b9050919050565b60006020820190508181036000830152614f89816144cc565b9050919050565b60006020820190508181036000830152614fa981614532565b9050919050565b60006020820190508181036000830152614fc981614572565b9050919050565b60006020820190508181036000830152614fe9816145b2565b9050919050565b6000602082019050818103600083015261500981614618565b9050919050565b600060208201905081810360008301526150298161467e565b9050919050565b60006020820190508181036000830152615049816146be565b9050919050565b6000602082019050818103600083015261506981614724565b9050919050565b600060208201905081810360008301526150898161478a565b9050919050565b600060208201905081810360008301526150a9816147f0565b9050919050565b600060208201905081810360008301526150c981614856565b9050919050565b600060208201905081810360008301526150e981614896565b9050919050565b600060208201905081810360008301526151098161493c565b9050919050565b600060208201905081810360008301526151298161497c565b9050919050565b60006020820190508181036000830152615149816149e2565b9050919050565b6000602082019050818103600083015261516981614a48565b9050919050565b6000602082019050818103600083015261518981614a88565b9050919050565b600060208201905081810360008301526151a981614ac8565b9050919050565b600060208201905081810360008301526151c981614b2e565b9050919050565b600060208201905081810360008301526151e981614bae565b9050919050565b6000602082019050818103600083015261520981614c08565b9050919050565b6000602082019050818103600083015261522981614c6e565b9050919050565b60006020820190506152456000830184614cd4565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561527257615271615688565b5b8060405250919050565b600067ffffffffffffffff82111561529757615296615688565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156152c7576152c6615688565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061534a826154c8565b9150615355836154c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561538a576153896155fb565b5b828201905092915050565b60006153a0826154c8565b91506153ab836154c8565b9250826153bb576153ba61562a565b5b828204905092915050565b60006153d1826154c8565b91506153dc836154c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615415576154146155fb565b5b828202905092915050565b600061542b826154c8565b9150615436836154c8565b925082821015615449576154486155fb565b5b828203905092915050565b600061545f826154a8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561550c5780820151818401526020810190506154f1565b8381111561551b576000848401525b50505050565b6000600282049050600182168061553957607f821691505b6020821081141561554d5761554c615659565b5b50919050565b600061555e826154c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615591576155906155fb565b5b600182019050919050565b60006155a7826155b8565b9050919050565b6000819050919050565b60006155c3826156c8565b9050919050565b60006155d5826154c8565b91506155e0836154c8565b9250826155f0576155ef61562a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6156de81615454565b81146156e957600080fd5b50565b6156f581615466565b811461570057600080fd5b50565b61570c81615472565b811461571757600080fd5b50565b6157238161547c565b811461572e57600080fd5b50565b61573a816154c8565b811461574557600080fd5b50565b615751816154d2565b811461575c57600080fd5b5056fea2646970667358221220cb075f3909d41cb697118ec12b528ea28eba1675eada36d5c4abfc45f84c9ded64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c91c0462116100f7578063e8a3d48511610095578063eb1855631161006f578063eb18556314610b92578063f2fde38b14610bbb578063f8b2cb4f14610be4578063f968adbe14610c215761035b565b8063e8a3d48514610b13578063e985e9c514610b3e578063e986655014610b7b5761035b565b8063d5dc3efd116100d1578063d5dc3efd14610a7d578063d829210a14610a94578063e268e4d314610abf578063e36d649814610ae85761035b565b8063c91c046214610a12578063ca80014414610a29578063cb774d4714610a525761035b565b8063b68e8c9111610164578063c1dd27dc1161013e578063c1dd27dc14610944578063c6ab67a314610981578063c6f6f216146109ac578063c87b56dd146109d55761035b565b8063b68e8c91146108d9578063b88d4fde146108f0578063bb01f6ad146109195761035b565b8063a035b1fe116101a0578063a035b1fe14610845578063a22cb46514610870578063a475b5dd14610899578063b0b92263146108b05761035b565b80638da5cb5b146107c657806391b7f5ed146107f157806395d89b411461081a5761035b565b80633ccfd60b116102a057806357153fb41161023e5780636ed3f50c116102185780636ed3f50c1461071c57806370a0823114610747578063715018a614610784578063736889141461079b5761035b565b806357153fb4146106985780635b7633d0146106b45780636352211e146106df5761035b565b806349a772b51161027a57806349a772b5146105ee578063518302271461061957806353135ca01461064457806355f804b31461066f5761035b565b80633ccfd60b1461058357806342842e0e1461059a578063453c2310146105c35761035b565b806310ad132a1161030d57806323b872dd116102e757806323b872dd1461050157806325fd90f31461052a578063290fd843146105555780632e56f71e1461056c5761035b565b806310ad132a1461047d578063150b7a021461049957806318160ddd146104d65761035b565b806301ffc9a71461035d578063046dc1661461039a57806306fdde03146103c3578063081812fc146103ee578063095ea7b31461042b57806310969523146104545761035b565b3661035b57005b005b34801561036957600080fd5b50610384600480360381019061037f9190613faa565b610c4c565b6040516103919190614e33565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613d20565b610dd5565b005b3480156103cf57600080fd5b506103d8610e95565b6040516103e59190614eae565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190614082565b610f27565b6040516104229190614dcc565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190613f6e565b610fac565b005b34801561046057600080fd5b5061047b60048036038101906104769190613ffc565b6110b6565b005b61049760048036038101906104929190614082565b611148565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190613dd4565b611504565b6040516104cd9190614e93565b60405180910390f35b3480156104e257600080fd5b506104eb611519565b6040516104f89190615230565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190613d85565b611523565b005b34801561053657600080fd5b5061053f61157c565b60405161054c9190614e33565b60405180910390f35b34801561056157600080fd5b5061056a61158f565b005b34801561057857600080fd5b50610581611628565b005b34801561058f57600080fd5b506105986116c1565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190613d85565b61178c565b005b3480156105cf57600080fd5b506105d86117ac565b6040516105e59190615230565b60405180910390f35b3480156105fa57600080fd5b506106036117b2565b6040516106109190615230565b60405180910390f35b34801561062557600080fd5b5061062e6117b8565b60405161063b9190614e33565b60405180910390f35b34801561065057600080fd5b506106596117cb565b6040516106669190614e33565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190614041565b6117de565b005b6106b260048036038101906106ad91906140ab565b611874565b005b3480156106c057600080fd5b506106c9611c4e565b6040516106d69190614dcc565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190614082565b611c74565b6040516107139190614dcc565b60405180910390f35b34801561072857600080fd5b50610731611d26565b60405161073e9190615230565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613d20565b611d2c565b60405161077b9190615230565b60405180910390f35b34801561079057600080fd5b50610799611de4565b005b3480156107a757600080fd5b506107b0611e6c565b6040516107bd9190614dcc565b60405180910390f35b3480156107d257600080fd5b506107db611e92565b6040516107e89190614dcc565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190614082565b611ebb565b005b34801561082657600080fd5b5061082f611f41565b60405161083c9190614eae565b60405180910390f35b34801561085157600080fd5b5061085a611fd3565b6040516108679190615230565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613ecf565b611fd9565b005b3480156108a557600080fd5b506108ae612145565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190614082565b6121de565b005b3480156108e557600080fd5b506108ee612264565b005b3480156108fc57600080fd5b5061091760048036038101906109129190613e54565b6122fd565b005b34801561092557600080fd5b5061092e612358565b60405161093b9190615230565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613f0b565b61235e565b6040516109789190614e33565b60405180910390f35b34801561098d57600080fd5b5061099661251a565b6040516109a39190614eae565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190614082565b6125a8565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190614082565b61262e565b604051610a099190614eae565b60405180910390f35b348015610a1e57600080fd5b50610a276126ef565b005b348015610a3557600080fd5b50610a506004803603810190610a4b9190613f6e565b612788565b005b348015610a5e57600080fd5b50610a676128c7565b604051610a749190615230565b60405180910390f35b348015610a8957600080fd5b50610a926128cd565b005b348015610aa057600080fd5b50610aa9612997565b604051610ab69190615230565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190614082565b61299d565b005b348015610af457600080fd5b50610afd612a23565b604051610b0a9190615230565b60405180910390f35b348015610b1f57600080fd5b50610b28612a29565b604051610b359190614eae565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613d49565b612a51565b604051610b729190614e33565b60405180910390f35b348015610b8757600080fd5b50610b90612ae5565b005b348015610b9e57600080fd5b50610bb96004803603810190610bb49190613f6e565b612c64565b005b348015610bc757600080fd5b50610be26004803603810190610bdd9190613d20565b612d96565b005b348015610bf057600080fd5b50610c0b6004803603810190610c069190613d20565b612e8e565b604051610c189190615230565b60405180910390f35b348015610c2d57600080fd5b50610c36612ed7565b604051610c439190615230565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dce575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610ddd612edd565b73ffffffffffffffffffffffffffffffffffffffff16610dfb611e92565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906150f0565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610ea490615521565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090615521565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b5050505050905090565b6000610f3282612ee5565b610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906150d0565b60405180910390fd5b6013600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fb782611c74565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90615190565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061106857506110678133612a51565b5b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90615050565b60405180910390fd5b6110b18383612f51565b505050565b6110be612edd565b73ffffffffffffffffffffffffffffffffffffffff166110dc611e92565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611129906150f0565b60405180910390fd5b818160069190611143929190613a00565b505050565b600060149054906101000a900460ff1615611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90615030565b60405180910390fd5b6001600060146101000a81548160ff021916908315150217905550600760009054906101000a900460ff166111cc57600080fd5b600954600d54600a54836111e0919061533f565b6111ea919061533f565b1061122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614fb0565b60405180910390fd5b600c5481111561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690615210565b60405180910390fd5b600b54816015600061127f612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112c4919061533f565b1115611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906151b0565b60405180910390fd5b6008548161131391906153c6565b341015611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90614f50565b60405180910390fd5b6000600a549050600034905060006008548461137191906153c6565b8261137c9190615420565b905060005b8481101561142c576113a5611394612edd565b82866113a0919061533f565b61300a565b600a60008154809291906113b890615553565b9190505550601560006113c9612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061141490615553565b9190505550808061142490615553565b915050611381565b5060008111156114e45760003373ffffffffffffffffffffffffffffffffffffffff168260405161145c90614db7565b60006040518083038185875af1925050503d8060008114611499576040519150601f19603f3d011682016040523d82523d6000602084013e61149e565b606091505b50509050806114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990614ed0565b60405180910390fd5b505b50505060008060146101000a81548160ff02191690831515021790555050565b600063150b7a0260e01b905095945050505050565b6000600a54905090565b61152d3382613028565b61156c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611563906151f0565b60405180910390fd5b611577838383613106565b505050565b600760009054906101000a900460ff1681565b611597612edd565b73ffffffffffffffffffffffffffffffffffffffff166115b5611e92565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906150f0565b60405180910390fd5b6000600760016101000a81548160ff021916908315150217905550565b611630612edd565b73ffffffffffffffffffffffffffffffffffffffff1661164e611e92565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906150f0565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6116c9612edd565b73ffffffffffffffffffffffffffffffffffffffff166116e7611e92565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611734906150f0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611788573d6000803e3d6000fd5b5050565b6117a7838383604051806020016040528060008152506122fd565b505050565b600b5481565b600a5481565b600760029054906101000a900460ff1681565b600760019054906101000a900460ff1681565b6117e6612edd565b73ffffffffffffffffffffffffffffffffffffffff16611804611e92565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906150f0565b60405180910390fd5b8060059080519060200190611870929190613a86565b5050565b8282826118833384848461235e565b61188c57600080fd5b600060149054906101000a900460ff16156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390615030565b60405180910390fd5b6001600060146101000a81548160ff021916908315150217905550600760019054906101000a900460ff1661191057600080fd5b600954600d54600a5489611924919061533f565b61192e919061533f565b1061196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590614fb0565b60405180910390fd5b600c548711156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90615210565b60405180910390fd5b600b5487601560006119c3612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a08919061533f565b1115611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906151b0565b60405180910390fd5b60085487611a5791906153c6565b341015611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9090614f50565b60405180910390fd5b6000600a549050600034905060006008548a611ab591906153c6565b82611ac09190615420565b905060005b8a811015611b7057611ae9611ad8612edd565b8286611ae4919061533f565b61300a565b600a6000815480929190611afc90615553565b919050555060156000611b0d612edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b5890615553565b91905055508080611b6890615553565b915050611ac5565b506000811115611c285760003373ffffffffffffffffffffffffffffffffffffffff1682604051611ba090614db7565b60006040518083038185875af1925050503d8060008114611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b5050905080611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614ed0565b60405180910390fd5b505b50505060008060146101000a81548160ff02191690831515021790555050505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806011600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490615090565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490615070565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dec612edd565b73ffffffffffffffffffffffffffffffffffffffff16611e0a611e92565b73ffffffffffffffffffffffffffffffffffffffff1614611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e57906150f0565b60405180910390fd5b611e6a6000613362565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ec3612edd565b73ffffffffffffffffffffffffffffffffffffffff16611ee1611e92565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e906150f0565b60405180910390fd5b8060088190555050565b606060048054611f5090615521565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7c90615521565b8015611fc95780601f10611f9e57610100808354040283529160200191611fc9565b820191906000526020600020905b815481529060010190602001808311611fac57829003601f168201915b5050505050905090565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614f90565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121399190614e33565b60405180910390a35050565b61214d612edd565b73ffffffffffffffffffffffffffffffffffffffff1661216b611e92565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b8906150f0565b60405180910390fd5b6001600760026101000a81548160ff021916908315150217905550565b6121e6612edd565b73ffffffffffffffffffffffffffffffffffffffff16612204611e92565b73ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612251906150f0565b60405180910390fd5b8060098190555050565b61226c612edd565b73ffffffffffffffffffffffffffffffffffffffff1661228a611e92565b73ffffffffffffffffffffffffffffffffffffffff16146122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d7906150f0565b60405180910390fd5b6001600760016101000a81548160ff021916908315150217905550565b6123073383613028565b612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906151f0565b60405180910390fd5b61235284848484613426565b50505050565b60095481565b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686604051602001612396929190614cf2565b6040516020818303038152906040528051906020012090506000816040516020016123c19190614d91565b6040516020818303038152906040528051906020012090506000600182868989604051600081526020016040526040516123fe9493929190614e4e565b6020604051602081039080840390855afa158015612420573d6000803e3d6000fd5b5050506020604051035190508073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b390615170565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149350505050949350505050565b6006805461252790615521565b80601f016020809104026020016040519081016040528092919081815260200182805461255390615521565b80156125a05780601f10612575576101008083540402835291602001916125a0565b820191906000526020600020905b81548152906001019060200180831161258357829003601f168201915b505050505081565b6125b0612edd565b73ffffffffffffffffffffffffffffffffffffffff166125ce611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b906150f0565b60405180910390fd5b80600c8190555050565b606061263982612ee5565b612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90615130565b60405180910390fd5b60001515600760029054906101000a900460ff16151514156126bc5760056040516020016126a69190614d6f565b60405160208183030381529060405290506126ea565b60056126c783613482565b6040516020016126d8929190614d1e565b60405160208183030381529060405290505b919050565b6126f7612edd565b73ffffffffffffffffffffffffffffffffffffffff16612715611e92565b73ffffffffffffffffffffffffffffffffffffffff161461276b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612762906150f0565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b612790612edd565b73ffffffffffffffffffffffffffffffffffffffff166127ae611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb906150f0565b60405180910390fd5b600e54600d546128149190615420565b811115612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90615150565b60405180910390fd5b6000600a54905060005b828110156128a85761287d848284612878919061533f565b61300a565b600a600081548092919061289090615553565b919050555080806128a090615553565b915050612860565b5081600d60008282546128bb9190615420565b92505081905550505050565b600f5481565b6128d5612edd565b73ffffffffffffffffffffffffffffffffffffffff166128f3611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612940906150f0565b60405180910390fd5b6000600f541461298e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298590615010565b60405180910390fd5b43601081905550565b600d5481565b6129a5612edd565b73ffffffffffffffffffffffffffffffffffffffff166129c3611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a10906150f0565b60405180910390fd5b80600b8190555050565b60105481565b60606005604051602001612a3d9190614d4d565b604051602081830303815290604052905090565b6000601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612aed612edd565b73ffffffffffffffffffffffffffffffffffffffff16612b0b611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b58906150f0565b60405180910390fd5b6000600f5414612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90615010565b60405180910390fd5b60006010541415612bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be3906151d0565b60405180910390fd5b6009546010544060001c612c0091906155ca565b600f8190555060ff60105443612c1691906155ca565b1115612c4157600954600143612c2c9190615420565b4060001c612c3a91906155ca565b600f819055505b6000600f541415612c62576001600f54612c5b919061533f565b600f819055505b565b612c6c612edd565b73ffffffffffffffffffffffffffffffffffffffff16612c8a611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd7906150f0565b60405180910390fd5b600e54811115612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90614ff0565b60405180910390fd5b6000600a54905060005b82811015612d7757612d4c848284612d47919061533f565b61300a565b600a6000815480929190612d5f90615553565b91905055508080612d6f90615553565b915050612d2f565b5081600e6000828254612d8a9190615420565b92505081905550505050565b612d9e612edd565b73ffffffffffffffffffffffffffffffffffffffff16612dbc611e92565b73ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e09906150f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990614f10565b60405180910390fd5b612e8b81613362565b50565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166011600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816013600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fc483611c74565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61302482826040518060200160405280600081525061362f565b5050565b600061303382612ee5565b613072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306990614fd0565b60405180910390fd5b600061307d83611c74565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130ec57508373ffffffffffffffffffffffffffffffffffffffff166130d484610f27565b73ffffffffffffffffffffffffffffffffffffffff16145b806130fd57506130fc8185612a51565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661312682611c74565b73ffffffffffffffffffffffffffffffffffffffff161461317c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317390615110565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e390614f70565b60405180910390fd5b6131f783838361368a565b613202600082612f51565b6001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132529190615420565b925050819055506001601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132a9919061533f565b92505081905550816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613431848484613106565b61343d8484848461368f565b61347c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347390614ef0565b60405180910390fd5b50505050565b606060008214156134ca576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061362a565b600082905060005b600082146134fc5780806134e590615553565b915050600a826134f59190615395565b91506134d2565b60008167ffffffffffffffff81111561353e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135705781602001600182028036833780820191505090505b5090505b60008514613623576001826135899190615420565b9150600a8561359891906155ca565b60306135a4919061533f565b60f81b8183815181106135e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561361c9190615395565b9450613574565b8093505050505b919050565b613639838361381f565b613646600084848461368f565b613685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367c90614ef0565b60405180910390fd5b505050565b505050565b60006136b08473ffffffffffffffffffffffffffffffffffffffff166139ed565b15613812578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016136f49493929190614de7565b602060405180830381600087803b15801561370e57600080fd5b505af192505050801561373f57506040513d601f19601f8201168201806040525081019061373c9190613fd3565b60015b6137c2573d806000811461376f576040519150601f19603f3d011682016040523d82523d6000602084013e613774565b606091505b506000815114156137ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b190614ef0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613817565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561388f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613886906150b0565b60405180910390fd5b61389881612ee5565b156138d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138cf90614f30565b60405180910390fd5b6138e46000838361368a565b6001601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613934919061533f565b92505081905550816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a0c90615521565b90600052602060002090601f016020900481019282613a2e5760008555613a75565b82601f10613a4757803560ff1916838001178555613a75565b82800160010185558215613a75579182015b82811115613a74578235825591602001919060010190613a59565b5b509050613a829190613b0c565b5090565b828054613a9290615521565b90600052602060002090601f016020900481019282613ab45760008555613afb565b82601f10613acd57805160ff1916838001178555613afb565b82800160010185558215613afb579182015b82811115613afa578251825591602001919060010190613adf565b5b509050613b089190613b0c565b5090565b5b80821115613b25576000816000905550600101613b0d565b5090565b6000613b3c613b378461527c565b61524b565b905082815260208101848484011115613b5457600080fd5b613b5f8482856154df565b509392505050565b6000613b7a613b75846152ac565b61524b565b905082815260208101848484011115613b9257600080fd5b613b9d8482856154df565b509392505050565b600081359050613bb4816156d5565b92915050565b600081359050613bc9816156ec565b92915050565b600081359050613bde81615703565b92915050565b600081359050613bf38161571a565b92915050565b600081519050613c088161571a565b92915050565b60008083601f840112613c2057600080fd5b8235905067ffffffffffffffff811115613c3957600080fd5b602083019150836001820283011115613c5157600080fd5b9250929050565b600082601f830112613c6957600080fd5b8135613c79848260208601613b29565b91505092915050565b60008083601f840112613c9457600080fd5b8235905067ffffffffffffffff811115613cad57600080fd5b602083019150836001820283011115613cc557600080fd5b9250929050565b600082601f830112613cdd57600080fd5b8135613ced848260208601613b67565b91505092915050565b600081359050613d0581615731565b92915050565b600081359050613d1a81615748565b92915050565b600060208284031215613d3257600080fd5b6000613d4084828501613ba5565b91505092915050565b60008060408385031215613d5c57600080fd5b6000613d6a85828601613ba5565b9250506020613d7b85828601613ba5565b9150509250929050565b600080600060608486031215613d9a57600080fd5b6000613da886828701613ba5565b9350506020613db986828701613ba5565b9250506040613dca86828701613cf6565b9150509250925092565b600080600080600060808688031215613dec57600080fd5b6000613dfa88828901613ba5565b9550506020613e0b88828901613ba5565b9450506040613e1c88828901613cf6565b935050606086013567ffffffffffffffff811115613e3957600080fd5b613e4588828901613c0e565b92509250509295509295909350565b60008060008060808587031215613e6a57600080fd5b6000613e7887828801613ba5565b9450506020613e8987828801613ba5565b9350506040613e9a87828801613cf6565b925050606085013567ffffffffffffffff811115613eb757600080fd5b613ec387828801613c58565b91505092959194509250565b60008060408385031215613ee257600080fd5b6000613ef085828601613ba5565b9250506020613f0185828601613bba565b9150509250929050565b60008060008060808587031215613f2157600080fd5b6000613f2f87828801613ba5565b9450506020613f4087828801613bcf565b9350506040613f5187828801613bcf565b9250506060613f6287828801613d0b565b91505092959194509250565b60008060408385031215613f8157600080fd5b6000613f8f85828601613ba5565b9250506020613fa085828601613cf6565b9150509250929050565b600060208284031215613fbc57600080fd5b6000613fca84828501613be4565b91505092915050565b600060208284031215613fe557600080fd5b6000613ff384828501613bf9565b91505092915050565b6000806020838503121561400f57600080fd5b600083013567ffffffffffffffff81111561402957600080fd5b61403585828601613c82565b92509250509250929050565b60006020828403121561405357600080fd5b600082013567ffffffffffffffff81111561406d57600080fd5b61407984828501613ccc565b91505092915050565b60006020828403121561409457600080fd5b60006140a284828501613cf6565b91505092915050565b600080600080608085870312156140c157600080fd5b60006140cf87828801613cf6565b94505060206140e087828801613bcf565b93505060406140f187828801613bcf565b925050606061410287828801613d0b565b91505092959194509250565b61411781615454565b82525050565b61412e61412982615454565b61559c565b82525050565b61413d81615466565b82525050565b61414c81615472565b82525050565b61416361415e82615472565b6155ae565b82525050565b6141728161547c565b82525050565b6000614183826152f1565b61418d8185615307565b935061419d8185602086016154ee565b6141a6816156b7565b840191505092915050565b60006141bc826152fc565b6141c68185615323565b93506141d68185602086016154ee565b6141df816156b7565b840191505092915050565b60006141f5826152fc565b6141ff8185615334565b935061420f8185602086016154ee565b80840191505092915050565b6000815461422881615521565b6142328186615334565b9450600182166000811461424d576001811461425e57614291565b60ff19831686528186019350614291565b614267856152dc565b60005b838110156142895781548189015260018201915060208101905061426a565b838801955050505b50505092915050565b60006142a7600d83615334565b91507f636f6e74726163742e6a736f6e000000000000000000000000000000000000006000830152600d82019050919050565b60006142e7602383615323565b91507f4d696e743a20756e61626c6520746f2073656e64206368616e676520746f207560008301527f73657200000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061434d601c83615334565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b600061438d603283615323565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006143f3602683615323565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614459601c83615323565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614499601283615323565b91507f496e73756666696369656e742046756e647300000000000000000000000000006000830152602082019050919050565b60006144d9602483615323565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061453f601983615323565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061457f601783615323565b91507f4e6f7420656e6f75676820617661696c6162696c6974790000000000000000006000830152602082019050919050565b60006145bf602c83615323565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614625602683615323565b91507f4578636565647320726573657276656420476f6c64656e204e6f6f646c65732060008301527f737570706c7900000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061468b601d83615323565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b60006146cb602483615323565b91507f617474656d707420746f207265656e7465722061206c6f636b65642066756e6360008301527f74696f6e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614731603883615323565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614797602a83615323565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006147fd602983615323565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614863602083615323565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006148a3602c83615323565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614909600583615334565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614949602083615323565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614989602983615323565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149ef602f83615323565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614a55601f83615323565b91507f45786365656473207265736572766564204e6f6f646c657320737570706c79006000830152602082019050919050565b6000614a95601883615323565b91507f5369676e617475726520646f6573206e6f74206d6174636800000000000000006000830152602082019050919050565b6000614ad5602183615323565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b3b601e83615323565b91507f45786365656473204d617820616c6c6f776564207065722077616c6c657400006000830152602082019050919050565b6000614b7b600683615334565b91507f302e6a736f6e00000000000000000000000000000000000000000000000000006000830152600682019050919050565b6000614bbb602083615323565b91507f5374617274696e6720696e64657820626c6f636b206d757374206265207365746000830152602082019050919050565b6000614bfb600083615318565b9150600082019050919050565b6000614c15603183615323565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614c7b602383615323565b91507f45786365656473206d617820616c6c6f77656420706572207472616e7361637460008301527f696f6e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b614cdd816154c8565b82525050565b614cec816154d2565b82525050565b6000614cfe828561411d565b601482019150614d0e828461411d565b6014820191508190509392505050565b6000614d2a828561421b565b9150614d3682846141ea565b9150614d41826148fc565b91508190509392505050565b6000614d59828461421b565b9150614d648261429a565b915081905092915050565b6000614d7b828461421b565b9150614d8682614b6e565b915081905092915050565b6000614d9c82614340565b9150614da88284614152565b60208201915081905092915050565b6000614dc282614bee565b9150819050919050565b6000602082019050614de1600083018461410e565b92915050565b6000608082019050614dfc600083018761410e565b614e09602083018661410e565b614e166040830185614cd4565b8181036060830152614e288184614178565b905095945050505050565b6000602082019050614e486000830184614134565b92915050565b6000608082019050614e636000830187614143565b614e706020830186614ce3565b614e7d6040830185614143565b614e8a6060830184614143565b95945050505050565b6000602082019050614ea86000830184614169565b92915050565b60006020820190508181036000830152614ec881846141b1565b905092915050565b60006020820190508181036000830152614ee9816142da565b9050919050565b60006020820190508181036000830152614f0981614380565b9050919050565b60006020820190508181036000830152614f29816143e6565b9050919050565b60006020820190508181036000830152614f498161444c565b9050919050565b60006020820190508181036000830152614f698161448c565b9050919050565b60006020820190508181036000830152614f89816144cc565b9050919050565b60006020820190508181036000830152614fa981614532565b9050919050565b60006020820190508181036000830152614fc981614572565b9050919050565b60006020820190508181036000830152614fe9816145b2565b9050919050565b6000602082019050818103600083015261500981614618565b9050919050565b600060208201905081810360008301526150298161467e565b9050919050565b60006020820190508181036000830152615049816146be565b9050919050565b6000602082019050818103600083015261506981614724565b9050919050565b600060208201905081810360008301526150898161478a565b9050919050565b600060208201905081810360008301526150a9816147f0565b9050919050565b600060208201905081810360008301526150c981614856565b9050919050565b600060208201905081810360008301526150e981614896565b9050919050565b600060208201905081810360008301526151098161493c565b9050919050565b600060208201905081810360008301526151298161497c565b9050919050565b60006020820190508181036000830152615149816149e2565b9050919050565b6000602082019050818103600083015261516981614a48565b9050919050565b6000602082019050818103600083015261518981614a88565b9050919050565b600060208201905081810360008301526151a981614ac8565b9050919050565b600060208201905081810360008301526151c981614b2e565b9050919050565b600060208201905081810360008301526151e981614bae565b9050919050565b6000602082019050818103600083015261520981614c08565b9050919050565b6000602082019050818103600083015261522981614c6e565b9050919050565b60006020820190506152456000830184614cd4565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561527257615271615688565b5b8060405250919050565b600067ffffffffffffffff82111561529757615296615688565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156152c7576152c6615688565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061534a826154c8565b9150615355836154c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561538a576153896155fb565b5b828201905092915050565b60006153a0826154c8565b91506153ab836154c8565b9250826153bb576153ba61562a565b5b828204905092915050565b60006153d1826154c8565b91506153dc836154c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615415576154146155fb565b5b828202905092915050565b600061542b826154c8565b9150615436836154c8565b925082821015615449576154486155fb565b5b828203905092915050565b600061545f826154a8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561550c5780820151818401526020810190506154f1565b8381111561551b576000848401525b50505050565b6000600282049050600182168061553957607f821691505b6020821081141561554d5761554c615659565b5b50919050565b600061555e826154c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615591576155906155fb565b5b600182019050919050565b60006155a7826155b8565b9050919050565b6000819050919050565b60006155c3826156c8565b9050919050565b60006155d5826154c8565b91506155e0836154c8565b9250826155f0576155ef61562a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6156de81615454565b81146156e957600080fd5b50565b6156f581615466565b811461570057600080fd5b50565b61570c81615472565b811461571757600080fd5b50565b6157238161547c565b811461572e57600080fd5b50565b61573a816154c8565b811461574557600080fd5b50565b615751816154d2565b811461575c57600080fd5b5056fea2646970667358221220cb075f3909d41cb697118ec12b528ea28eba1675eada36d5c4abfc45f84c9ded64736f6c63430008000033

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.