ETH Price: $3,063.48 (+1.96%)
Gas: 4 Gwei

Token

Building Blocks (Blocks)
 

Overview

Max Total Supply

278 Blocks

Holders

137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xe737b4fd6c96a38ee233d0857a6a3218fd40eeb2
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Hoody

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : 1155.sol
// SPDX-License-Identifier: MIT
//
//██╗░░██╗░█████╗░░█████╗░██████╗░██╗░░░██╗
//██║░░██║██╔══██╗██╔══██╗██╔══██╗╚██╗░██╔╝
//███████║██║░░██║██║░░██║██║░░██║░╚████╔╝░
//██╔══██║██║░░██║██║░░██║██║░░██║░░╚██╔╝░░
//██║░░██║╚█████╔╝╚█████╔╝██████╔╝░░░██║░░░
//╚═╝░░╚═╝░╚════╝░░╚════╝░╚═════╝░░░░╚═╝░░░
//
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Hoody is ERC1155Supply, Ownable {
    string public constant name = "Building Blocks";
    string public constant symbol = "Blocks";
    bool public saleIsActive = false;
    bool public wlSaleIsActive = false;

    struct Test {
        uint id;
        string name;
        uint max_mint;
        uint max_supply;
        uint team_reserved;
        uint team_minted;
        uint price; 
    }
    
    Test[] public collections;

    mapping(uint => mapping(address => bool)) public allowlists;
    mapping(uint => mapping(address => bool)) public teamAllowlists;

    uint public ACTIVE_ID = 1;
    string public baseUri = "https://ipfs.io/ipfs/QmV1FpL122fAd9peTZi8qDaEVA8cG3q8b2ZedaSWATYnUi/";

    constructor() ERC1155(baseUri) {
    }

    function activeId() public view returns (uint) {
        return ACTIVE_ID;
    }

    function mint(uint256 _quantity) external payable {
        require(msg.sender == tx.origin, "No transaction from smart contracts!");
        require(wlSaleIsActive || saleIsActive, "Sale must be active to mint");
        if (wlSaleIsActive){
            require(!saleIsActive, "Allowlist sale is now over");
            require(allowlists[ACTIVE_ID][msg.sender], "Only allowlisted addresses can mint");
        }
        require(balanceOf(msg.sender, ACTIVE_ID) + _quantity <= collections[ACTIVE_ID - 1].max_mint, "Purchase exceeds the maximum allowed per wallet");
        require(totalSupply(ACTIVE_ID) + _quantity <= collections[ACTIVE_ID - 1].max_supply - collections[ACTIVE_ID - 1].team_reserved - collections[ACTIVE_ID - 1].team_minted, "Purchase would exceed max supply");
        require(msg.value >= collections[ACTIVE_ID - 1].price * _quantity, "Ether value sent is not correct");

        _mint(msg.sender, ACTIVE_ID, _quantity, "");
    }
    
    function teamMint(uint256 _quantity) external {
        require(teamAllowlists[ACTIVE_ID][msg.sender], "Only allowlisted team addresses can mint");
        require(collections[ACTIVE_ID - 1].team_minted + _quantity <= collections[ACTIVE_ID - 1].team_reserved, "This amount is more than max allowed");

        _mint(msg.sender, ACTIVE_ID, _quantity, "");

        collections[ACTIVE_ID - 1].team_minted += _quantity;
    }

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

    function toggleActiveSale() external onlyOwner {
        saleIsActive = !saleIsActive;
        wlSaleIsActive = !saleIsActive;
    }
    
    function toggleActiveWlSale() external onlyOwner {
        wlSaleIsActive = !wlSaleIsActive;
    }

    function addDrops(uint _activeTokenId, string memory _name, uint _maxMint, uint _maxSupply, uint _teamReservedSupply, uint _price) external onlyOwner {
        require(_activeTokenId >0 && _activeTokenId <= 4, "Only 4 collections available");
        bool found = false;
        for (uint i = 0; i < collections.length; i++) {
            if (collections[i].id == _activeTokenId) {
                found = true;
                break;
            }
        }
        require(!found, "Collection already exists");

        ACTIVE_ID = _activeTokenId;
        saleIsActive = false;

        collections.push(Test({
            id: _activeTokenId,
            name: _name,
            max_mint: _maxMint,
            max_supply: _maxSupply,
            team_reserved: _teamReservedSupply,
            team_minted: 0,
            price: _price
        }));

        mapping(address => bool) storage almap = allowlists[_activeTokenId];
        almap[msg.sender] = true;

        mapping(address => bool) storage tlmap = teamAllowlists[_activeTokenId];
        tlmap[msg.sender] = true;
    }

    function setURI(string memory _newUri) external onlyOwner {
        baseUri = _newUri;
        _setURI(_newUri);
    }

    function uri(uint256 _tokenId) public override view returns (string memory) {
        return string(abi.encodePacked(baseUri, Strings.toString(_tokenId)));
    } 

    function maxSupply() public view returns (uint) {
        return collections[ACTIVE_ID - 1].max_supply;
    }

    function price() public view returns (uint) {
        return collections[ACTIVE_ID - 1].price;
    }

    function addWL(address[] memory _addresses) external onlyOwner {
        require(allowlists[ACTIVE_ID][msg.sender], "Drop does not exist");
        for (uint i = 0; i < _addresses.length; i++) {
            allowlists[ACTIVE_ID][_addresses[i]] = true;
        }
    }

    function addTeamWL(address[] memory _addresses) external onlyOwner {
        require(teamAllowlists[ACTIVE_ID][msg.sender], "Drop does not exist");
        for (uint i = 0; i < _addresses.length; i++) {
            teamAllowlists[ACTIVE_ID][_addresses[i]] = true;
        }
    }

    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 13 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 5 of 13 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 6 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

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

        return array;
    }
}

File 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 10 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 11 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

