ETH Price: $3,460.88 (+1.55%)
Gas: 7 Gwei

Token

GRILLZ GANG (GRILLZ)
 

Overview

Max Total Supply

5,478 GRILLZ

Holders

2,502

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
directivecreator.eth
Balance
244 GRILLZ
0xc6dc654b5aa7969a24c7e4442a52e61fb8b24827
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GRILLZ GANG is a collection of 5,555 unique GRILLZ NFTs shining on the Ethereum blockchain. In addition to lighting up the room, your GRILLZ will grant you membership to GRILLZ GANG. Every Grillz is a key to the community. Visit Grillzgang.com for more details.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GrillzGang

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : GrillzGang.sol
// SPDX-License-Identifier: MIT
/*
  ______   _______   ______  __        __        ________ 
 /      \ |       \ |      \|  \      |  \      |        \
|  $$$$$$\| $$$$$$$\ \$$$$$$| $$      | $$       \$$$$$$$$
| $$ __\$$| $$__| $$  | $$  | $$      | $$          /  $$ 
| $$|    \| $$    $$  | $$  | $$      | $$         /  $$  
| $$ \$$$$| $$$$$$$\  | $$  | $$      | $$        /  $$   
| $$__| $$| $$  | $$ _| $$_ | $$_____ | $$_____  /  $$___ 
 \$$    $$| $$  | $$|   $$ \| $$     \| $$     \|  $$    \
  \$$$$$$  \$$   \$$ \$$$$$$ \$$$$$$$$ \$$$$$$$$ \$$$$$$$$                                                                                                              
                                                          
  ______    ______   __    __   ______                    
 /      \  /      \ |  \  |  \ /      \                   
|  $$$$$$\|  $$$$$$\| $$\ | $$|  $$$$$$\                  
| $$ __\$$| $$__| $$| $$$\| $$| $$ __\$$                  
| $$|    \| $$    $$| $$$$\ $$| $$|    \                  
| $$ \$$$$| $$$$$$$$| $$\$$ $$| $$ \$$$$                  
| $$__| $$| $$  | $$| $$ \$$$$| $$__| $$                  
 \$$    $$| $$  | $$| $$  \$$$ \$$    $$                  
  \$$$$$$  \$$   \$$ \$$   \$$  \$$$$$$                   
                                                          
https://grillzgang.com/                                        
*/                                                        

pragma solidity ^0.8.4;

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