File 12 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"ACTIVE_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_activeTokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_maxMint","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_teamReservedSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"addDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addTeamWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"allowlists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"max_mint","type":"uint256"},{"internalType":"uint256","name":"max_supply","type":"uint256"},{"internalType":"uint256","name":"team_reserved","type":"uint256"},{"internalType":"uint256","name":"team_minted","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"teamAllowlists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleActiveSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleActiveWlSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526000600460146101000a81548160ff0219169083151502179055506000600460156101000a81548160ff0219169083151502179055506001600855604051806080016040528060448152602001620056e46044913960099081620000699190620004a0565b503480156200007757600080fd5b506009805462000087906200028f565b80601f0160208091040260200160405190810160405280929190818152602001828054620000b5906200028f565b8015620001065780601f10620000da5761010080835404028352916020019162000106565b820191906000526020600020905b815481529060010190602001808311620000e857829003601f168201915b50505050506200011c816200014360201b60201c565b506200013d620001316200015860201b60201c565b6200016060201b60201c565b62000587565b8060029081620001549190620004a0565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a857607f821691505b602082108103620002be57620002bd62000260565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002e9565b620003348683620002e9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003816200037b62000375846200034c565b62000356565b6200034c565b9050919050565b6000819050919050565b6200039d8362000360565b620003b5620003ac8262000388565b848454620002f6565b825550505050565b600090565b620003cc620003bd565b620003d981848462000392565b505050565b5b818110156200040157620003f5600082620003c2565b600181019050620003df565b5050565b601f82111562000450576200041a81620002c4565b6200042584620002d9565b8101602085101562000435578190505b6200044d6200044485620002d9565b830182620003de565b50505b505050565b600082821c905092915050565b6000620004756000198460080262000455565b1980831691505092915050565b600062000490838362000462565b9150826002028217905092915050565b620004ab8262000226565b67ffffffffffffffff811115620004c757620004c662000231565b5b620004d382546200028f565b620004e082828562000405565b600060209050601f83116001811462000518576000841562000503578287015190505b6200050f858262000482565b8655506200057f565b601f1984166200052886620002c4565b60005b8281101562000552578489015182556001820191506020850194506020810190506200052b565b868310156200057257848901516200056e601f89168262000462565b8355505b6001600288020188555050505b505050505050565b61514d80620005976000396000f3fe6080604052600436106102035760003560e01c806395d89b4111610118578063e985e9c5116100a0578063edf78c2e1161006f578063edf78c2e14610735578063f242432a14610760578063f2fde38b14610789578063fa050300146107b2578063fdbda0ec146107ef57610203565b8063e985e9c51461067b578063eb8d2444146106b8578063ebea113e146106e3578063eca5552e1461070c57610203565b8063a22cb465116100e7578063a22cb46514610594578063bd85b039146105bd578063d3d88bcd146105fa578063d5abeb0114610625578063e8a3d4851461065057610203565b806395d89b41146104f75780639abc832014610522578063a035b1fe1461054d578063a0712d681461057857610203565b80633ccfd60b1161019b578063619492331161016a578063619492331461045c57806365adb7c814610473578063715018a61461049e578063899e77d5146104b55780638da5cb5b146104cc57610203565b80633ccfd60b1461038e57806347321f9c146103a55780634e1273f4146103e25780634f558e791461041f57610203565b80630e89341c116101d75780630e89341c146102d657806325def8b1146103135780632eb2c2d61461033c5780632fbba1151461036557610203565b8062fdd58e1461020857806301ffc9a71461024557806302fe53051461028257806306fdde03146102ab575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190613136565b610832565b60405161023c9190613185565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906131f8565b6108fa565b6040516102799190613240565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906133a1565b6109dc565b005b3480156102b757600080fd5b506102c0610a00565b6040516102cd9190613469565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061348b565b610a39565b60405161030a9190613469565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613580565b610a6d565b005b34801561034857600080fd5b50610363600480360381019061035e919061372d565b610bbc565b005b34801561037157600080fd5b5061038c6004803603810190610387919061348b565b610c5d565b005b34801561039a57600080fd5b506103a3610e1a565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906137fc565b610e71565b6040516103d99190613240565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061383c565b610ea0565b6040516104169190613972565b60405180910390f35b34801561042b57600080fd5b506104466004803603810190610441919061348b565b610fb9565b6040516104539190613240565b60405180910390f35b34801561046857600080fd5b50610471610fcd565b005b34801561047f57600080fd5b5061048861102b565b6040516104959190613185565b60405180910390f35b3480156104aa57600080fd5b506104b3611035565b005b3480156104c157600080fd5b506104ca611049565b005b3480156104d857600080fd5b506104e161107d565b6040516104ee91906139a3565b60405180910390f35b34801561050357600080fd5b5061050c6110a7565b6040516105199190613469565b60405180910390f35b34801561052e57600080fd5b506105376110e0565b6040516105449190613469565b60405180910390f35b34801561055957600080fd5b5061056261116e565b60405161056f9190613185565b60405180910390f35b610592600480360381019061058d919061348b565b6111a9565b005b3480156105a057600080fd5b506105bb60048036038101906105b691906139ea565b6115b6565b005b3480156105c957600080fd5b506105e460048036038101906105df919061348b565b6115cc565b6040516105f19190613185565b60405180910390f35b34801561060657600080fd5b5061060f6115e9565b60405161061c9190613240565b60405180910390f35b34801561063157600080fd5b5061063a6115fc565b6040516106479190613185565b60405180910390f35b34801561065c57600080fd5b50610665611637565b6040516106729190613469565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190613a2a565b6116c9565b6040516106af9190613240565b60405180910390f35b3480156106c457600080fd5b506106cd61175d565b6040516106da9190613240565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190613580565b611770565b005b34801561071857600080fd5b50610733600480360381019061072e9190613a6a565b6118bf565b005b34801561074157600080fd5b5061074a611b6e565b6040516107579190613185565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613b13565b611b74565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613baa565b611c15565b005b3480156107be57600080fd5b506107d960048036038101906107d491906137fc565b611c98565b6040516107e69190613240565b60405180910390f35b3480156107fb57600080fd5b506108166004803603810190610811919061348b565b611cc7565b6040516108299796959493929190613bd7565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089990613cbf565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d557506109d482611da1565b5b9050919050565b6109e4611e0b565b80600990816109f39190613eeb565b506109fd81611e89565b50565b6040518060400160405280600f81526020017f4275696c64696e6720426c6f636b73000000000000000000000000000000000081525081565b60606009610a4683611e9c565b604051602001610a5792919061407c565b6040516020818303038152906040529050919050565b610a75611e0b565b60076000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b906140ec565b60405180910390fd5b60005b8151811015610bb85760016007600060085481526020019081526020016000206000848481518110610b4c57610b4b61410c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bb09061416a565b915050610b17565b5050565b610bc4611f6a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c0a5750610c0985610c04611f6a565b6116c9565b5b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090614224565b60405180910390fd5b610c568585858585611f72565b5050505050565b60076000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf3906142b6565b60405180910390fd5b60056001600854610d0d91906142d6565b81548110610d1e57610d1d61410c565b5b9060005260206000209060070201600401548160056001600854610d4291906142d6565b81548110610d5357610d5261410c565b5b906000526020600020906007020160050154610d6f919061430a565b1115610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906143b0565b60405180910390fd5b610dcd336008548360405180602001604052806000815250612293565b8060056001600854610ddf91906142d6565b81548110610df057610def61410c565b5b90600052602060002090600702016005016000828254610e10919061430a565b9250508190555050565b610e22611e0b565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6d573d6000803e3d6000fd5b5050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60608151835114610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90614442565b60405180910390fd5b6000835167ffffffffffffffff811115610f0357610f02613276565b5b604051908082528060200260200182016040528015610f315781602001602082028036833780820191505090505b50905060005b8451811015610fae57610f7e858281518110610f5657610f5561410c565b5b6020026020010151858381518110610f7157610f7061410c565b5b6020026020010151610832565b828281518110610f9157610f9061410c565b5b60200260200101818152505080610fa79061416a565b9050610f37565b508091505092915050565b600080610fc5836115cc565b119050919050565b610fd5611e0b565b600460149054906101000a900460ff1615600460146101000a81548160ff021916908315150217905550600460149054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b6000600854905090565b61103d611e0b565b6110476000612443565b565b611051611e0b565b600460159054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600681526020017f426c6f636b73000000000000000000000000000000000000000000000000000081525081565b600980546110ed90613d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461111990613d0e565b80156111665780601f1061113b57610100808354040283529160200191611166565b820191906000526020600020905b81548152906001019060200180831161114957829003601f168201915b505050505081565b60006005600160085461118191906142d6565b815481106111925761119161410c565b5b906000526020600020906007020160060154905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906144d4565b60405180910390fd5b600460159054906101000a900460ff168061123e5750600460149054906101000a900460ff165b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614540565b60405180910390fd5b600460159054906101000a900460ff161561138257600460149054906101000a900460ff16156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d9906145ac565b60405180910390fd5b60066000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061463e565b60405180910390fd5b5b6005600160085461139391906142d6565b815481106113a4576113a361410c565b5b906000526020600020906007020160020154816113c333600854610832565b6113cd919061430a565b111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906146d0565b60405180910390fd5b6005600160085461141f91906142d6565b815481106114305761142f61410c565b5b9060005260206000209060070201600501546005600160085461145391906142d6565b815481106114645761146361410c565b5b9060005260206000209060070201600401546005600160085461148791906142d6565b815481106114985761149761410c565b5b9060005260206000209060070201600301546114b491906142d6565b6114be91906142d6565b816114ca6008546115cc565b6114d4919061430a565b1115611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061473c565b60405180910390fd5b806005600160085461152791906142d6565b815481106115385761153761410c565b5b906000526020600020906007020160060154611554919061475c565b341015611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d906147ea565b60405180910390fd5b6115b3336008548360405180602001604052806000815250612293565b50565b6115c86115c1611f6a565b8383612509565b5050565b600060036000838152602001908152602001600020549050919050565b600460159054906101000a900460ff1681565b60006005600160085461160f91906142d6565b815481106116205761161f61410c565b5b906000526020600020906007020160030154905090565b60606009805461164690613d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461167290613d0e565b80156116bf5780601f10611694576101008083540402835291602001916116bf565b820191906000526020600020905b8154815290600101906020018083116116a257829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b611778611e0b565b60066000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906140ec565b60405180910390fd5b60005b81518110156118bb576001600660006008548152602001908152602001600020600084848151811061184f5761184e61410c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806118b39061416a565b91505061181a565b5050565b6118c7611e0b565b6000861180156118d8575060048611155b611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90614856565b60405180910390fd5b6000805b60058054905081101561197057876005828154811061193d5761193c61410c565b5b9060005260206000209060070201600001540361195d5760019150611970565b80806119689061416a565b91505061191b565b5080156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a9906148c2565b60405180910390fd5b866008819055506000600460146101000a81548160ff02191690831515021790555060056040518060e0016040528089815260200188815260200187815260200186815260200185815260200160008152602001848152509080600181540180825580915050600190039060005260206000209060070201600090919091909150600082015181600001556020820151816001019081611a529190613eeb565b5060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050600060066000898152602001908152602001600020905060018160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600760008a8152602001908152602001600020905060018160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050505050565b60085481565b611b7c611f6a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611bc25750611bc185611bbc611f6a565b6116c9565b5b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890614224565b60405180910390fd5b611c0e8585858585612675565b5050505050565b611c1d611e0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614954565b60405180910390fd5b611c9581612443565b50565b60066020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60058181548110611cd757600080fd5b9060005260206000209060070201600091509050806000015490806001018054611d0090613d0e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2c90613d0e565b8015611d795780601f10611d4e57610100808354040283529160200191611d79565b820191906000526020600020905b815481529060010190602001808311611d5c57829003601f168201915b5050505050908060020154908060030154908060040154908060050154908060060154905087565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e13611f6a565b73ffffffffffffffffffffffffffffffffffffffff16611e3161107d565b73ffffffffffffffffffffffffffffffffffffffff1614611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e906149c0565b60405180910390fd5b565b8060029081611e989190613eeb565b5050565b606060006001611eab84612910565b01905060008167ffffffffffffffff811115611eca57611ec9613276565b5b6040519080825280601f01601f191660200182016040528015611efc5781602001600182028036833780820191505090505b509050600082602001820190505b600115611f5f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f5357611f526149e0565b5b04945060008503611f0a575b819350505050919050565b600033905090565b8151835114611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90614a81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90614b13565b60405180910390fd5b600061202f611f6a565b905061203f818787878787612a63565b60005b84518110156121f05760008582815181106120605761205f61410c565b5b60200260200101519050600085838151811061207f5761207e61410c565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790614ba5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d5919061430a565b92505081905550505050806121e99061416a565b9050612042565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612267929190614bc5565b60405180910390a461227d818787878787612c33565b61228b818787878787612c3b565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614c6e565b60405180910390fd5b600061230c611f6a565b9050600061231985612e12565b9050600061232685612e12565b905061233783600089858589612a63565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612396919061430a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612414929190614c8e565b60405180910390a461242b83600089858589612c33565b61243a83600089898989612e8c565b50505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90614d29565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126689190613240565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db90614b13565b60405180910390fd5b60006126ee611f6a565b905060006126fb85612e12565b9050600061270885612e12565b9050612718838989858589612a63565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156127af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a690614ba5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612864919061430a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516128e1929190614c8e565b60405180910390a46128f7848a8a86868a612c33565b612905848a8a8a8a8a612e8c565b505050505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061296e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612964576129636149e0565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106129ab576d04ee2d6d415b85acef810000000083816129a1576129a06149e0565b5b0492506020810190505b662386f26fc1000083106129da57662386f26fc1000083816129d0576129cf6149e0565b5b0492506010810190505b6305f5e1008310612a03576305f5e10083816129f9576129f86149e0565b5b0492506008810190505b6127108310612a28576127108381612a1e57612a1d6149e0565b5b0492506004810190505b60648310612a4b5760648381612a4157612a406149e0565b5b0492506002810190505b600a8310612a5a576001810190505b80915050919050565b612a71868686868686613063565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612b225760005b8351811015612b2057828181518110612ac457612ac361410c565b5b602002602001015160036000868481518110612ae357612ae261410c565b5b602002602001015181526020019081526020016000206000828254612b08919061430a565b9250508190555080612b199061416a565b9050612aa8565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c2b5760005b8351811015612c29576000848281518110612b7757612b7661410c565b5b602002602001015190506000848381518110612b9657612b9561410c565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf290614dbb565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080612c229061416a565b9050612b59565b505b505050505050565b505050505050565b612c5a8473ffffffffffffffffffffffffffffffffffffffff1661306b565b15612e0a578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612ca0959493929190614e30565b6020604051808303816000875af1925050508015612cdc57506040513d601f19601f82011682018060405250810190612cd99190614ead565b60015b612d8157612ce8614ee7565b806308c379a003612d445750612cfc614f09565b80612d075750612d46565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b9190613469565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d789061500b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff9061509d565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612e3157612e30613276565b5b604051908082528060200260200182016040528015612e5f5781602001602082028036833780820191505090505b5090508281600081518110612e7757612e7661410c565b5b60200260200101818152505080915050919050565b612eab8473ffffffffffffffffffffffffffffffffffffffff1661306b565b1561305b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612ef19594939291906150bd565b6020604051808303816000875af1925050508015612f2d57506040513d601f19601f82011682018060405250810190612f2a9190614ead565b60015b612fd257612f39614ee7565b806308c379a003612f955750612f4d614f09565b80612f585750612f97565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c9190613469565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc99061500b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130509061509d565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130cd826130a2565b9050919050565b6130dd816130c2565b81146130e857600080fd5b50565b6000813590506130fa816130d4565b92915050565b6000819050919050565b61311381613100565b811461311e57600080fd5b50565b6000813590506131308161310a565b92915050565b6000806040838503121561314d5761314c613098565b5b600061315b858286016130eb565b925050602061316c85828601613121565b9150509250929050565b61317f81613100565b82525050565b600060208201905061319a6000830184613176565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d5816131a0565b81146131e057600080fd5b50565b6000813590506131f2816131cc565b92915050565b60006020828403121561320e5761320d613098565b5b600061321c848285016131e3565b91505092915050565b60008115159050919050565b61323a81613225565b82525050565b60006020820190506132556000830184613231565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ae82613265565b810181811067ffffffffffffffff821117156132cd576132cc613276565b5b80604052505050565b60006132e061308e565b90506132ec82826132a5565b919050565b600067ffffffffffffffff82111561330c5761330b613276565b5b61331582613265565b9050602081019050919050565b82818337600083830152505050565b600061334461333f846132f1565b6132d6565b9050828152602081018484840111156133605761335f613260565b5b61336b848285613322565b509392505050565b600082601f8301126133885761338761325b565b5b8135613398848260208601613331565b91505092915050565b6000602082840312156133b7576133b6613098565b5b600082013567ffffffffffffffff8111156133d5576133d461309d565b5b6133e184828501613373565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613424578082015181840152602081019050613409565b60008484015250505050565b600061343b826133ea565b61344581856133f5565b9350613455818560208601613406565b61345e81613265565b840191505092915050565b600060208201905081810360008301526134838184613430565b905092915050565b6000602082840312156134a1576134a0613098565b5b60006134af84828501613121565b91505092915050565b600067ffffffffffffffff8211156134d3576134d2613276565b5b602082029050602081019050919050565b600080fd5b60006134fc6134f7846134b8565b6132d6565b9050808382526020820190506020840283018581111561351f5761351e6134e4565b5b835b81811015613548578061353488826130eb565b845260208401935050602081019050613521565b5050509392505050565b600082601f8301126135675761356661325b565b5b81356135778482602086016134e9565b91505092915050565b60006020828403121561359657613595613098565b5b600082013567ffffffffffffffff8111156135b4576135b361309d565b5b6135c084828501613552565b91505092915050565b600067ffffffffffffffff8211156135e4576135e3613276565b5b602082029050602081019050919050565b6000613608613603846135c9565b6132d6565b9050808382526020820190506020840283018581111561362b5761362a6134e4565b5b835b8181101561365457806136408882613121565b84526020840193505060208101905061362d565b5050509392505050565b600082601f8301126136735761367261325b565b5b81356136838482602086016135f5565b91505092915050565b600067ffffffffffffffff8211156136a7576136a6613276565b5b6136b082613265565b9050602081019050919050565b60006136d06136cb8461368c565b6132d6565b9050828152602081018484840111156136ec576136eb613260565b5b6136f7848285613322565b509392505050565b600082601f8301126137145761371361325b565b5b81356137248482602086016136bd565b91505092915050565b600080600080600060a0868803121561374957613748613098565b5b6000613757888289016130eb565b9550506020613768888289016130eb565b945050604086013567ffffffffffffffff8111156137895761378861309d565b5b6137958882890161365e565b935050606086013567ffffffffffffffff8111156137b6576137b561309d565b5b6137c28882890161365e565b925050608086013567ffffffffffffffff8111156137e3576137e261309d565b5b6137ef888289016136ff565b9150509295509295909350565b6000806040838503121561381357613812613098565b5b600061382185828601613121565b9250506020613832858286016130eb565b9150509250929050565b6000806040838503121561385357613852613098565b5b600083013567ffffffffffffffff8111156138715761387061309d565b5b61387d85828601613552565b925050602083013567ffffffffffffffff81111561389e5761389d61309d565b5b6138aa8582860161365e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138e981613100565b82525050565b60006138fb83836138e0565b60208301905092915050565b6000602082019050919050565b600061391f826138b4565b61392981856138bf565b9350613934836138d0565b8060005b8381101561396557815161394c88826138ef565b975061395783613907565b925050600181019050613938565b5085935050505092915050565b6000602082019050818103600083015261398c8184613914565b905092915050565b61399d816130c2565b82525050565b60006020820190506139b86000830184613994565b92915050565b6139c781613225565b81146139d257600080fd5b50565b6000813590506139e4816139be565b92915050565b60008060408385031215613a0157613a00613098565b5b6000613a0f858286016130eb565b9250506020613a20858286016139d5565b9150509250929050565b60008060408385031215613a4157613a40613098565b5b6000613a4f858286016130eb565b9250506020613a60858286016130eb565b9150509250929050565b60008060008060008060c08789031215613a8757613a86613098565b5b6000613a9589828a01613121565b965050602087013567ffffffffffffffff811115613ab657613ab561309d565b5b613ac289828a01613373565b9550506040613ad389828a01613121565b9450506060613ae489828a01613121565b9350506080613af589828a01613121565b92505060a0613b0689828a01613121565b9150509295509295509295565b600080600080600060a08688031215613b2f57613b2e613098565b5b6000613b3d888289016130eb565b9550506020613b4e888289016130eb565b9450506040613b5f88828901613121565b9350506060613b7088828901613121565b925050608086013567ffffffffffffffff811115613b9157613b9061309d565b5b613b9d888289016136ff565b9150509295509295909350565b600060208284031215613bc057613bbf613098565b5b6000613bce848285016130eb565b91505092915050565b600060e082019050613bec600083018a613176565b8181036020830152613bfe8189613430565b9050613c0d6040830188613176565b613c1a6060830187613176565b613c276080830186613176565b613c3460a0830185613176565b613c4160c0830184613176565b98975050505050505050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613ca9602a836133f5565b9150613cb482613c4d565b604082019050919050565b60006020820190508181036000830152613cd881613c9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2657607f821691505b602082108103613d3957613d38613cdf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613da17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d64565b613dab8683613d64565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613de8613de3613dde84613100565b613dc3565b613100565b9050919050565b6000819050919050565b613e0283613dcd565b613e16613e0e82613def565b848454613d71565b825550505050565b600090565b613e2b613e1e565b613e36818484613df9565b505050565b5b81811015613e5a57613e4f600082613e23565b600181019050613e3c565b5050565b601f821115613e9f57613e7081613d3f565b613e7984613d54565b81016020851015613e88578190505b613e9c613e9485613d54565b830182613e3b565b50505b505050565b600082821c905092915050565b6000613ec260001984600802613ea4565b1980831691505092915050565b6000613edb8383613eb1565b9150826002028217905092915050565b613ef4826133ea565b67ffffffffffffffff811115613f0d57613f0c613276565b5b613f178254613d0e565b613f22828285613e5e565b600060209050601f831160018114613f555760008415613f43578287015190505b613f4d8582613ecf565b865550613fb5565b601f198416613f6386613d3f565b60005b82811015613f8b57848901518255600182019150602085019450602081019050613f66565b86831015613fa85784890151613fa4601f891682613eb1565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154613fd581613d0e565b613fdf8186613fbd565b94506001821660008114613ffa576001811461400f57614042565b60ff1983168652811515820286019350614042565b61401885613d3f565b60005b8381101561403a5781548189015260018201915060208101905061401b565b838801955050505b50505092915050565b6000614056826133ea565b6140608185613fbd565b9350614070818560208601613406565b80840191505092915050565b60006140888285613fc8565b9150614094828461404b565b91508190509392505050565b7f44726f7020646f6573206e6f7420657869737400000000000000000000000000600082015250565b60006140d66013836133f5565b91506140e1826140a0565b602082019050919050565b60006020820190508181036000830152614105816140c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417582613100565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141a7576141a661413b565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b600061420e602e836133f5565b9150614219826141b2565b604082019050919050565b6000602082019050818103600083015261423d81614201565b9050919050565b7f4f6e6c7920616c6c6f776c6973746564207465616d206164647265737365732060008201527f63616e206d696e74000000000000000000000000000000000000000000000000602082015250565b60006142a06028836133f5565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b60006142e182613100565b91506142ec83613100565b92508282039050818111156143045761430361413b565b5b92915050565b600061431582613100565b915061432083613100565b92508282019050808211156143385761433761413b565b5b92915050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b600061439a6024836133f5565b91506143a58261433e565b604082019050919050565b600060208201905081810360008301526143c98161438d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061442c6029836133f5565b9150614437826143d0565b604082019050919050565b6000602082019050818103600083015261445b8161441f565b9050919050565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b60006144be6024836133f5565b91506144c982614462565b604082019050919050565b600060208201905081810360008301526144ed816144b1565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b600061452a601b836133f5565b9150614535826144f4565b602082019050919050565b600060208201905081810360008301526145598161451d565b9050919050565b7f416c6c6f776c6973742073616c65206973206e6f77206f766572000000000000600082015250565b6000614596601a836133f5565b91506145a182614560565b602082019050919050565b600060208201905081810360008301526145c581614589565b9050919050565b7f4f6e6c7920616c6c6f776c6973746564206164647265737365732063616e206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b60006146286023836133f5565b9150614633826145cc565b604082019050919050565b600060208201905081810360008301526146578161461b565b9050919050565b7f5075726368617365206578636565647320746865206d6178696d756d20616c6c60008201527f6f776564207065722077616c6c65740000000000000000000000000000000000602082015250565b60006146ba602f836133f5565b91506146c58261465e565b604082019050919050565b600060208201905081810360008301526146e9816146ad565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006147266020836133f5565b9150614731826146f0565b602082019050919050565b6000602082019050818103600083015261475581614719565b9050919050565b600061476782613100565b915061477283613100565b925082820261478081613100565b915082820484148315176147975761479661413b565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006147d4601f836133f5565b91506147df8261479e565b602082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b7f4f6e6c79203420636f6c6c656374696f6e7320617661696c61626c6500000000600082015250565b6000614840601c836133f5565b915061484b8261480a565b602082019050919050565b6000602082019050818103600083015261486f81614833565b9050919050565b7f436f6c6c656374696f6e20616c72656164792065786973747300000000000000600082015250565b60006148ac6019836133f5565b91506148b782614876565b602082019050919050565b600060208201905081810360008301526148db8161489f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061493e6026836133f5565b9150614949826148e2565b604082019050919050565b6000602082019050818103600083015261496d81614931565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149aa6020836133f5565b91506149b582614974565b602082019050919050565b600060208201905081810360008301526149d98161499d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614a6b6028836133f5565b9150614a7682614a0f565b604082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614afd6025836133f5565b9150614b0882614aa1565b604082019050919050565b60006020820190508181036000830152614b2c81614af0565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b8f602a836133f5565b9150614b9a82614b33565b604082019050919050565b60006020820190508181036000830152614bbe81614b82565b9050919050565b60006040820190508181036000830152614bdf8185613914565b90508181036020830152614bf38184613914565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c586021836133f5565b9150614c6382614bfc565b604082019050919050565b60006020820190508181036000830152614c8781614c4b565b9050919050565b6000604082019050614ca36000830185613176565b614cb06020830184613176565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614d136029836133f5565b9150614d1e82614cb7565b604082019050919050565b60006020820190508181036000830152614d4281614d06565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614da56028836133f5565b9150614db082614d49565b604082019050919050565b60006020820190508181036000830152614dd481614d98565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e0282614ddb565b614e0c8185614de6565b9350614e1c818560208601613406565b614e2581613265565b840191505092915050565b600060a082019050614e456000830188613994565b614e526020830187613994565b8181036040830152614e648186613914565b90508181036060830152614e788185613914565b90508181036080830152614e8c8184614df7565b90509695505050505050565b600081519050614ea7816131cc565b92915050565b600060208284031215614ec357614ec2613098565b5b6000614ed184828501614e98565b91505092915050565b60008160e01c9050919050565b600060033d1115614f065760046000803e614f03600051614eda565b90505b90565b600060443d10614f9657614f1b61308e565b60043d036004823e80513d602482011167ffffffffffffffff82111715614f43575050614f96565b808201805167ffffffffffffffff811115614f615750505050614f96565b80602083010160043d038501811115614f7e575050505050614f96565b614f8d826020018501866132a5565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614ff56034836133f5565b915061500082614f99565b604082019050919050565b6000602082019050818103600083015261502481614fe8565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006150876028836133f5565b91506150928261502b565b604082019050919050565b600060208201905081810360008301526150b68161507a565b9050919050565b600060a0820190506150d26000830188613994565b6150df6020830187613994565b6150ec6040830186613176565b6150f96060830185613176565b818103608083015261510b8184614df7565b9050969550505050505056fea2646970667358221220dc7b3ebbcb73e52728308364952d416683dfaf66e6370a528791cabc905636af64736f6c6343000812003368747470733a2f2f697066732e696f2f697066732f516d563146704c313232664164397065545a693871446145564138634733713862325a65646153574154596e55692f