contract GrillzGang is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using SafeMath for uint256;
    using Strings for uint256;
    using ECDSA for bytes32;

    Counters.Counter public tokenIdCounter;
    Counters.Counter public veeFriendsIdCounter;
    Counters.Counter public prizeIdCounter;

    uint public constant MAX_GRILLZ = 5555;
    uint public constant VEEFRIENDS_MINTS = 555;
    uint public constant PRIZE_MINTS = 55;
    uint public constant RESERVED_MINTS = VEEFRIENDS_MINTS + PRIZE_MINTS;
    
    bool public BLOCK_CONTRACTS = true;
    bool public ENABLE_DIRECT_MINT = false;
    bool public SALE_IS_ACTIVE = false;
    bool public PRESALE_IS_ACTIVE = false;
    uint public LIMIT_PER_ACCOUNT = 5;
    uint public mintPrice = 60000000000000000; // 0.06 ETH
    uint public startingIndex;
    uint public startingIndexBlock;
    string public PROVENANCE_HASH;

    mapping(address => uint) public earlyMintAllowance;
    mapping(address => bool) public veeFriendsWinners;
    mapping(address => uint) private _publicSaleMintCounts;
    mapping(string => bool) private _usedNonces;

    string private _baseTokenURI;
    address private _signerAddress;


    constructor() ERC721("GRILLZ GANG", "GRILLZ") {
        tokenIdCounter.increment();
        veeFriendsIdCounter.increment();
        prizeIdCounter.increment();
    }

    function mintGrillz(uint _count, bytes32 hash, bytes memory signature, string memory nonce) external payable {
        require(SALE_IS_ACTIVE, "Sale not active");
        require(ENABLE_DIRECT_MINT || matchAddresSigner(hash, signature), "Direct mint not allowed");
        require(ENABLE_DIRECT_MINT || !_usedNonces[nonce], "Hash used");
        require(ENABLE_DIRECT_MINT || hashTransaction(_msgSender(), _count, nonce) == hash, "Hash failed");
        require(_publicSaleMintCounts[_msgSender()].add(_count) <= LIMIT_PER_ACCOUNT, "Exceeds available mints");

        _mintGrillz(_msgSender(), _count);

        _publicSaleMintCounts[_msgSender()] += _count;
        _usedNonces[nonce] = true;
    }

    function earlyMintGrillz(uint _count) external payable {
        require(PRESALE_IS_ACTIVE, "Sale not active");
        require(_count <= earlyMintAllowance[_msgSender()], "Exceeds allowed amount");
        
        _mintGrillz(_msgSender(), _count);

        earlyMintAllowance[_msgSender()] -= _count;
    }

    function _mintGrillz(address to, uint _count) internal virtual {
        require(!BLOCK_CONTRACTS || tx.origin == _msgSender());
        require(_count > 0, "Count too low");
        require(msg.value >= price(_count), "Value below price");
        require(tokenIdCounter.current().sub(1).add(RESERVED_MINTS).add(_count) <= MAX_GRILLZ, "Exceeds available mints");

        for(uint i = 0; i < _count; i++){
            _safeMint(to, tokenIdCounter.current().add(RESERVED_MINTS));
            tokenIdCounter.increment();
        }
    }

    function veeFriendsMintGrillz() public {
        require(veeFriendsWinners[_msgSender()], "Exceeds allowed amount");
        require(veeFriendsIdCounter.current() <= VEEFRIENDS_MINTS, "Exceeds available mints");
        
        _safeMint(_msgSender(), veeFriendsIdCounter.current().add(PRIZE_MINTS));
        veeFriendsIdCounter.increment();
        
        veeFriendsWinners[_msgSender()] = false;
    }

    function reserveGrillz(address reserveAddress) external onlyOwner {
        require(startingIndex == 0);

        for(uint i = 0; i < PRIZE_MINTS; i++){
            _safeMint(reserveAddress, prizeIdCounter.current());
            prizeIdCounter.increment();
        }

        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function price(uint _count) public view returns (uint256) {
        return mintPrice * _count;
    }

    function calcStartingIndex() external onlyOwner {
        require(startingIndex == 0);
        require(startingIndexBlock != 0);

        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_GRILLZ;

        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_GRILLZ;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function setProvenanceHash(string calldata hash) external onlyOwner {
        PROVENANCE_HASH = hash;
    }

    function hashTransaction(address sender, uint256 count, string memory nonce) private pure returns(bytes32) {
        return keccak256(abi.encodePacked(
            "\x19Ethereum Signed Message:\n32",
            keccak256(abi.encodePacked(sender, count, nonce)))
        );
    }
    
    function matchAddresSigner(bytes32 hash, bytes memory signature) private view returns(bool) {
        return _signerAddress == hash.recover(signature);
    }

    function setEarlyMintAllowance(address[] calldata earlyMintAddresses, uint[] calldata allowableAmounts) external onlyOwner {
        for (uint i = 0; i < earlyMintAddresses.length; i++) {
            earlyMintAllowance[earlyMintAddresses[i]] = allowableAmounts[i];
        }
    }

    function setVeeFriendsWinners(address[] calldata veeFriendAddresses, bool winner) external onlyOwner {
        for (uint i = 0; i < veeFriendAddresses.length; i++) {
            veeFriendsWinners[veeFriendAddresses[i]] = winner;
        }
    }

    function setMintLimit(uint _mintLimit) external onlyOwner {
        LIMIT_PER_ACCOUNT = _mintLimit;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function setSignerAddress(address signer) external onlyOwner {
        _signerAddress = signer;
    }

    function toggleSaleStatus() external onlyOwner {
        SALE_IS_ACTIVE = !SALE_IS_ACTIVE;
    }

    function togglePreSaleStatus() external onlyOwner {
        PRESALE_IS_ACTIVE = !PRESALE_IS_ACTIVE;
    }

    function toggleDirectMint() external onlyOwner {
        ENABLE_DIRECT_MINT = !ENABLE_DIRECT_MINT;
    }

    function toggleBlockContracts() external onlyOwner {
        BLOCK_CONTRACTS = !BLOCK_CONTRACTS;
    }

    function withdrawAll(address payable _to) public payable onlyOwner {
        (bool sent, ) = _to.call{value: address(this).balance}("");
        require(sent);
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

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

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

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

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

File 3 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 17 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

File 5 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 7 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 9 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 10 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 11 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

File 12 of 17 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 13 of 17 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 15 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 16 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BLOCK_CONTRACTS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ENABLE_DIRECT_MINT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMIT_PER_ACCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GRILLZ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIZE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VEEFRIENDS_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyMintAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"earlyMintGrillz","outputs":[],"stateMutability":"payable","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"nonce","type":"string"}],"name":"mintGrillz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizeIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reserveAddress","type":"address"}],"name":"reserveGrillz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"earlyMintAddresses","type":"address[]"},{"internalType":"uint256[]","name":"allowableAmounts","type":"uint256[]"}],"name":"setEarlyMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"veeFriendAddresses","type":"address[]"},{"internalType":"bool","name":"winner","type":"bool"}],"name":"setVeeFriendsWinners","outputs":[],"stateMutability":"nonpayable","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":[],"name":"toggleBlockContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDirectMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"veeFriendsIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"veeFriendsMintGrillz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"veeFriendsWinners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff0219169083151502179055506005600f5566d529ae9e8600006010553480156200008d57600080fd5b506040518060400160405280600b81526020017f4752494c4c5a2047414e470000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4752494c4c5a000000000000000000000000000000000000000000000000000081525081600090805190602001906200011292919062000248565b5080600190805190602001906200012b92919062000248565b5050506000620001406200022a60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001f6600b6200023260201b62002a5d1760201c565b6200020d600c6200023260201b62002a5d1760201c565b62000224600d6200023260201b62002a5d1760201c565b6200035d565b600033905090565b6001816000016000828254019250508190555050565b8280546200025690620002f8565b90600052602060002090601f0160209004810192826200027a5760008555620002c6565b82601f106200029557805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c5578251825591602001919060010190620002a8565b5b509050620002d59190620002d9565b5090565b5b80821115620002f4576000816000905550600101620002da565b5090565b600060028204905060018216806200031157607f821691505b602082108114156200032857620003276200032e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615fa9806200036d6000396000f3fe6080604052600436106103345760003560e01c806370a08231116101ab578063b88d4fde116100f7578063e36d649811610095578063f2fde38b1161006f578063f2fde38b14610bb7578063f4f6af6e14610be0578063fa09e63014610bf7578063ff1b655614610c1357610334565b8063e36d649814610b33578063e396a90414610b5e578063e985e9c514610b7a57610334565b8063cb774d47116100d1578063cb774d4714610a89578063d0929e4314610ab4578063d7fbcdb214610af1578063e13f351a14610b1c57610334565b8063b88d4fde146109fa578063bf0a35a814610a23578063c87b56dd14610a4c57610334565b806398bdf6f511610164578063a22cb4651161013e578063a22cb46514610966578063a28ab6431461098f578063a5b739c3146109a6578063b7bca7a3146109d157610334565b806398bdf6f5146108e75780639e6a1d7d146109125780639ff540ab1461093b57610334565b806370a08231146107fd578063715018a61461083a57806378280c06146108515780637dcb733c1461087a5780638da5cb5b1461089157806395d89b41146108bc57610334565b80631dbf7fd31161028557806342842e0e1161022357806351d40d6c116101fd57806351d40d6c1461075057806355f804b31461076c5780636352211e146107955780636817c76c146107d257610334565b806342842e0e146106bf5780634f2e03aa146106e85780634f6ccce71461071357610334565b806326a49e371161025f57806326a49e37146106035780632f745c591461064057806334cbb0081461067d5780633c33eec4146106a857610334565b80631dbf7fd31461057257806323b872dd1461059d5780632679c078146105c657610334565b806306fdde03116102f257806310969523116102cc57806310969523146104c8578063152829ed146104f157806315b0ac0d1461051c57806318160ddd1461054757610334565b806306fdde0314610437578063081812fc14610462578063095ea7b31461049f57610334565b80629fb74f1461033957806301ffc9a71461036457806302b81018146103a1578063046dc166146103cc578063049c5c49146103f557806306eda1b51461040c575b600080fd5b34801561034557600080fd5b5061034e610c3e565b60405161035b91906152bc565b60405180910390f35b34801561037057600080fd5b5061038b6004803603810190610386919061467e565b610c44565b6040516103989190614e7a565b60405180910390f35b3480156103ad57600080fd5b506103b6610c56565b6040516103c391906152bc565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee91906143e1565b610c5c565b005b34801561040157600080fd5b5061040a610d1c565b005b34801561041857600080fd5b50610421610dc4565b60405161042e9190614e7a565b60405180910390f35b34801561044357600080fd5b5061044c610dd7565b6040516104599190614eda565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190614715565b610e69565b6040516104969190614e13565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190614575565b610eee565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906146d0565b611006565b005b3480156104fd57600080fd5b50610506611098565b6040516105139190614e7a565b60405180910390f35b34801561052857600080fd5b506105316110ab565b60405161053e91906152bc565b60405180910390f35b34801561055357600080fd5b5061055c6110b7565b60405161056991906152bc565b60405180910390f35b34801561057e57600080fd5b506105876110c4565b60405161059491906152bc565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061446f565b6110ca565b005b3480156105d257600080fd5b506105ed60048036038101906105e891906143e1565b61112a565b6040516105fa9190614e7a565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190614715565b61114a565b60405161063791906152bc565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190614575565b611161565b60405161067491906152bc565b60405180910390f35b34801561068957600080fd5b50610692611206565b60405161069f9190614e7a565b60405180910390f35b3480156106b457600080fd5b506106bd611219565b005b3480156106cb57600080fd5b506106e660048036038101906106e1919061446f565b6112c1565b005b3480156106f457600080fd5b506106fd6112e1565b60405161070a91906152bc565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190614715565b6112f3565b60405161074791906152bc565b60405180910390f35b61076a6004803603810190610765919061473e565b61138a565b005b34801561077857600080fd5b50610793600480360381019061078e91906146d0565b61166e565b005b3480156107a157600080fd5b506107bc60048036038101906107b79190614715565b611700565b6040516107c99190614e13565b60405180910390f35b3480156107de57600080fd5b506107e76117b2565b6040516107f491906152bc565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f91906143e1565b6117b8565b60405161083191906152bc565b60405180910390f35b34801561084657600080fd5b5061084f611870565b005b34801561085d57600080fd5b5061087860048036038101906108739190614626565b6119ad565b005b34801561088657600080fd5b5061088f611af4565b005b34801561089d57600080fd5b506108a6611c6d565b6040516108b39190614e13565b60405180910390f35b3480156108c857600080fd5b506108d1611c97565b6040516108de9190614eda565b60405180910390f35b3480156108f357600080fd5b506108fc611d29565b60405161090991906152bc565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190614715565b611d35565b005b34801561094757600080fd5b50610950611dbb565b60405161095d91906152bc565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190614539565b611dc7565b005b34801561099b57600080fd5b506109a4611f48565b005b3480156109b257600080fd5b506109bb611ff0565b6040516109c89190614e7a565b60405180910390f35b3480156109dd57600080fd5b506109f860048036038101906109f391906145b1565b612003565b005b348015610a0657600080fd5b50610a216004803603810190610a1c91906144be565b612177565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a4591906143e1565b6121d9565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190614715565b6122b7565b604051610a809190614eda565b60405180910390f35b348015610a9557600080fd5b50610a9e61235e565b604051610aab91906152bc565b60405180910390f35b348015610ac057600080fd5b50610adb6004803603810190610ad691906143e1565b612364565b604051610ae891906152bc565b60405180910390f35b348015610afd57600080fd5b50610b0661237c565b604051610b1391906152bc565b60405180910390f35b348015610b2857600080fd5b50610b31612381565b005b348015610b3f57600080fd5b50610b486124a2565b604051610b5591906152bc565b60405180910390f35b610b786004803603810190610b739190614715565b6124a8565b005b348015610b8657600080fd5b50610ba16004803603810190610b9c9190614433565b6125f1565b604051610bae9190614e7a565b60405180910390f35b348015610bc357600080fd5b50610bde6004803603810190610bd991906143e1565b612685565b005b348015610bec57600080fd5b50610bf5612831565b005b610c116004803603810190610c0c919061440a565b6128d9565b005b348015610c1f57600080fd5b50610c286129cf565b604051610c359190614eda565b60405180910390f35b6115b381565b6000610c4f82612a73565b9050919050565b61022b81565b610c64612aed565b73ffffffffffffffffffffffffffffffffffffffff16610c82611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf9061515c565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d24612aed565b73ffffffffffffffffffffffffffffffffffffffff16610d42611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f9061515c565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b600e60029054906101000a900460ff1681565b606060008054610de6906155a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e12906155a0565b8015610e5f5780601f10610e3457610100808354040283529160200191610e5f565b820191906000526020600020905b815481529060010190602001808311610e4257829003601f168201915b5050505050905090565b6000610e7482612af5565b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa9061511c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ef982611700565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f61906151dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f89612aed565b73ffffffffffffffffffffffffffffffffffffffff161480610fb85750610fb781610fb2612aed565b6125f1565b5b610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee9061505c565b60405180910390fd5b6110018383612b61565b505050565b61100e612aed565b73ffffffffffffffffffffffffffffffffffffffff1661102c611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061515c565b60405180910390fd5b8181601391906110939291906140fd565b505050565b600e60019054906101000a900460ff1681565b600d8060000154905081565b6000600880549050905090565b600f5481565b6110db6110d5612aed565b82612c1a565b61111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061525c565b60405180910390fd5b611125838383612cf8565b505050565b60156020528060005260406000206000915054906101000a900460ff1681565b60008160105461115a9190615433565b9050919050565b600061116c836117b8565b82106111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614f3c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60039054906101000a900460ff1681565b611221612aed565b73ffffffffffffffffffffffffffffffffffffffff1661123f611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c9061515c565b60405180910390fd5b600e60039054906101000a900460ff1615600e60036101000a81548160ff021916908315150217905550565b6112dc83838360405180602001604052806000815250612177565b505050565b603761022b6112f091906153ac565b81565b60006112fd6110b7565b821061133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061527c565b60405180910390fd5b60088281548110611378577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600e60029054906101000a900460ff166113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061503c565b60405180910390fd5b600e60019054906101000a900460ff16806113fa57506113f98383612f54565b5b611439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114309061513c565b60405180910390fd5b600e60019054906101000a900460ff168061147d575060178160405161145f9190614d9d565b908152602001604051809103902060009054906101000a900460ff16155b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b3906151fc565b60405180910390fd5b600e60019054906101000a900460ff16806114e75750826114e56114de612aed565b8684612fc1565b145b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061521c565b60405180910390fd5b600f546115828560166000611539612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461301d90919063ffffffff16565b11156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba906150fc565b60405180910390fd5b6115d46115ce612aed565b85613033565b83601660006115e1612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162a91906153ac565b9250508190555060016017826040516116439190614d9d565b908152602001604051809103902060006101000a81548160ff02191690831515021790555050505050565b611676612aed565b73ffffffffffffffffffffffffffffffffffffffff16611694611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e19061515c565b60405180910390fd5b8181601891906116fb9291906140fd565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a09061509c565b60405180910390fd5b80915050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118209061507c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611878612aed565b73ffffffffffffffffffffffffffffffffffffffff16611896611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061515c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119b5612aed565b73ffffffffffffffffffffffffffffffffffffffff166119d3611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061515c565b60405180910390fd5b60005b83839050811015611aee578160156000868685818110611a75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a8a91906143e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ae690615603565b915050611a2c565b50505050565b60156000611b00612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e9061523c565b60405180910390fd5b61022b611b94600c61320b565b1115611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc906150fc565b60405180910390fd5b611c02611be0612aed565b611bfd6037611bef600c61320b565b61301d90919063ffffffff16565b613219565b611c0c600c612a5d565b600060156000611c1a612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ca6906155a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd2906155a0565b8015611d1f5780601f10611cf457610100808354040283529160200191611d1f565b820191906000526020600020905b815481529060010190602001808311611d0257829003601f168201915b5050505050905090565b600b8060000154905081565b611d3d612aed565b73ffffffffffffffffffffffffffffffffffffffff16611d5b611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da89061515c565b60405180910390fd5b80600f8190555050565b600c8060000154905081565b611dcf612aed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614fdc565b60405180910390fd5b8060056000611e4a612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef7612aed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3c9190614e7a565b60405180910390a35050565b611f50612aed565b73ffffffffffffffffffffffffffffffffffffffff16611f6e611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb9061515c565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b61200b612aed565b73ffffffffffffffffffffffffffffffffffffffff16612029611c6d565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120769061515c565b60405180910390fd5b60005b84849050811015612170578282828181106120c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356014600087878581811061210a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061211f91906143e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061216890615603565b915050612082565b5050505050565b612188612182612aed565b83612c1a565b6121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be9061525c565b60405180910390fd5b6121d384848484613237565b50505050565b6121e1612aed565b73ffffffffffffffffffffffffffffffffffffffff166121ff611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c9061515c565b60405180910390fd5b60006011541461226457600080fd5b60005b60378110156122a0576122838261227e600d61320b565b613219565b61228d600d612a5d565b808061229890615603565b915050612267565b50600060125414156122b457436012819055505b50565b60606122c282612af5565b612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061519c565b60405180910390fd5b600061230b613293565b9050600081511161232b5760405180602001604052806000815250612356565b8061233584613325565b604051602001612346929190614db4565b6040516020818303038152906040525b915050919050565b60115481565b60146020528060005260406000206000915090505481565b603781565b612389612aed565b73ffffffffffffffffffffffffffffffffffffffff166123a7611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f49061515c565b60405180910390fd5b60006011541461240c57600080fd5b6000601254141561241c57600080fd5b6115b36012544060001c6124309190615684565b60118190555060ff61244d601254436134d290919063ffffffff16565b1115612478576115b3600143612463919061548d565b4060001c6124719190615684565b6011819055505b600060115414156124a057612499600160115461301d90919063ffffffff16565b6011819055505b565b60125481565b600e60039054906101000a900460ff166124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee9061503c565b60405180910390fd5b60146000612503612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115612580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125779061523c565b60405180910390fd5b61259161258b612aed565b82613033565b806014600061259e612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e7919061548d565b9250508190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61268d612aed565b73ffffffffffffffffffffffffffffffffffffffff166126ab611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f89061515c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890614f7c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612839612aed565b73ffffffffffffffffffffffffffffffffffffffff16612857611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a49061515c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6128e1612aed565b73ffffffffffffffffffffffffffffffffffffffff166128ff611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c9061515c565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff164760405161297b90614dfe565b60006040518083038185875af1925050503d80600081146129b8576040519150601f19603f3d011682016040523d82523d6000602084013e6129bd565b606091505b50509050806129cb57600080fd5b5050565b601380546129dc906155a0565b80601f0160208091040260200160405190810160405280929190818152602001828054612a08906155a0565b8015612a555780601f10612a2a57610100808354040283529160200191612a55565b820191906000526020600020905b815481529060010190602001808311612a3857829003601f168201915b505050505081565b6001816000016000828254019250508190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ae65750612ae5826134e8565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612bd483611700565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c2582612af5565b612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b9061501c565b60405180910390fd5b6000612c6f83611700565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cde57508373ffffffffffffffffffffffffffffffffffffffff16612cc684610e69565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cef5750612cee81856125f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d1882611700565b73ffffffffffffffffffffffffffffffffffffffff1614612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d659061517c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590614fbc565b60405180910390fd5b612de98383836135ca565b612df4600082612b61565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e44919061548d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e9b91906153ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612f6982846135da90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6000838383604051602001612fd893929190614d64565b60405160208183030381529060405280519060200120604051602001612ffe9190614dd8565b6040516020818303038152906040528051906020012090509392505050565b6000818361302b91906153ac565b905092915050565b600e60009054906101000a900460ff1615806130815750613052612aed565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b61308a57600080fd5b600081116130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c49061529c565b60405180910390fd5b6130d68161114a565b341015613118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310f906151bc565b60405180910390fd5b6115b361316a8261315c603761022b61313191906153ac565b61314e6001613140600b61320b565b6134d290919063ffffffff16565b61301d90919063ffffffff16565b61301d90919063ffffffff16565b11156131ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a2906150fc565b60405180910390fd5b60005b81811015613206576131e9836131e4603761022b6131cc91906153ac565b6131d6600b61320b565b61301d90919063ffffffff16565b613219565b6131f3600b612a5d565b80806131fe90615603565b9150506131ae565b505050565b600081600001549050919050565b6132338282604051806020016040528060008152506136a4565b5050565b613242848484612cf8565b61324e848484846136ff565b61328d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328490614f5c565b60405180910390fd5b50505050565b6060601880546132a2906155a0565b80601f01602080910402602001604051908101604052809291908181526020018280546132ce906155a0565b801561331b5780601f106132f05761010080835404028352916020019161331b565b820191906000526020600020905b8154815290600101906020018083116132fe57829003601f168201915b5050505050905090565b6060600082141561336d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134cd565b600082905060005b6000821461339f57808061338890615603565b915050600a826133989190615402565b9150613375565b60008167ffffffffffffffff8111156133e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134135781602001600182028036833780820191505090505b5090505b600085146134c65760018261342c919061548d565b9150600a8561343b9190615684565b603061344791906153ac565b60f81b818381518110613483577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134bf9190615402565b9450613417565b8093505050505b919050565b600081836134e0919061548d565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806135b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806135c357506135c282613896565b5b9050919050565b6135d5838383613900565b505050565b600080600080604185511415613607576020850151925060408501519150606085015160001a905061368d565b604085511415613651576040850151602086015193507f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81169250601b8160ff1c0191505061368c565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368390614f1c565b60405180910390fd5b5b61369986828585613a14565b935050505092915050565b6136ae8383613b9f565b6136bb60008484846136ff565b6136fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f190614f5c565b60405180910390fd5b505050565b60006137208473ffffffffffffffffffffffffffffffffffffffff16613d6d565b15613889578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613749612aed565b8786866040518563ffffffff1660e01b815260040161376b9493929190614e2e565b602060405180830381600087803b15801561378557600080fd5b505af19250505080156137b657506040513d601f19601f820116820180604052508101906137b391906146a7565b60015b613839573d80600081146137e6576040519150601f19603f3d011682016040523d82523d6000602084013e6137eb565b606091505b50600081511415613831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382890614f5c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061388e565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61390b838383613d80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561394e5761394981613d85565b61398d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461398c5761398b8382613dce565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d0576139cb81613f3b565b613a0f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613a0e57613a0d828261407e565b5b5b505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115613a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7390614ffc565b60405180910390fd5b601b8460ff161480613a915750601c8460ff16145b613ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac7906150bc565b60405180910390fd5b600060018686868660405160008152602001604052604051613af59493929190614e95565b6020604051602081039080840390855afa158015613b17573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8a90614efc565b60405180910390fd5b80915050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c06906150dc565b60405180910390fd5b613c1881612af5565b15613c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4f90614f9c565b60405180910390fd5b613c64600083836135ca565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cb491906153ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613ddb846117b8565b613de5919061548d565b9050600060076000848152602001908152602001600020549050818114613eca576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613f4f919061548d565b9050600060096000848152602001908152602001600020549050600060088381548110613fa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613fed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480614062577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000614089836117b8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054614109906155a0565b90600052602060002090601f01602090048101928261412b5760008555614172565b82601f1061414457803560ff1916838001178555614172565b82800160010185558215614172579182015b82811115614171578235825591602001919060010190614156565b5b50905061417f9190614183565b5090565b5b8082111561419c576000816000905550600101614184565b5090565b60006141b36141ae846152fc565b6152d7565b9050828152602081018484840111156141cb57600080fd5b6141d684828561555e565b509392505050565b60006141f16141ec8461532d565b6152d7565b90508281526020810184848401111561420957600080fd5b61421484828561555e565b509392505050565b60008135905061422b81615ee9565b92915050565b60008135905061424081615f00565b92915050565b60008083601f84011261425857600080fd5b8235905067ffffffffffffffff81111561427157600080fd5b60208301915083602082028301111561428957600080fd5b9250929050565b60008083601f8401126142a257600080fd5b8235905067ffffffffffffffff8111156142bb57600080fd5b6020830191508360208202830111156142d357600080fd5b9250929050565b6000813590506142e981615f17565b92915050565b6000813590506142fe81615f2e565b92915050565b60008135905061431381615f45565b92915050565b60008151905061432881615f45565b92915050565b600082601f83011261433f57600080fd5b813561434f8482602086016141a0565b91505092915050565b60008083601f84011261436a57600080fd5b8235905067ffffffffffffffff81111561438357600080fd5b60208301915083600182028301111561439b57600080fd5b9250929050565b600082601f8301126143b357600080fd5b81356143c38482602086016141de565b91505092915050565b6000813590506143db81615f5c565b92915050565b6000602082840312156143f357600080fd5b60006144018482850161421c565b91505092915050565b60006020828403121561441c57600080fd5b600061442a84828501614231565b91505092915050565b6000806040838503121561444657600080fd5b60006144548582860161421c565b92505060206144658582860161421c565b9150509250929050565b60008060006060848603121561448457600080fd5b60006144928682870161421c565b93505060206144a38682870161421c565b92505060406144b4868287016143cc565b9150509250925092565b600080600080608085870312156144d457600080fd5b60006144e28782880161421c565b94505060206144f38782880161421c565b9350506040614504878288016143cc565b925050606085013567ffffffffffffffff81111561452157600080fd5b61452d8782880161432e565b91505092959194509250565b6000806040838503121561454c57600080fd5b600061455a8582860161421c565b925050602061456b858286016142da565b9150509250929050565b6000806040838503121561458857600080fd5b60006145968582860161421c565b92505060206145a7858286016143cc565b9150509250929050565b600080600080604085870312156145c757600080fd5b600085013567ffffffffffffffff8111156145e157600080fd5b6145ed87828801614246565b9450945050602085013567ffffffffffffffff81111561460c57600080fd5b61461887828801614290565b925092505092959194509250565b60008060006040848603121561463b57600080fd5b600084013567ffffffffffffffff81111561465557600080fd5b61466186828701614246565b93509350506020614674868287016142da565b9150509250925092565b60006020828403121561469057600080fd5b600061469e84828501614304565b91505092915050565b6000602082840312156146b957600080fd5b60006146c784828501614319565b91505092915050565b600080602083850312156146e357600080fd5b600083013567ffffffffffffffff8111156146fd57600080fd5b61470985828601614358565b92509250509250929050565b60006020828403121561472757600080fd5b6000614735848285016143cc565b91505092915050565b6000806000806080858703121561475457600080fd5b6000614762878288016143cc565b9450506020614773878288016142ef565b935050604085013567ffffffffffffffff81111561479057600080fd5b61479c8782880161432e565b925050606085013567ffffffffffffffff8111156147b957600080fd5b6147c5878288016143a2565b91505092959194509250565b6147da816154c1565b82525050565b6147f16147ec826154c1565b61564c565b82525050565b614800816154e5565b82525050565b61480f816154f1565b82525050565b614826614821826154f1565b61565e565b82525050565b60006148378261535e565b6148418185615374565b935061485181856020860161556d565b61485a81615771565b840191505092915050565b600061487082615369565b61487a8185615390565b935061488a81856020860161556d565b61489381615771565b840191505092915050565b60006148a982615369565b6148b381856153a1565b93506148c381856020860161556d565b80840191505092915050565b60006148dc601883615390565b91506148e78261578f565b602082019050919050565b60006148ff601f83615390565b915061490a826157b8565b602082019050919050565b6000614922601c836153a1565b915061492d826157e1565b601c82019050919050565b6000614945602b83615390565b91506149508261580a565b604082019050919050565b6000614968603283615390565b915061497382615859565b604082019050919050565b600061498b602683615390565b9150614996826158a8565b604082019050919050565b60006149ae601c83615390565b91506149b9826158f7565b602082019050919050565b60006149d1602483615390565b91506149dc82615920565b604082019050919050565b60006149f4601983615390565b91506149ff8261596f565b602082019050919050565b6000614a17602283615390565b9150614a2282615998565b604082019050919050565b6000614a3a602c83615390565b9150614a45826159e7565b604082019050919050565b6000614a5d600f83615390565b9150614a6882615a36565b602082019050919050565b6000614a80603883615390565b9150614a8b82615a5f565b604082019050919050565b6000614aa3602a83615390565b9150614aae82615aae565b604082019050919050565b6000614ac6602983615390565b9150614ad182615afd565b604082019050919050565b6000614ae9602283615390565b9150614af482615b4c565b604082019050919050565b6000614b0c602083615390565b9150614b1782615b9b565b602082019050919050565b6000614b2f601783615390565b9150614b3a82615bc4565b602082019050919050565b6000614b52602c83615390565b9150614b5d82615bed565b604082019050919050565b6000614b75601783615390565b9150614b8082615c3c565b602082019050919050565b6000614b98602083615390565b9150614ba382615c65565b602082019050919050565b6000614bbb602983615390565b9150614bc682615c8e565b604082019050919050565b6000614bde602f83615390565b9150614be982615cdd565b604082019050919050565b6000614c01601183615390565b9150614c0c82615d2c565b602082019050919050565b6000614c24602183615390565b9150614c2f82615d55565b604082019050919050565b6000614c47600983615390565b9150614c5282615da4565b602082019050919050565b6000614c6a600b83615390565b9150614c7582615dcd565b602082019050919050565b6000614c8d601683615390565b9150614c9882615df6565b602082019050919050565b6000614cb0600083615385565b9150614cbb82615e1f565b600082019050919050565b6000614cd3603183615390565b9150614cde82615e22565b604082019050919050565b6000614cf6602c83615390565b9150614d0182615e71565b604082019050919050565b6000614d19600d83615390565b9150614d2482615ec0565b602082019050919050565b614d3881615547565b82525050565b614d4f614d4a82615547565b61567a565b82525050565b614d5e81615551565b82525050565b6000614d7082866147e0565b601482019150614d808285614d3e565b602082019150614d90828461489e565b9150819050949350505050565b6000614da9828461489e565b915081905092915050565b6000614dc0828561489e565b9150614dcc828461489e565b91508190509392505050565b6000614de382614915565b9150614def8284614815565b60208201915081905092915050565b6000614e0982614ca3565b9150819050919050565b6000602082019050614e2860008301846147d1565b92915050565b6000608082019050614e4360008301876147d1565b614e5060208301866147d1565b614e5d6040830185614d2f565b8181036060830152614e6f818461482c565b905095945050505050565b6000602082019050614e8f60008301846147f7565b92915050565b6000608082019050614eaa6000830187614806565b614eb76020830186614d55565b614ec46040830185614806565b614ed16060830184614806565b95945050505050565b60006020820190508181036000830152614ef48184614865565b905092915050565b60006020820190508181036000830152614f15816148cf565b9050919050565b60006020820190508181036000830152614f35816148f2565b9050919050565b60006020820190508181036000830152614f5581614938565b9050919050565b60006020820190508181036000830152614f758161495b565b9050919050565b60006020820190508181036000830152614f958161497e565b9050919050565b60006020820190508181036000830152614fb5816149a1565b9050919050565b60006020820190508181036000830152614fd5816149c4565b9050919050565b60006020820190508181036000830152614ff5816149e7565b9050919050565b6000602082019050818103600083015261501581614a0a565b9050919050565b6000602082019050818103600083015261503581614a2d565b9050919050565b6000602082019050818103600083015261505581614a50565b9050919050565b6000602082019050818103600083015261507581614a73565b9050919050565b6000602082019050818103600083015261509581614a96565b9050919050565b600060208201905081810360008301526150b581614ab9565b9050919050565b600060208201905081810360008301526150d581614adc565b9050919050565b600060208201905081810360008301526150f581614aff565b9050919050565b6000602082019050818103600083015261511581614b22565b9050919050565b6000602082019050818103600083015261513581614b45565b9050919050565b6000602082019050818103600083015261515581614b68565b9050919050565b6000602082019050818103600083015261517581614b8b565b9050919050565b6000602082019050818103600083015261519581614bae565b9050919050565b600060208201905081810360008301526151b581614bd1565b9050919050565b600060208201905081810360008301526151d581614bf4565b9050919050565b600060208201905081810360008301526151f581614c17565b9050919050565b6000602082019050818103600083015261521581614c3a565b9050919050565b6000602082019050818103600083015261523581614c5d565b9050919050565b6000602082019050818103600083015261525581614c80565b9050919050565b6000602082019050818103600083015261527581614cc6565b9050919050565b6000602082019050818103600083015261529581614ce9565b9050919050565b600060208201905081810360008301526152b581614d0c565b9050919050565b60006020820190506152d16000830184614d2f565b92915050565b60006152e16152f2565b90506152ed82826155d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561531757615316615742565b5b61532082615771565b9050602081019050919050565b600067ffffffffffffffff82111561534857615347615742565b5b61535182615771565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153b782615547565b91506153c283615547565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153f7576153f66156b5565b5b828201905092915050565b600061540d82615547565b915061541883615547565b925082615428576154276156e4565b5b828204905092915050565b600061543e82615547565b915061544983615547565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615482576154816156b5565b5b828202905092915050565b600061549882615547565b91506154a383615547565b9250828210156154b6576154b56156b5565b5b828203905092915050565b60006154cc82615527565b9050919050565b60006154de82615527565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561558b578082015181840152602081019050615570565b8381111561559a576000848401525b50505050565b600060028204905060018216806155b857607f821691505b602082108114156155cc576155cb615713565b5b50919050565b6155db82615771565b810181811067ffffffffffffffff821117156155fa576155f9615742565b5b80604052505050565b600061560e82615547565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615641576156406156b5565b5b600182019050919050565b600061565782615668565b9050919050565b6000819050919050565b600061567382615782565b9050919050565b6000819050919050565b600061568f82615547565b915061569a83615547565b9250826156aa576156a96156e4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4578636565647320617661696c61626c65206d696e7473000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f446972656374206d696e74206e6f7420616c6c6f776564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861736820757365640000000000000000000000000000000000000000000000600082015250565b7f48617368206661696c6564000000000000000000000000000000000000000000600082015250565b7f4578636565647320616c6c6f77656420616d6f756e7400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f756e7420746f6f206c6f7700000000000000000000000000000000000000600082015250565b615ef2816154c1565b8114615efd57600080fd5b50565b615f09816154d3565b8114615f1457600080fd5b50565b615f20816154e5565b8114615f2b57600080fd5b50565b615f37816154f1565b8114615f4257600080fd5b50565b615f4e816154fb565b8114615f5957600080fd5b50565b615f6581615547565b8114615f7057600080fd5b5056fea2646970667358221220e7b2651402bc910762b7b9dff79b74e52a2a0f146e6a29f5402a2175359ab34d64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103345760003560e01c806370a08231116101ab578063b88d4fde116100f7578063e36d649811610095578063f2fde38b1161006f578063f2fde38b14610bb7578063f4f6af6e14610be0578063fa09e63014610bf7578063ff1b655614610c1357610334565b8063e36d649814610b33578063e396a90414610b5e578063e985e9c514610b7a57610334565b8063cb774d47116100d1578063cb774d4714610a89578063d0929e4314610ab4578063d7fbcdb214610af1578063e13f351a14610b1c57610334565b8063b88d4fde146109fa578063bf0a35a814610a23578063c87b56dd14610a4c57610334565b806398bdf6f511610164578063a22cb4651161013e578063a22cb46514610966578063a28ab6431461098f578063a5b739c3146109a6578063b7bca7a3146109d157610334565b806398bdf6f5146108e75780639e6a1d7d146109125780639ff540ab1461093b57610334565b806370a08231146107fd578063715018a61461083a57806378280c06146108515780637dcb733c1461087a5780638da5cb5b1461089157806395d89b41146108bc57610334565b80631dbf7fd31161028557806342842e0e1161022357806351d40d6c116101fd57806351d40d6c1461075057806355f804b31461076c5780636352211e146107955780636817c76c146107d257610334565b806342842e0e146106bf5780634f2e03aa146106e85780634f6ccce71461071357610334565b806326a49e371161025f57806326a49e37146106035780632f745c591461064057806334cbb0081461067d5780633c33eec4146106a857610334565b80631dbf7fd31461057257806323b872dd1461059d5780632679c078146105c657610334565b806306fdde03116102f257806310969523116102cc57806310969523146104c8578063152829ed146104f157806315b0ac0d1461051c57806318160ddd1461054757610334565b806306fdde0314610437578063081812fc14610462578063095ea7b31461049f57610334565b80629fb74f1461033957806301ffc9a71461036457806302b81018146103a1578063046dc166146103cc578063049c5c49146103f557806306eda1b51461040c575b600080fd5b34801561034557600080fd5b5061034e610c3e565b60405161035b91906152bc565b60405180910390f35b34801561037057600080fd5b5061038b6004803603810190610386919061467e565b610c44565b6040516103989190614e7a565b60405180910390f35b3480156103ad57600080fd5b506103b6610c56565b6040516103c391906152bc565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee91906143e1565b610c5c565b005b34801561040157600080fd5b5061040a610d1c565b005b34801561041857600080fd5b50610421610dc4565b60405161042e9190614e7a565b60405180910390f35b34801561044357600080fd5b5061044c610dd7565b6040516104599190614eda565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190614715565b610e69565b6040516104969190614e13565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190614575565b610eee565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906146d0565b611006565b005b3480156104fd57600080fd5b50610506611098565b6040516105139190614e7a565b60405180910390f35b34801561052857600080fd5b506105316110ab565b60405161053e91906152bc565b60405180910390f35b34801561055357600080fd5b5061055c6110b7565b60405161056991906152bc565b60405180910390f35b34801561057e57600080fd5b506105876110c4565b60405161059491906152bc565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061446f565b6110ca565b005b3480156105d257600080fd5b506105ed60048036038101906105e891906143e1565b61112a565b6040516105fa9190614e7a565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190614715565b61114a565b60405161063791906152bc565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190614575565b611161565b60405161067491906152bc565b60405180910390f35b34801561068957600080fd5b50610692611206565b60405161069f9190614e7a565b60405180910390f35b3480156106b457600080fd5b506106bd611219565b005b3480156106cb57600080fd5b506106e660048036038101906106e1919061446f565b6112c1565b005b3480156106f457600080fd5b506106fd6112e1565b60405161070a91906152bc565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190614715565b6112f3565b60405161074791906152bc565b60405180910390f35b61076a6004803603810190610765919061473e565b61138a565b005b34801561077857600080fd5b50610793600480360381019061078e91906146d0565b61166e565b005b3480156107a157600080fd5b506107bc60048036038101906107b79190614715565b611700565b6040516107c99190614e13565b60405180910390f35b3480156107de57600080fd5b506107e76117b2565b6040516107f491906152bc565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f91906143e1565b6117b8565b60405161083191906152bc565b60405180910390f35b34801561084657600080fd5b5061084f611870565b005b34801561085d57600080fd5b5061087860048036038101906108739190614626565b6119ad565b005b34801561088657600080fd5b5061088f611af4565b005b34801561089d57600080fd5b506108a6611c6d565b6040516108b39190614e13565b60405180910390f35b3480156108c857600080fd5b506108d1611c97565b6040516108de9190614eda565b60405180910390f35b3480156108f357600080fd5b506108fc611d29565b60405161090991906152bc565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190614715565b611d35565b005b34801561094757600080fd5b50610950611dbb565b60405161095d91906152bc565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190614539565b611dc7565b005b34801561099b57600080fd5b506109a4611f48565b005b3480156109b257600080fd5b506109bb611ff0565b6040516109c89190614e7a565b60405180910390f35b3480156109dd57600080fd5b506109f860048036038101906109f391906145b1565b612003565b005b348015610a0657600080fd5b50610a216004803603810190610a1c91906144be565b612177565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a4591906143e1565b6121d9565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190614715565b6122b7565b604051610a809190614eda565b60405180910390f35b348015610a9557600080fd5b50610a9e61235e565b604051610aab91906152bc565b60405180910390f35b348015610ac057600080fd5b50610adb6004803603810190610ad691906143e1565b612364565b604051610ae891906152bc565b60405180910390f35b348015610afd57600080fd5b50610b0661237c565b604051610b1391906152bc565b60405180910390f35b348015610b2857600080fd5b50610b31612381565b005b348015610b3f57600080fd5b50610b486124a2565b604051610b5591906152bc565b60405180910390f35b610b786004803603810190610b739190614715565b6124a8565b005b348015610b8657600080fd5b50610ba16004803603810190610b9c9190614433565b6125f1565b604051610bae9190614e7a565b60405180910390f35b348015610bc357600080fd5b50610bde6004803603810190610bd991906143e1565b612685565b005b348015610bec57600080fd5b50610bf5612831565b005b610c116004803603810190610c0c919061440a565b6128d9565b005b348015610c1f57600080fd5b50610c286129cf565b604051610c359190614eda565b60405180910390f35b6115b381565b6000610c4f82612a73565b9050919050565b61022b81565b610c64612aed565b73ffffffffffffffffffffffffffffffffffffffff16610c82611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf9061515c565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d24612aed565b73ffffffffffffffffffffffffffffffffffffffff16610d42611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f9061515c565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b600e60029054906101000a900460ff1681565b606060008054610de6906155a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e12906155a0565b8015610e5f5780601f10610e3457610100808354040283529160200191610e5f565b820191906000526020600020905b815481529060010190602001808311610e4257829003601f168201915b5050505050905090565b6000610e7482612af5565b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa9061511c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ef982611700565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f61906151dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f89612aed565b73ffffffffffffffffffffffffffffffffffffffff161480610fb85750610fb781610fb2612aed565b6125f1565b5b610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee9061505c565b60405180910390fd5b6110018383612b61565b505050565b61100e612aed565b73ffffffffffffffffffffffffffffffffffffffff1661102c611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061515c565b60405180910390fd5b8181601391906110939291906140fd565b505050565b600e60019054906101000a900460ff1681565b600d8060000154905081565b6000600880549050905090565b600f5481565b6110db6110d5612aed565b82612c1a565b61111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061525c565b60405180910390fd5b611125838383612cf8565b505050565b60156020528060005260406000206000915054906101000a900460ff1681565b60008160105461115a9190615433565b9050919050565b600061116c836117b8565b82106111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614f3c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60039054906101000a900460ff1681565b611221612aed565b73ffffffffffffffffffffffffffffffffffffffff1661123f611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c9061515c565b60405180910390fd5b600e60039054906101000a900460ff1615600e60036101000a81548160ff021916908315150217905550565b6112dc83838360405180602001604052806000815250612177565b505050565b603761022b6112f091906153ac565b81565b60006112fd6110b7565b821061133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061527c565b60405180910390fd5b60088281548110611378577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600e60029054906101000a900460ff166113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061503c565b60405180910390fd5b600e60019054906101000a900460ff16806113fa57506113f98383612f54565b5b611439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114309061513c565b60405180910390fd5b600e60019054906101000a900460ff168061147d575060178160405161145f9190614d9d565b908152602001604051809103902060009054906101000a900460ff16155b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b3906151fc565b60405180910390fd5b600e60019054906101000a900460ff16806114e75750826114e56114de612aed565b8684612fc1565b145b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061521c565b60405180910390fd5b600f546115828560166000611539612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461301d90919063ffffffff16565b11156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba906150fc565b60405180910390fd5b6115d46115ce612aed565b85613033565b83601660006115e1612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162a91906153ac565b9250508190555060016017826040516116439190614d9d565b908152602001604051809103902060006101000a81548160ff02191690831515021790555050505050565b611676612aed565b73ffffffffffffffffffffffffffffffffffffffff16611694611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e19061515c565b60405180910390fd5b8181601891906116fb9291906140fd565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a09061509c565b60405180910390fd5b80915050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118209061507c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611878612aed565b73ffffffffffffffffffffffffffffffffffffffff16611896611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061515c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119b5612aed565b73ffffffffffffffffffffffffffffffffffffffff166119d3611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061515c565b60405180910390fd5b60005b83839050811015611aee578160156000868685818110611a75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a8a91906143e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ae690615603565b915050611a2c565b50505050565b60156000611b00612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e9061523c565b60405180910390fd5b61022b611b94600c61320b565b1115611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc906150fc565b60405180910390fd5b611c02611be0612aed565b611bfd6037611bef600c61320b565b61301d90919063ffffffff16565b613219565b611c0c600c612a5d565b600060156000611c1a612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ca6906155a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd2906155a0565b8015611d1f5780601f10611cf457610100808354040283529160200191611d1f565b820191906000526020600020905b815481529060010190602001808311611d0257829003601f168201915b5050505050905090565b600b8060000154905081565b611d3d612aed565b73ffffffffffffffffffffffffffffffffffffffff16611d5b611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da89061515c565b60405180910390fd5b80600f8190555050565b600c8060000154905081565b611dcf612aed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614fdc565b60405180910390fd5b8060056000611e4a612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef7612aed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3c9190614e7a565b60405180910390a35050565b611f50612aed565b73ffffffffffffffffffffffffffffffffffffffff16611f6e611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb9061515c565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b61200b612aed565b73ffffffffffffffffffffffffffffffffffffffff16612029611c6d565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120769061515c565b60405180910390fd5b60005b84849050811015612170578282828181106120c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356014600087878581811061210a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061211f91906143e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061216890615603565b915050612082565b5050505050565b612188612182612aed565b83612c1a565b6121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be9061525c565b60405180910390fd5b6121d384848484613237565b50505050565b6121e1612aed565b73ffffffffffffffffffffffffffffffffffffffff166121ff611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c9061515c565b60405180910390fd5b60006011541461226457600080fd5b60005b60378110156122a0576122838261227e600d61320b565b613219565b61228d600d612a5d565b808061229890615603565b915050612267565b50600060125414156122b457436012819055505b50565b60606122c282612af5565b612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061519c565b60405180910390fd5b600061230b613293565b9050600081511161232b5760405180602001604052806000815250612356565b8061233584613325565b604051602001612346929190614db4565b6040516020818303038152906040525b915050919050565b60115481565b60146020528060005260406000206000915090505481565b603781565b612389612aed565b73ffffffffffffffffffffffffffffffffffffffff166123a7611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f49061515c565b60405180910390fd5b60006011541461240c57600080fd5b6000601254141561241c57600080fd5b6115b36012544060001c6124309190615684565b60118190555060ff61244d601254436134d290919063ffffffff16565b1115612478576115b3600143612463919061548d565b4060001c6124719190615684565b6011819055505b600060115414156124a057612499600160115461301d90919063ffffffff16565b6011819055505b565b60125481565b600e60039054906101000a900460ff166124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee9061503c565b60405180910390fd5b60146000612503612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115612580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125779061523c565b60405180910390fd5b61259161258b612aed565b82613033565b806014600061259e612aed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e7919061548d565b9250508190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61268d612aed565b73ffffffffffffffffffffffffffffffffffffffff166126ab611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f89061515c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890614f7c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612839612aed565b73ffffffffffffffffffffffffffffffffffffffff16612857611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a49061515c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6128e1612aed565b73ffffffffffffffffffffffffffffffffffffffff166128ff611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c9061515c565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff164760405161297b90614dfe565b60006040518083038185875af1925050503d80600081146129b8576040519150601f19603f3d011682016040523d82523d6000602084013e6129bd565b606091505b50509050806129cb57600080fd5b5050565b601380546129dc906155a0565b80601f0160208091040260200160405190810160405280929190818152602001828054612a08906155a0565b8015612a555780601f10612a2a57610100808354040283529160200191612a55565b820191906000526020600020905b815481529060010190602001808311612a3857829003601f168201915b505050505081565b6001816000016000828254019250508190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ae65750612ae5826134e8565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612bd483611700565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c2582612af5565b612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b9061501c565b60405180910390fd5b6000612c6f83611700565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cde57508373ffffffffffffffffffffffffffffffffffffffff16612cc684610e69565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cef5750612cee81856125f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d1882611700565b73ffffffffffffffffffffffffffffffffffffffff1614612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d659061517c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590614fbc565b60405180910390fd5b612de98383836135ca565b612df4600082612b61565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e44919061548d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e9b91906153ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612f6982846135da90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6000838383604051602001612fd893929190614d64565b60405160208183030381529060405280519060200120604051602001612ffe9190614dd8565b6040516020818303038152906040528051906020012090509392505050565b6000818361302b91906153ac565b905092915050565b600e60009054906101000a900460ff1615806130815750613052612aed565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b61308a57600080fd5b600081116130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c49061529c565b60405180910390fd5b6130d68161114a565b341015613118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310f906151bc565b60405180910390fd5b6115b361316a8261315c603761022b61313191906153ac565b61314e6001613140600b61320b565b6134d290919063ffffffff16565b61301d90919063ffffffff16565b61301d90919063ffffffff16565b11156131ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a2906150fc565b60405180910390fd5b60005b81811015613206576131e9836131e4603761022b6131cc91906153ac565b6131d6600b61320b565b61301d90919063ffffffff16565b613219565b6131f3600b612a5d565b80806131fe90615603565b9150506131ae565b505050565b600081600001549050919050565b6132338282604051806020016040528060008152506136a4565b5050565b613242848484612cf8565b61324e848484846136ff565b61328d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328490614f5c565b60405180910390fd5b50505050565b6060601880546132a2906155a0565b80601f01602080910402602001604051908101604052809291908181526020018280546132ce906155a0565b801561331b5780601f106132f05761010080835404028352916020019161331b565b820191906000526020600020905b8154815290600101906020018083116132fe57829003601f168201915b5050505050905090565b6060600082141561336d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134cd565b600082905060005b6000821461339f57808061338890615603565b915050600a826133989190615402565b9150613375565b60008167ffffffffffffffff8111156133e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134135781602001600182028036833780820191505090505b5090505b600085146134c65760018261342c919061548d565b9150600a8561343b9190615684565b603061344791906153ac565b60f81b818381518110613483577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134bf9190615402565b9450613417565b8093505050505b919050565b600081836134e0919061548d565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806135b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806135c357506135c282613896565b5b9050919050565b6135d5838383613900565b505050565b600080600080604185511415613607576020850151925060408501519150606085015160001a905061368d565b604085511415613651576040850151602086015193507f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81169250601b8160ff1c0191505061368c565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368390614f1c565b60405180910390fd5b5b61369986828585613a14565b935050505092915050565b6136ae8383613b9f565b6136bb60008484846136ff565b6136fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f190614f5c565b60405180910390fd5b505050565b60006137208473ffffffffffffffffffffffffffffffffffffffff16613d6d565b15613889578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613749612aed565b8786866040518563ffffffff1660e01b815260040161376b9493929190614e2e565b602060405180830381600087803b15801561378557600080fd5b505af19250505080156137b657506040513d601f19601f820116820180604052508101906137b391906146a7565b60015b613839573d80600081146137e6576040519150601f19603f3d011682016040523d82523d6000602084013e6137eb565b606091505b50600081511415613831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382890614f5c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061388e565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61390b838383613d80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561394e5761394981613d85565b61398d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461398c5761398b8382613dce565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d0576139cb81613f3b565b613a0f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613a0e57613a0d828261407e565b5b5b505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115613a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7390614ffc565b60405180910390fd5b601b8460ff161480613a915750601c8460ff16145b613ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac7906150bc565b60405180910390fd5b600060018686868660405160008152602001604052604051613af59493929190614e95565b6020604051602081039080840390855afa158015613b17573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8a90614efc565b60405180910390fd5b80915050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c06906150dc565b60405180910390fd5b613c1881612af5565b15613c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4f90614f9c565b60405180910390fd5b613c64600083836135ca565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cb491906153ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613ddb846117b8565b613de5919061548d565b9050600060076000848152602001908152602001600020549050818114613eca576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613f4f919061548d565b9050600060096000848152602001908152602001600020549050600060088381548110613fa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613fed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480614062577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000614089836117b8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054614109906155a0565b90600052602060002090601f01602090048101928261412b5760008555614172565b82601f1061414457803560ff1916838001178555614172565b82800160010185558215614172579182015b82811115614171578235825591602001919060010190614156565b5b50905061417f9190614183565b5090565b5b8082111561419c576000816000905550600101614184565b5090565b60006141b36141ae846152fc565b6152d7565b9050828152602081018484840111156141cb57600080fd5b6141d684828561555e565b509392505050565b60006141f16141ec8461532d565b6152d7565b90508281526020810184848401111561420957600080fd5b61421484828561555e565b509392505050565b60008135905061422b81615ee9565b92915050565b60008135905061424081615f00565b92915050565b60008083601f84011261425857600080fd5b8235905067ffffffffffffffff81111561427157600080fd5b60208301915083602082028301111561428957600080fd5b9250929050565b60008083601f8401126142a257600080fd5b8235905067ffffffffffffffff8111156142bb57600080fd5b6020830191508360208202830111156142d357600080fd5b9250929050565b6000813590506142e981615f17565b92915050565b6000813590506142fe81615f2e565b92915050565b60008135905061431381615f45565b92915050565b60008151905061432881615f45565b92915050565b600082601f83011261433f57600080fd5b813561434f8482602086016141a0565b91505092915050565b60008083601f84011261436a57600080fd5b8235905067ffffffffffffffff81111561438357600080fd5b60208301915083600182028301111561439b57600080fd5b9250929050565b600082601f8301126143b357600080fd5b81356143c38482602086016141de565b91505092915050565b6000813590506143db81615f5c565b92915050565b6000602082840312156143f357600080fd5b60006144018482850161421c565b91505092915050565b60006020828403121561441c57600080fd5b600061442a84828501614231565b91505092915050565b6000806040838503121561444657600080fd5b60006144548582860161421c565b92505060206144658582860161421c565b9150509250929050565b60008060006060848603121561448457600080fd5b60006144928682870161421c565b93505060206144a38682870161421c565b92505060406144b4868287016143cc565b9150509250925092565b600080600080608085870312156144d457600080fd5b60006144e28782880161421c565b94505060206144f38782880161421c565b9350506040614504878288016143cc565b925050606085013567ffffffffffffffff81111561452157600080fd5b61452d8782880161432e565b91505092959194509250565b6000806040838503121561454c57600080fd5b600061455a8582860161421c565b925050602061456b858286016142da565b9150509250929050565b6000806040838503121561458857600080fd5b60006145968582860161421c565b92505060206145a7858286016143cc565b9150509250929050565b600080600080604085870312156145c757600080fd5b600085013567ffffffffffffffff8111156145e157600080fd5b6145ed87828801614246565b9450945050602085013567ffffffffffffffff81111561460c57600080fd5b61461887828801614290565b925092505092959194509250565b60008060006040848603121561463b57600080fd5b600084013567ffffffffffffffff81111561465557600080fd5b61466186828701614246565b93509350506020614674868287016142da565b9150509250925092565b60006020828403121561469057600080fd5b600061469e84828501614304565b91505092915050565b6000602082840312156146b957600080fd5b60006146c784828501614319565b91505092915050565b600080602083850312156146e357600080fd5b600083013567ffffffffffffffff8111156146fd57600080fd5b61470985828601614358565b92509250509250929050565b60006020828403121561472757600080fd5b6000614735848285016143cc565b91505092915050565b6000806000806080858703121561475457600080fd5b6000614762878288016143cc565b9450506020614773878288016142ef565b935050604085013567ffffffffffffffff81111561479057600080fd5b61479c8782880161432e565b925050606085013567ffffffffffffffff8111156147b957600080fd5b6147c5878288016143a2565b91505092959194509250565b6147da816154c1565b82525050565b6147f16147ec826154c1565b61564c565b82525050565b614800816154e5565b82525050565b61480f816154f1565b82525050565b614826614821826154f1565b61565e565b82525050565b60006148378261535e565b6148418185615374565b935061485181856020860161556d565b61485a81615771565b840191505092915050565b600061487082615369565b61487a8185615390565b935061488a81856020860161556d565b61489381615771565b840191505092915050565b60006148a982615369565b6148b381856153a1565b93506148c381856020860161556d565b80840191505092915050565b60006148dc601883615390565b91506148e78261578f565b602082019050919050565b60006148ff601f83615390565b915061490a826157b8565b602082019050919050565b6000614922601c836153a1565b915061492d826157e1565b601c82019050919050565b6000614945602b83615390565b91506149508261580a565b604082019050919050565b6000614968603283615390565b915061497382615859565b604082019050919050565b600061498b602683615390565b9150614996826158a8565b604082019050919050565b60006149ae601c83615390565b91506149b9826158f7565b602082019050919050565b60006149d1602483615390565b91506149dc82615920565b604082019050919050565b60006149f4601983615390565b91506149ff8261596f565b602082019050919050565b6000614a17602283615390565b9150614a2282615998565b604082019050919050565b6000614a3a602c83615390565b9150614a45826159e7565b604082019050919050565b6000614a5d600f83615390565b9150614a6882615a36565b602082019050919050565b6000614a80603883615390565b9150614a8b82615a5f565b604082019050919050565b6000614aa3602a83615390565b9150614aae82615aae565b604082019050919050565b6000614ac6602983615390565b9150614ad182615afd565b604082019050919050565b6000614ae9602283615390565b9150614af482615b4c565b604082019050919050565b6000614b0c602083615390565b9150614b1782615b9b565b602082019050919050565b6000614b2f601783615390565b9150614b3a82615bc4565b602082019050919050565b6000614b52602c83615390565b9150614b5d82615bed565b604082019050919050565b6000614b75601783615390565b9150614b8082615c3c565b602082019050919050565b6000614b98602083615390565b9150614ba382615c65565b602082019050919050565b6000614bbb602983615390565b9150614bc682615c8e565b604082019050919050565b6000614bde602f83615390565b9150614be982615cdd565b604082019050919050565b6000614c01601183615390565b9150614c0c82615d2c565b602082019050919050565b6000614c24602183615390565b9150614c2f82615d55565b604082019050919050565b6000614c47600983615390565b9150614c5282615da4565b602082019050919050565b6000614c6a600b83615390565b9150614c7582615dcd565b602082019050919050565b6000614c8d601683615390565b9150614c9882615df6565b602082019050919050565b6000614cb0600083615385565b9150614cbb82615e1f565b600082019050919050565b6000614cd3603183615390565b9150614cde82615e22565b604082019050919050565b6000614cf6602c83615390565b9150614d0182615e71565b604082019050919050565b6000614d19600d83615390565b9150614d2482615ec0565b602082019050919050565b614d3881615547565b82525050565b614d4f614d4a82615547565b61567a565b82525050565b614d5e81615551565b82525050565b6000614d7082866147e0565b601482019150614d808285614d3e565b602082019150614d90828461489e565b9150819050949350505050565b6000614da9828461489e565b915081905092915050565b6000614dc0828561489e565b9150614dcc828461489e565b91508190509392505050565b6000614de382614915565b9150614def8284614815565b60208201915081905092915050565b6000614e0982614ca3565b9150819050919050565b6000602082019050614e2860008301846147d1565b92915050565b6000608082019050614e4360008301876147d1565b614e5060208301866147d1565b614e5d6040830185614d2f565b8181036060830152614e6f818461482c565b905095945050505050565b6000602082019050614e8f60008301846147f7565b92915050565b6000608082019050614eaa6000830187614806565b614eb76020830186614d55565b614ec46040830185614806565b614ed16060830184614806565b95945050505050565b60006020820190508181036000830152614ef48184614865565b905092915050565b60006020820190508181036000830152614f15816148cf565b9050919050565b60006020820190508181036000830152614f35816148f2565b9050919050565b60006020820190508181036000830152614f5581614938565b9050919050565b60006020820190508181036000830152614f758161495b565b9050919050565b60006020820190508181036000830152614f958161497e565b9050919050565b60006020820190508181036000830152614fb5816149a1565b9050919050565b60006020820190508181036000830152614fd5816149c4565b9050919050565b60006020820190508181036000830152614ff5816149e7565b9050919050565b6000602082019050818103600083015261501581614a0a565b9050919050565b6000602082019050818103600083015261503581614a2d565b9050919050565b6000602082019050818103600083015261505581614a50565b9050919050565b6000602082019050818103600083015261507581614a73565b9050919050565b6000602082019050818103600083015261509581614a96565b9050919050565b600060208201905081810360008301526150b581614ab9565b9050919050565b600060208201905081810360008301526150d581614adc565b9050919050565b600060208201905081810360008301526150f581614aff565b9050919050565b6000602082019050818103600083015261511581614b22565b9050919050565b6000602082019050818103600083015261513581614b45565b9050919050565b6000602082019050818103600083015261515581614b68565b9050919050565b6000602082019050818103600083015261517581614b8b565b9050919050565b6000602082019050818103600083015261519581614bae565b9050919050565b600060208201905081810360008301526151b581614bd1565b9050919050565b600060208201905081810360008301526151d581614bf4565b9050919050565b600060208201905081810360008301526151f581614c17565b9050919050565b6000602082019050818103600083015261521581614c3a565b9050919050565b6000602082019050818103600083015261523581614c5d565b9050919050565b6000602082019050818103600083015261525581614c80565b9050919050565b6000602082019050818103600083015261527581614cc6565b9050919050565b6000602082019050818103600083015261529581614ce9565b9050919050565b600060208201905081810360008301526152b581614d0c565b9050919050565b60006020820190506152d16000830184614d2f565b92915050565b60006152e16152f2565b90506152ed82826155d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561531757615316615742565b5b61532082615771565b9050602081019050919050565b600067ffffffffffffffff82111561534857615347615742565b5b61535182615771565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153b782615547565b91506153c283615547565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153f7576153f66156b5565b5b828201905092915050565b600061540d82615547565b915061541883615547565b925082615428576154276156e4565b5b828204905092915050565b600061543e82615547565b915061544983615547565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615482576154816156b5565b5b828202905092915050565b600061549882615547565b91506154a383615547565b9250828210156154b6576154b56156b5565b5b828203905092915050565b60006154cc82615527565b9050919050565b60006154de82615527565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561558b578082015181840152602081019050615570565b8381111561559a576000848401525b50505050565b600060028204905060018216806155b857607f821691505b602082108114156155cc576155cb615713565b5b50919050565b6155db82615771565b810181811067ffffffffffffffff821117156155fa576155f9615742565b5b80604052505050565b600061560e82615547565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615641576156406156b5565b5b600182019050919050565b600061565782615668565b9050919050565b6000819050919050565b600061567382615782565b9050919050565b6000819050919050565b600061568f82615547565b915061569a83615547565b9250826156aa576156a96156e4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4578636565647320617661696c61626c65206d696e7473000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f446972656374206d696e74206e6f7420616c6c6f776564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861736820757365640000000000000000000000000000000000000000000000600082015250565b7f48617368206661696c6564000000000000000000000000000000000000000000600082015250565b7f4578636565647320616c6c6f77656420616d6f756e7400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f756e7420746f6f206c6f7700000000000000000000000000000000000000600082015250565b615ef2816154c1565b8114615efd57600080fd5b50565b615f09816154d3565b8114615f1457600080fd5b50565b615f20816154e5565b8114615f2b57600080fd5b50565b615f37816154f1565b8114615f4257600080fd5b50565b615f4e816154fb565b8114615f5957600080fd5b50565b615f6581615547565b8114615f7057600080fd5b5056fea2646970667358221220e7b2651402bc910762b7b9dff79b74e52a2a0f146e6a29f5402a2175359ab34d64736f6c63430008040033

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.