Deployed Bytecode

0x6080604052600436106102035760003560e01c806395d89b4111610118578063e985e9c5116100a0578063edf78c2e1161006f578063edf78c2e14610735578063f242432a14610760578063f2fde38b14610789578063fa050300146107b2578063fdbda0ec146107ef57610203565b8063e985e9c51461067b578063eb8d2444146106b8578063ebea113e146106e3578063eca5552e1461070c57610203565b8063a22cb465116100e7578063a22cb46514610594578063bd85b039146105bd578063d3d88bcd146105fa578063d5abeb0114610625578063e8a3d4851461065057610203565b806395d89b41146104f75780639abc832014610522578063a035b1fe1461054d578063a0712d681461057857610203565b80633ccfd60b1161019b578063619492331161016a578063619492331461045c57806365adb7c814610473578063715018a61461049e578063899e77d5146104b55780638da5cb5b146104cc57610203565b80633ccfd60b1461038e57806347321f9c146103a55780634e1273f4146103e25780634f558e791461041f57610203565b80630e89341c116101d75780630e89341c146102d657806325def8b1146103135780632eb2c2d61461033c5780632fbba1151461036557610203565b8062fdd58e1461020857806301ffc9a71461024557806302fe53051461028257806306fdde03146102ab575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190613136565b610832565b60405161023c9190613185565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906131f8565b6108fa565b6040516102799190613240565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906133a1565b6109dc565b005b3480156102b757600080fd5b506102c0610a00565b6040516102cd9190613469565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061348b565b610a39565b60405161030a9190613469565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613580565b610a6d565b005b34801561034857600080fd5b50610363600480360381019061035e919061372d565b610bbc565b005b34801561037157600080fd5b5061038c6004803603810190610387919061348b565b610c5d565b005b34801561039a57600080fd5b506103a3610e1a565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906137fc565b610e71565b6040516103d99190613240565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061383c565b610ea0565b6040516104169190613972565b60405180910390f35b34801561042b57600080fd5b506104466004803603810190610441919061348b565b610fb9565b6040516104539190613240565b60405180910390f35b34801561046857600080fd5b50610471610fcd565b005b34801561047f57600080fd5b5061048861102b565b6040516104959190613185565b60405180910390f35b3480156104aa57600080fd5b506104b3611035565b005b3480156104c157600080fd5b506104ca611049565b005b3480156104d857600080fd5b506104e161107d565b6040516104ee91906139a3565b60405180910390f35b34801561050357600080fd5b5061050c6110a7565b6040516105199190613469565b60405180910390f35b34801561052e57600080fd5b506105376110e0565b6040516105449190613469565b60405180910390f35b34801561055957600080fd5b5061056261116e565b60405161056f9190613185565b60405180910390f35b610592600480360381019061058d919061348b565b6111a9565b005b3480156105a057600080fd5b506105bb60048036038101906105b691906139ea565b6115b6565b005b3480156105c957600080fd5b506105e460048036038101906105df919061348b565b6115cc565b6040516105f19190613185565b60405180910390f35b34801561060657600080fd5b5061060f6115e9565b60405161061c9190613240565b60405180910390f35b34801561063157600080fd5b5061063a6115fc565b6040516106479190613185565b60405180910390f35b34801561065c57600080fd5b50610665611637565b6040516106729190613469565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190613a2a565b6116c9565b6040516106af9190613240565b60405180910390f35b3480156106c457600080fd5b506106cd61175d565b6040516106da9190613240565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190613580565b611770565b005b34801561071857600080fd5b50610733600480360381019061072e9190613a6a565b6118bf565b005b34801561074157600080fd5b5061074a611b6e565b6040516107579190613185565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613b13565b611b74565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613baa565b611c15565b005b3480156107be57600080fd5b506107d960048036038101906107d491906137fc565b611c98565b6040516107e69190613240565b60405180910390f35b3480156107fb57600080fd5b506108166004803603810190610811919061348b565b611cc7565b6040516108299796959493929190613bd7565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089990613cbf565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d557506109d482611da1565b5b9050919050565b6109e4611e0b565b80600990816109f39190613eeb565b506109fd81611e89565b50565b6040518060400160405280600f81526020017f4275696c64696e6720426c6f636b73000000000000000000000000000000000081525081565b60606009610a4683611e9c565b604051602001610a5792919061407c565b6040516020818303038152906040529050919050565b610a75611e0b565b60076000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b906140ec565b60405180910390fd5b60005b8151811015610bb85760016007600060085481526020019081526020016000206000848481518110610b4c57610b4b61410c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bb09061416a565b915050610b17565b5050565b610bc4611f6a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c0a5750610c0985610c04611f6a565b6116c9565b5b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090614224565b60405180910390fd5b610c568585858585611f72565b5050505050565b60076000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf3906142b6565b60405180910390fd5b60056001600854610d0d91906142d6565b81548110610d1e57610d1d61410c565b5b9060005260206000209060070201600401548160056001600854610d4291906142d6565b81548110610d5357610d5261410c565b5b906000526020600020906007020160050154610d6f919061430a565b1115610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906143b0565b60405180910390fd5b610dcd336008548360405180602001604052806000815250612293565b8060056001600854610ddf91906142d6565b81548110610df057610def61410c565b5b90600052602060002090600702016005016000828254610e10919061430a565b9250508190555050565b610e22611e0b565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6d573d6000803e3d6000fd5b5050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60608151835114610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90614442565b60405180910390fd5b6000835167ffffffffffffffff811115610f0357610f02613276565b5b604051908082528060200260200182016040528015610f315781602001602082028036833780820191505090505b50905060005b8451811015610fae57610f7e858281518110610f5657610f5561410c565b5b6020026020010151858381518110610f7157610f7061410c565b5b6020026020010151610832565b828281518110610f9157610f9061410c565b5b60200260200101818152505080610fa79061416a565b9050610f37565b508091505092915050565b600080610fc5836115cc565b119050919050565b610fd5611e0b565b600460149054906101000a900460ff1615600460146101000a81548160ff021916908315150217905550600460149054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b6000600854905090565b61103d611e0b565b6110476000612443565b565b611051611e0b565b600460159054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600681526020017f426c6f636b73000000000000000000000000000000000000000000000000000081525081565b600980546110ed90613d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461111990613d0e565b80156111665780601f1061113b57610100808354040283529160200191611166565b820191906000526020600020905b81548152906001019060200180831161114957829003601f168201915b505050505081565b60006005600160085461118191906142d6565b815481106111925761119161410c565b5b906000526020600020906007020160060154905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906144d4565b60405180910390fd5b600460159054906101000a900460ff168061123e5750600460149054906101000a900460ff165b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614540565b60405180910390fd5b600460159054906101000a900460ff161561138257600460149054906101000a900460ff16156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d9906145ac565b60405180910390fd5b60066000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061463e565b60405180910390fd5b5b6005600160085461139391906142d6565b815481106113a4576113a361410c565b5b906000526020600020906007020160020154816113c333600854610832565b6113cd919061430a565b111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906146d0565b60405180910390fd5b6005600160085461141f91906142d6565b815481106114305761142f61410c565b5b9060005260206000209060070201600501546005600160085461145391906142d6565b815481106114645761146361410c565b5b9060005260206000209060070201600401546005600160085461148791906142d6565b815481106114985761149761410c565b5b9060005260206000209060070201600301546114b491906142d6565b6114be91906142d6565b816114ca6008546115cc565b6114d4919061430a565b1115611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061473c565b60405180910390fd5b806005600160085461152791906142d6565b815481106115385761153761410c565b5b906000526020600020906007020160060154611554919061475c565b341015611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d906147ea565b60405180910390fd5b6115b3336008548360405180602001604052806000815250612293565b50565b6115c86115c1611f6a565b8383612509565b5050565b600060036000838152602001908152602001600020549050919050565b600460159054906101000a900460ff1681565b60006005600160085461160f91906142d6565b815481106116205761161f61410c565b5b906000526020600020906007020160030154905090565b60606009805461164690613d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461167290613d0e565b80156116bf5780601f10611694576101008083540402835291602001916116bf565b820191906000526020600020905b8154815290600101906020018083116116a257829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b611778611e0b565b60066000600854815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906140ec565b60405180910390fd5b60005b81518110156118bb576001600660006008548152602001908152602001600020600084848151811061184f5761184e61410c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806118b39061416a565b91505061181a565b5050565b6118c7611e0b565b6000861180156118d8575060048611155b611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90614856565b60405180910390fd5b6000805b60058054905081101561197057876005828154811061193d5761193c61410c565b5b9060005260206000209060070201600001540361195d5760019150611970565b80806119689061416a565b91505061191b565b5080156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a9906148c2565b60405180910390fd5b866008819055506000600460146101000a81548160ff02191690831515021790555060056040518060e0016040528089815260200188815260200187815260200186815260200185815260200160008152602001848152509080600181540180825580915050600190039060005260206000209060070201600090919091909150600082015181600001556020820151816001019081611a529190613eeb565b5060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050600060066000898152602001908152602001600020905060018160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600760008a8152602001908152602001600020905060018160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050505050565b60085481565b611b7c611f6a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611bc25750611bc185611bbc611f6a565b6116c9565b5b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890614224565b60405180910390fd5b611c0e8585858585612675565b5050505050565b611c1d611e0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614954565b60405180910390fd5b611c9581612443565b50565b60066020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60058181548110611cd757600080fd5b9060005260206000209060070201600091509050806000015490806001018054611d0090613d0e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2c90613d0e565b8015611d795780601f10611d4e57610100808354040283529160200191611d79565b820191906000526020600020905b815481529060010190602001808311611d5c57829003601f168201915b5050505050908060020154908060030154908060040154908060050154908060060154905087565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e13611f6a565b73ffffffffffffffffffffffffffffffffffffffff16611e3161107d565b73ffffffffffffffffffffffffffffffffffffffff1614611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e906149c0565b60405180910390fd5b565b8060029081611e989190613eeb565b5050565b606060006001611eab84612910565b01905060008167ffffffffffffffff811115611eca57611ec9613276565b5b6040519080825280601f01601f191660200182016040528015611efc5781602001600182028036833780820191505090505b509050600082602001820190505b600115611f5f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f5357611f526149e0565b5b04945060008503611f0a575b819350505050919050565b600033905090565b8151835114611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90614a81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90614b13565b60405180910390fd5b600061202f611f6a565b905061203f818787878787612a63565b60005b84518110156121f05760008582815181106120605761205f61410c565b5b60200260200101519050600085838151811061207f5761207e61410c565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790614ba5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d5919061430a565b92505081905550505050806121e99061416a565b9050612042565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612267929190614bc5565b60405180910390a461227d818787878787612c33565b61228b818787878787612c3b565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614c6e565b60405180910390fd5b600061230c611f6a565b9050600061231985612e12565b9050600061232685612e12565b905061233783600089858589612a63565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612396919061430a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612414929190614c8e565b60405180910390a461242b83600089858589612c33565b61243a83600089898989612e8c565b50505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90614d29565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126689190613240565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db90614b13565b60405180910390fd5b60006126ee611f6a565b905060006126fb85612e12565b9050600061270885612e12565b9050612718838989858589612a63565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156127af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a690614ba5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612864919061430a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516128e1929190614c8e565b60405180910390a46128f7848a8a86868a612c33565b612905848a8a8a8a8a612e8c565b505050505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061296e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612964576129636149e0565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106129ab576d04ee2d6d415b85acef810000000083816129a1576129a06149e0565b5b0492506020810190505b662386f26fc1000083106129da57662386f26fc1000083816129d0576129cf6149e0565b5b0492506010810190505b6305f5e1008310612a03576305f5e10083816129f9576129f86149e0565b5b0492506008810190505b6127108310612a28576127108381612a1e57612a1d6149e0565b5b0492506004810190505b60648310612a4b5760648381612a4157612a406149e0565b5b0492506002810190505b600a8310612a5a576001810190505b80915050919050565b612a71868686868686613063565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612b225760005b8351811015612b2057828181518110612ac457612ac361410c565b5b602002602001015160036000868481518110612ae357612ae261410c565b5b602002602001015181526020019081526020016000206000828254612b08919061430a565b9250508190555080612b199061416a565b9050612aa8565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c2b5760005b8351811015612c29576000848281518110612b7757612b7661410c565b5b602002602001015190506000848381518110612b9657612b9561410c565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf290614dbb565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080612c229061416a565b9050612b59565b505b505050505050565b505050505050565b612c5a8473ffffffffffffffffffffffffffffffffffffffff1661306b565b15612e0a578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612ca0959493929190614e30565b6020604051808303816000875af1925050508015612cdc57506040513d601f19601f82011682018060405250810190612cd99190614ead565b60015b612d8157612ce8614ee7565b806308c379a003612d445750612cfc614f09565b80612d075750612d46565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b9190613469565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d789061500b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff9061509d565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612e3157612e30613276565b5b604051908082528060200260200182016040528015612e5f5781602001602082028036833780820191505090505b5090508281600081518110612e7757612e7661410c565b5b60200260200101818152505080915050919050565b612eab8473ffffffffffffffffffffffffffffffffffffffff1661306b565b1561305b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612ef19594939291906150bd565b6020604051808303816000875af1925050508015612f2d57506040513d601f19601f82011682018060405250810190612f2a9190614ead565b60015b612fd257612f39614ee7565b806308c379a003612f955750612f4d614f09565b80612f585750612f97565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c9190613469565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc99061500b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130509061509d565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130cd826130a2565b9050919050565b6130dd816130c2565b81146130e857600080fd5b50565b6000813590506130fa816130d4565b92915050565b6000819050919050565b61311381613100565b811461311e57600080fd5b50565b6000813590506131308161310a565b92915050565b6000806040838503121561314d5761314c613098565b5b600061315b858286016130eb565b925050602061316c85828601613121565b9150509250929050565b61317f81613100565b82525050565b600060208201905061319a6000830184613176565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d5816131a0565b81146131e057600080fd5b50565b6000813590506131f2816131cc565b92915050565b60006020828403121561320e5761320d613098565b5b600061321c848285016131e3565b91505092915050565b60008115159050919050565b61323a81613225565b82525050565b60006020820190506132556000830184613231565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ae82613265565b810181811067ffffffffffffffff821117156132cd576132cc613276565b5b80604052505050565b60006132e061308e565b90506132ec82826132a5565b919050565b600067ffffffffffffffff82111561330c5761330b613276565b5b61331582613265565b9050602081019050919050565b82818337600083830152505050565b600061334461333f846132f1565b6132d6565b9050828152602081018484840111156133605761335f613260565b5b61336b848285613322565b509392505050565b600082601f8301126133885761338761325b565b5b8135613398848260208601613331565b91505092915050565b6000602082840312156133b7576133b6613098565b5b600082013567ffffffffffffffff8111156133d5576133d461309d565b5b6133e184828501613373565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613424578082015181840152602081019050613409565b60008484015250505050565b600061343b826133ea565b61344581856133f5565b9350613455818560208601613406565b61345e81613265565b840191505092915050565b600060208201905081810360008301526134838184613430565b905092915050565b6000602082840312156134a1576134a0613098565b5b60006134af84828501613121565b91505092915050565b600067ffffffffffffffff8211156134d3576134d2613276565b5b602082029050602081019050919050565b600080fd5b60006134fc6134f7846134b8565b6132d6565b9050808382526020820190506020840283018581111561351f5761351e6134e4565b5b835b81811015613548578061353488826130eb565b845260208401935050602081019050613521565b5050509392505050565b600082601f8301126135675761356661325b565b5b81356135778482602086016134e9565b91505092915050565b60006020828403121561359657613595613098565b5b600082013567ffffffffffffffff8111156135b4576135b361309d565b5b6135c084828501613552565b91505092915050565b600067ffffffffffffffff8211156135e4576135e3613276565b5b602082029050602081019050919050565b6000613608613603846135c9565b6132d6565b9050808382526020820190506020840283018581111561362b5761362a6134e4565b5b835b8181101561365457806136408882613121565b84526020840193505060208101905061362d565b5050509392505050565b600082601f8301126136735761367261325b565b5b81356136838482602086016135f5565b91505092915050565b600067ffffffffffffffff8211156136a7576136a6613276565b5b6136b082613265565b9050602081019050919050565b60006136d06136cb8461368c565b6132d6565b9050828152602081018484840111156136ec576136eb613260565b5b6136f7848285613322565b509392505050565b600082601f8301126137145761371361325b565b5b81356137248482602086016136bd565b91505092915050565b600080600080600060a0868803121561374957613748613098565b5b6000613757888289016130eb565b9550506020613768888289016130eb565b945050604086013567ffffffffffffffff8111156137895761378861309d565b5b6137958882890161365e565b935050606086013567ffffffffffffffff8111156137b6576137b561309d565b5b6137c28882890161365e565b925050608086013567ffffffffffffffff8111156137e3576137e261309d565b5b6137ef888289016136ff565b9150509295509295909350565b6000806040838503121561381357613812613098565b5b600061382185828601613121565b9250506020613832858286016130eb565b9150509250929050565b6000806040838503121561385357613852613098565b5b600083013567ffffffffffffffff8111156138715761387061309d565b5b61387d85828601613552565b925050602083013567ffffffffffffffff81111561389e5761389d61309d565b5b6138aa8582860161365e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138e981613100565b82525050565b60006138fb83836138e0565b60208301905092915050565b6000602082019050919050565b600061391f826138b4565b61392981856138bf565b9350613934836138d0565b8060005b8381101561396557815161394c88826138ef565b975061395783613907565b925050600181019050613938565b5085935050505092915050565b6000602082019050818103600083015261398c8184613914565b905092915050565b61399d816130c2565b82525050565b60006020820190506139b86000830184613994565b92915050565b6139c781613225565b81146139d257600080fd5b50565b6000813590506139e4816139be565b92915050565b60008060408385031215613a0157613a00613098565b5b6000613a0f858286016130eb565b9250506020613a20858286016139d5565b9150509250929050565b60008060408385031215613a4157613a40613098565b5b6000613a4f858286016130eb565b9250506020613a60858286016130eb565b9150509250929050565b60008060008060008060c08789031215613a8757613a86613098565b5b6000613a9589828a01613121565b965050602087013567ffffffffffffffff811115613ab657613ab561309d565b5b613ac289828a01613373565b9550506040613ad389828a01613121565b9450506060613ae489828a01613121565b9350506080613af589828a01613121565b92505060a0613b0689828a01613121565b9150509295509295509295565b600080600080600060a08688031215613b2f57613b2e613098565b5b6000613b3d888289016130eb565b9550506020613b4e888289016130eb565b9450506040613b5f88828901613121565b9350506060613b7088828901613121565b925050608086013567ffffffffffffffff811115613b9157613b9061309d565b5b613b9d888289016136ff565b9150509295509295909350565b600060208284031215613bc057613bbf613098565b5b6000613bce848285016130eb565b91505092915050565b600060e082019050613bec600083018a613176565b8181036020830152613bfe8189613430565b9050613c0d6040830188613176565b613c1a6060830187613176565b613c276080830186613176565b613c3460a0830185613176565b613c4160c0830184613176565b98975050505050505050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613ca9602a836133f5565b9150613cb482613c4d565b604082019050919050565b60006020820190508181036000830152613cd881613c9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2657607f821691505b602082108103613d3957613d38613cdf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613da17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d64565b613dab8683613d64565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613de8613de3613dde84613100565b613dc3565b613100565b9050919050565b6000819050919050565b613e0283613dcd565b613e16613e0e82613def565b848454613d71565b825550505050565b600090565b613e2b613e1e565b613e36818484613df9565b505050565b5b81811015613e5a57613e4f600082613e23565b600181019050613e3c565b5050565b601f821115613e9f57613e7081613d3f565b613e7984613d54565b81016020851015613e88578190505b613e9c613e9485613d54565b830182613e3b565b50505b505050565b600082821c905092915050565b6000613ec260001984600802613ea4565b1980831691505092915050565b6000613edb8383613eb1565b9150826002028217905092915050565b613ef4826133ea565b67ffffffffffffffff811115613f0d57613f0c613276565b5b613f178254613d0e565b613f22828285613e5e565b600060209050601f831160018114613f555760008415613f43578287015190505b613f4d8582613ecf565b865550613fb5565b601f198416613f6386613d3f565b60005b82811015613f8b57848901518255600182019150602085019450602081019050613f66565b86831015613fa85784890151613fa4601f891682613eb1565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154613fd581613d0e565b613fdf8186613fbd565b94506001821660008114613ffa576001811461400f57614042565b60ff1983168652811515820286019350614042565b61401885613d3f565b60005b8381101561403a5781548189015260018201915060208101905061401b565b838801955050505b50505092915050565b6000614056826133ea565b6140608185613fbd565b9350614070818560208601613406565b80840191505092915050565b60006140888285613fc8565b9150614094828461404b565b91508190509392505050565b7f44726f7020646f6573206e6f7420657869737400000000000000000000000000600082015250565b60006140d66013836133f5565b91506140e1826140a0565b602082019050919050565b60006020820190508181036000830152614105816140c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417582613100565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141a7576141a661413b565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b600061420e602e836133f5565b9150614219826141b2565b604082019050919050565b6000602082019050818103600083015261423d81614201565b9050919050565b7f4f6e6c7920616c6c6f776c6973746564207465616d206164647265737365732060008201527f63616e206d696e74000000000000000000000000000000000000000000000000602082015250565b60006142a06028836133f5565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b60006142e182613100565b91506142ec83613100565b92508282039050818111156143045761430361413b565b5b92915050565b600061431582613100565b915061432083613100565b92508282019050808211156143385761433761413b565b5b92915050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b600061439a6024836133f5565b91506143a58261433e565b604082019050919050565b600060208201905081810360008301526143c98161438d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061442c6029836133f5565b9150614437826143d0565b604082019050919050565b6000602082019050818103600083015261445b8161441f565b9050919050565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b60006144be6024836133f5565b91506144c982614462565b604082019050919050565b600060208201905081810360008301526144ed816144b1565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b600061452a601b836133f5565b9150614535826144f4565b602082019050919050565b600060208201905081810360008301526145598161451d565b9050919050565b7f416c6c6f776c6973742073616c65206973206e6f77206f766572000000000000600082015250565b6000614596601a836133f5565b91506145a182614560565b602082019050919050565b600060208201905081810360008301526145c581614589565b9050919050565b7f4f6e6c7920616c6c6f776c6973746564206164647265737365732063616e206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b60006146286023836133f5565b9150614633826145cc565b604082019050919050565b600060208201905081810360008301526146578161461b565b9050919050565b7f5075726368617365206578636565647320746865206d6178696d756d20616c6c60008201527f6f776564207065722077616c6c65740000000000000000000000000000000000602082015250565b60006146ba602f836133f5565b91506146c58261465e565b604082019050919050565b600060208201905081810360008301526146e9816146ad565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006147266020836133f5565b9150614731826146f0565b602082019050919050565b6000602082019050818103600083015261475581614719565b9050919050565b600061476782613100565b915061477283613100565b925082820261478081613100565b915082820484148315176147975761479661413b565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006147d4601f836133f5565b91506147df8261479e565b602082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b7f4f6e6c79203420636f6c6c656374696f6e7320617661696c61626c6500000000600082015250565b6000614840601c836133f5565b915061484b8261480a565b602082019050919050565b6000602082019050818103600083015261486f81614833565b9050919050565b7f436f6c6c656374696f6e20616c72656164792065786973747300000000000000600082015250565b60006148ac6019836133f5565b91506148b782614876565b602082019050919050565b600060208201905081810360008301526148db8161489f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061493e6026836133f5565b9150614949826148e2565b604082019050919050565b6000602082019050818103600083015261496d81614931565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149aa6020836133f5565b91506149b582614974565b602082019050919050565b600060208201905081810360008301526149d98161499d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614a6b6028836133f5565b9150614a7682614a0f565b604082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614afd6025836133f5565b9150614b0882614aa1565b604082019050919050565b60006020820190508181036000830152614b2c81614af0565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b8f602a836133f5565b9150614b9a82614b33565b604082019050919050565b60006020820190508181036000830152614bbe81614b82565b9050919050565b60006040820190508181036000830152614bdf8185613914565b90508181036020830152614bf38184613914565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c586021836133f5565b9150614c6382614bfc565b604082019050919050565b60006020820190508181036000830152614c8781614c4b565b9050919050565b6000604082019050614ca36000830185613176565b614cb06020830184613176565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614d136029836133f5565b9150614d1e82614cb7565b604082019050919050565b60006020820190508181036000830152614d4281614d06565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614da56028836133f5565b9150614db082614d49565b604082019050919050565b60006020820190508181036000830152614dd481614d98565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e0282614ddb565b614e0c8185614de6565b9350614e1c818560208601613406565b614e2581613265565b840191505092915050565b600060a082019050614e456000830188613994565b614e526020830187613994565b8181036040830152614e648186613914565b90508181036060830152614e788185613914565b90508181036080830152614e8c8184614df7565b90509695505050505050565b600081519050614ea7816131cc565b92915050565b600060208284031215614ec357614ec2613098565b5b6000614ed184828501614e98565b91505092915050565b60008160e01c9050919050565b600060033d1115614f065760046000803e614f03600051614eda565b90505b90565b600060443d10614f9657614f1b61308e565b60043d036004823e80513d602482011167ffffffffffffffff82111715614f43575050614f96565b808201805167ffffffffffffffff811115614f615750505050614f96565b80602083010160043d038501811115614f7e575050505050614f96565b614f8d826020018501866132a5565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614ff56034836133f5565b915061500082614f99565b604082019050919050565b6000602082019050818103600083015261502481614fe8565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006150876028836133f5565b91506150928261502b565b604082019050919050565b600060208201905081810360008301526150b68161507a565b9050919050565b600060a0820190506150d26000830188613994565b6150df6020830187613994565b6150ec6040830186613176565b6150f96060830185613176565b818103608083015261510b8184614df7565b9050969550505050505056fea2646970667358221220dc7b3ebbcb73e52728308364952d416683dfaf66e6370a528791cabc905636af64736f6c63430008120033

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.