ETH Price: $3,386.69 (-1.48%)
Gas: 2 Gwei

Token

UINTS (UINTS)
 

Overview

Max Total Supply

33,874 UINTS

Holders

6,000

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
72 UINTS
0x89e03f21434858f4709d5ada9e077a33a9992603
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Numbers are art, and we are artists.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Uints

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Uints.sol
/*

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░                                                        ░░
░░    9 9 9 9 9    9 9 9 9 9    9 9 9 9 9    9 9 9 9 9    ░░
░░   9         9  9         9  9         9  9         9   ░░
░░   9         9  9         9  9         9  9         9   ░░
░░   9         9  9         9  9         9  9         9   ░░
░░    9 9 9 9 9    9 9 9 9 9    9 9 9 9 9    9 9 9 9 9    ░░
░░   .         9  .         9  .         9  .         9   ░░
░░   .         9  .         9  .         9  .         9   ░░
░░   .         9  .         9  .         9  .         9   ░░
░░    9 9 9 9 9    9 9 9 9 9    9 9 9 9 9    9 9 9 9 9    ░░
░░                                                        ░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Utilities.sol";
import "./Segments.sol";
import "./IERC4906.sol";

contract Uints is ERC721A, Ownable, IERC4906 {
    
    event CountdownExtended(uint _finalBlock);

    uint public price = 3000000000000000; //.003 eth
    bool public isCombinable = false;
    uint public finalMintingBlock;

    mapping(uint => uint) newValues;
    mapping(uint => uint) baseColors;
    mapping(address => uint) freeMints;

    constructor() ERC721A("UINTS", "UINTS") {}

    function mint(uint quantity) public payable {
        require(msg.value >= quantity * price, "not enough eth");
        handleMint(msg.sender, quantity);
    }

    function freeMint(uint quantity) public {
        require(quantity <= freeMints[msg.sender], "not enough free mints");
        handleMint(msg.sender, quantity);
        freeMints[msg.sender] -= quantity;
    }

    function handleMint(address recipient, uint quantity) internal {
        uint supply = _totalMinted();
        if (supply >= 1000) {
            require(utils.secondsRemaining(finalMintingBlock) > 0, "mint is closed");
            if (supply < 5000 && (supply + quantity) >= 5000) {
                finalMintingBlock = block.timestamp + 24 hours;
                emit CountdownExtended(finalMintingBlock);
            }
        } else if (supply + quantity >= 1000) {
            finalMintingBlock = block.timestamp + 24 hours;
            emit CountdownExtended(finalMintingBlock);
        }
        _mint(recipient, quantity);
    }

    function combine(uint[] memory tokens) public {
        require(isCombinable, "combining not active");
        uint sum;
        for (uint i = 0; i < tokens.length; i++) {
            require(ownerOf(tokens[i]) == msg.sender, "must own all tokens");
            sum = sum + getValue(tokens[i]);
        }
        if (sum > 9999) {
            revert("sum must be 9999 or less");
        }
        for (uint i = 1; i < tokens.length; i++) {
            _burn(tokens[i]);
            newValues[tokens[i]] = 0;
            baseColors[tokens[i]] = 0;
            emit MetadataUpdate(tokens[i]);
        }

        // Why was 6 afraid of 7? Because 7 8 9!
        newValues[tokens[0]] = sum;
        baseColors[tokens[0]] = utils.random(tokens[0], 1, 4);
        emit MetadataUpdate(tokens[0]);
    }

    function getValue(uint256 tokenId) public view returns (uint) {
        if (!_exists(tokenId)) {
            return 0;
        } else if (newValues[tokenId] > 0) {
            return newValues[tokenId];
        } else {
            return utils.initValue(tokenId);
        }
    }

    function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) {
        bool burned;
        uint value;

        if (newValues[tokenId] > 0) {
            value = newValues[tokenId];
            burned = false;
        } else if (newValues[tokenId] == 0 && !_exists(tokenId)) {
            value = 0;
            burned = true;
        } else {
            value = utils.initValue(tokenId);
            burned = false;
        }

        return segments.getMetadata(tokenId, value, baseColors[tokenId], burned);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function getMinutesRemaining() public view returns (uint) {
        return utils.minutesRemaining(finalMintingBlock);
    }

    function mintCount() public view returns (uint) {
        return _totalMinted();
    }

    function toggleCombinable() public onlyOwner {
        isCombinable = !isCombinable;
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function freeMintBalance(address addy) public view returns (uint) {
        return freeMints[addy];
    }

    function addFreeMints(address[] calldata addresses, uint quantity) public onlyOwner {
        for (uint i = 0; i < addresses.length; i++) {
            freeMints[addresses[i]] = quantity;
        }
    }
}

File 2 of 9 : IERC4906.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/CHECKS721.sol)

pragma solidity ^0.8.0;

import "erc721a/contracts/IERC721A.sol";

/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC721A {
    /// @dev This event emits when the metadata of a token is changed.
    /// Third-party platforms such as NFT marketplaces can listen to
    /// the event and auto-update the tokens in their apps.
    event MetadataUpdate(uint256 _tokenId);
}

File 3 of 9 : Segments.sol
/*

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░                                                        ░░
░░    . . 1 . .    . . 1 . .    . . 1 . .    . . 1 . .    ░░
░░   .         .  .         .  .         .  .         .   ░░
░░   2         3  2         3  2         3  2         3   ░░
░░   .         .  .         .  .         .  .         .   ░░
░░    . . 4 . .    . . 4 . .    . . 4 . .    . . 4 . .    ░░
░░   .         .  .         .  .         .  .         .   ░░
░░   5         6  5         6  5         6  5         6   ░░
░░   .         .  .         .  .         .  .         .   ░░
░░    . . 7 . .    . . 7 . .    . . 7 . .    . . 7 . .    ░░
░░        a            b            c            d        ░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "./Utilities.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

library segments {
    // Four digits: a, b, c, d
    struct Number {
        uint a;
        uint b;
        uint c;
        uint d;
    }

    function getNumbers(uint input, uint length) internal pure returns (Number memory result) {
        if (length == 1) {
            result.d = input;
        } else if (length == 2) {
            result.c = (input / 10);
            result.d = (input % 10);
        } else if (length == 3) {
            result.b = (input / 100);
            result.c = ((input % 100) / 10);
            result.d = (input % 10);
        } else if (length == 4) {
            result.a = (input / 1000);
            result.b = ((input % 1000) / 100);
            result.c = ((input % 100) / 10);
            result.d = (input % 10);
        }
        return result;
    }

    function getBaseColorName(uint index) internal pure returns (string memory) {
        string[4] memory baseColorNames = ["White", "Red", "Green", "Blue"];
        return baseColorNames[index];
    }

    function getMetadata(uint tokenId, uint value, uint baseColor, bool burned) internal pure returns (string memory) {
        uint[3] memory rgbs = utils.getRgbs(tokenId, baseColor);
        string memory json;

        if (burned) {
            json = string(abi.encodePacked(
            '{"name": "UINTS ',
            utils.uint2str(tokenId),
            ' [BURNED]", "description": "Numbers are art, and we are artists.", "attributes":[{"trait_type": "Burned", "value": "Yes"}], "image": "data:image/svg+xml;base64,',
            Base64.encode(bytes(renderSvg(value, rgbs))),
            '"}'
        ));
        } else {
            json = string(abi.encodePacked(
            '{"name": "UINTS ',
            utils.uint2str(tokenId),
            '", "description": "Numbers are art, and we are artists.", "attributes":[{"trait_type": "Number", "max_value": 9999, "value": ',
            utils.uint2str(value),
            '},{"display_type": "number", "trait_type": "Mint Phase", "value": ',
            utils.uint2str(utils.getMintPhase(tokenId)),
            '},{"trait_type": "Burned", "value": "No"},{"trait_type": "Base Color", "value": "',
            getBaseColorName(baseColor),
            '"},{"trait_type": "Color", "value": "RGB(',
            utils.uint2str(rgbs[0]),
            ",",
            utils.uint2str(rgbs[1]),
            ",",
            utils.uint2str(rgbs[2]),
            ')"}], "image": "data:image/svg+xml;base64,',
            Base64.encode(bytes(renderSvg(value, rgbs))),
            '"}'
        ));
        }

        return string(abi.encodePacked(
            "data:application/json;base64,",
            Base64.encode(bytes(json))
        ));
    }

    function getNumberStyle(uint position, uint input) internal pure returns (string memory) {
        string memory p = utils.uint2str(position);
        if (input == 0) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"2,","#p",p,"3,","#p",p,"5,","#p",p,"6,","#p",p,"7 {fill-opacity:1}"
            ));
        } else if (input == 1) {
            return string(abi.encodePacked(
                "#p",p,"3,","#p",p,"6 {fill-opacity:1}"
            ));
        } else if (input == 2) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"3,","#p",p,"4,","#p",p,"5,","#p",p,"7 {fill-opacity:1}"
            ));
        } else if (input == 3) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"3,","#p",p,"4,","#p",p,"6,","#p",p,"7 {fill-opacity:1}"
            ));
        } else if (input == 4) {
            return string(abi.encodePacked(
                "#p",p,"2,","#p",p,"3,","#p",p,"4,","#p",p,"6 {fill-opacity:1}"
            ));
        } else if (input == 5) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"2,","#p",p,"4,","#p",p,"6,","#p",p,"7 {fill-opacity:1}"
            ));
        } else if (input == 6) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"2,","#p",p,"4,","#p",p,"5,","#p",p,"6,","#p",p,"7 {fill-opacity:1}"
            ));
        } else if (input == 7) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"3,","#p",p,"6 {fill-opacity:1}"
            ));
        } else if (input == 8) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"2,","#p",p,"3,","#p",p,"4,","#p",p,"5,","#p",p,"6,","#p",p,"7 {fill-opacity:1}"
            ));
        } else if (input == 9) {
            return string(abi.encodePacked(
                "#p",p,"1,","#p",p,"2,","#p",p,"3,","#p",p,"4,","#p",p,"6,","#p",p,"7 {fill-opacity:1}"
            ));
        } else {
            return "error";
        }
    }

    function renderSvg(uint value,uint256[3] memory rgbs) internal pure returns (string memory svg) {
        svg = '<svg viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg"><rect id="bg" width="300" height="300" fill="#0C0C0C"/><path id="p01" d="M100 119L103 122L100 125L80 125L77 122L80 119L100 119Z" fill="white" fill-opacity="0.05"/><path id="p02" d="M73 126L76 123L79 126V146L76 149L73 146V126Z" fill="white" fill-opacity="0.05"/><path id="p03" d="M101 126L104 123L107 126V146L104 149L101 146V126Z" fill="white" fill-opacity="0.05"/><path id="p04" d="M100 147L103 150L100 153L80 153L77 150L80 147L100 147Z" fill="white" fill-opacity="0.05"/><path id="p05" d="M73 154L76 151L79 154V174L76 177L73 174V154Z" fill="white" fill-opacity="0.05"/><path id="p06" d="M101 154L104 151L107 154V174L104 177L101 174V154Z" fill="white" fill-opacity="0.05"/><path id="p07" d="M100 175L103 178L100 181L80 181L77 178L80 175L100 175Z" fill="white" fill-opacity="0.05"/><path id="p11" d="M140 119L143 122L140 125L120 125L117 122L120 119L140 119Z" fill="white" fill-opacity="0.05"/><path id="p12" d="M113 126L116 123L119 126V146L116 149L113 146V126Z" fill="white" fill-opacity="0.05"/><path id="p13" d="M141 126L144 123L147 126V146L144 149L141 146V126Z" fill="white" fill-opacity="0.05"/><path id="p14" d="M140 147L143 150L140 153L120 153L117 150L120 147L140 147Z" fill="white" fill-opacity="0.05"/><path id="p15" d="M113 154L116 151L119 154V174L116 177L113 174V154Z" fill="white" fill-opacity="0.05"/><path id="p16" d="M141 154L144 151L147 154V174L144 177L141 174V154Z" fill="white" fill-opacity="0.05"/><path id="p17" d="M140 175L143 178L140 181L120 181L117 178L120 175L140 175Z" fill="white" fill-opacity="0.05"/><path id="p21" d="M180 119L183 122L180 125L160 125L157 122L160 119L180 119Z" fill="white" fill-opacity="0.05"/><path id="p22" d="M153 126L156 123L159 126V146L156 149L153 146V126Z" fill="white" fill-opacity="0.05"/><path id="p23" d="M181 126L184 123L187 126V146L184 149L181 146V126Z" fill="white" fill-opacity="0.05"/><path id="p24" d="M180 147L183 150L180 153L160 153L157 150L160 147L180 147Z" fill="white" fill-opacity="0.05"/><path id="p25" d="M153 154L156 151L159 154V174L156 177L153 174V154Z" fill="white" fill-opacity="0.05"/><path id="p26" d="M181 154L184 151L187 154V174L184 177L181 174V154Z" fill="white" fill-opacity="0.05"/><path id="p27" d="M180 175L183 178L180 181L160 181L157 178L160 175L180 175Z" fill="white" fill-opacity="0.05"/><path id="p31" d="M220 119L223 122L220 125L200 125L197 122L200 119L220 119Z" fill="white" fill-opacity="0.05"/><path id="p32" d="M193 126L196 123L199 126V146L196 149L193 146V126Z" fill="white" fill-opacity="0.05"/><path id="p33" d="M221 126L224 123L227 126V146L224 149L221 146V126Z" fill="white" fill-opacity="0.05"/><path id="p34" d="M220 147L223 150L220 153L200 153L197 150L200 147L220 147Z" fill="white" fill-opacity="0.05"/><path id="p35" d="M193 154L196 151L199 154V174L196 177L193 174V154Z" fill="white" fill-opacity="0.05"/><path id="p36" d="M221 154L224 151L227 154V174L224 177L221 174V154Z" fill="white" fill-opacity="0.05"/><path id="p37" d="M220 175L223 178L220 181L200 181L197 178L200 175L220 175Z" fill="white" fill-opacity="0.05"/><style>';

        string memory styles = string(
            abi.encodePacked(
                "*{fill:rgb(",
                utils.uint2str(rgbs[0]),
                ",",
                utils.uint2str(rgbs[1]),
                ",",
                utils.uint2str(rgbs[2]),
                ")}#bg{fill:#0C0C0C}"
            )
        );

        if (value == 0) {} else {
            uint length = bytes(utils.uint2str(value)).length;
            Number memory number = getNumbers(value, length);
            if (length == 1) {
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(3, number.d))
                );
            } else if (length == 2) {
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(2, number.c))
                );
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(3, number.d))
                );
            } else if (length == 3) {
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(1, number.b))
                );
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(2, number.c))
                );
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(3, number.d))
                );
            } else if (length == 4) {
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(0, number.a))
                );
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(1, number.b))
                );
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(2, number.c))
                );
                styles = string(
                    abi.encodePacked(styles, getNumberStyle(3, number.d))
                );
            }
        }
        return string(abi.encodePacked(svg, styles, "</style></svg>"));
    }
}

File 4 of 9 : Utilities.sol
/*

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░                                                        ░░
░░    . . . . .    . . . . .    . . . . .    . . . . .    ░░
░░   .         .  .         .  .         .  .         .   ░░
░░   .         .  .         .  .         .  .         .   ░░
░░   .         .  .         .  .         .  .         .   ░░
░░    . . . . .    . . . . .    . . . . .    . . . . .    ░░
░░   .         .  .         .  .         .  .         .   ░░
░░   .         .  .         .  .         .  .         .   ░░
░░   .         .  .         .  .         .  .         .   ░░
░░    . . . . .    . . . . .    . . . . .    . . . . .    ░░
░░                                                        ░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

library utils {
    function uint2str(
        uint _i
    ) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k - 1;
            uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    // Get a pseudo random number
    function random(uint input, uint min, uint max) internal pure returns (uint) {
        uint randRange = max - min;
        return max - (uint(keccak256(abi.encodePacked(input + 2023))) % randRange) - 1;
    }

    function initValue(uint tokenId) internal pure returns (uint value) {
        if (tokenId < 1000) {
            value = random(tokenId, 1, 51);
        } else if (tokenId < 2000) {
            value = random(tokenId, 1, 46);
        }  else if (tokenId < 3000) {
            value = random(tokenId, 1, 41);
        }  else if (tokenId < 4000) {
            value = random(tokenId, 1, 36);
        }  else if (tokenId < 5000) {
            value = random(tokenId, 1, 31);
        }  else if (tokenId < 6000) {
            value = random(tokenId, 1, 26);
        }  else if (tokenId < 7000) {
            value = random(tokenId, 1, 21);
        }  else if (tokenId < 8000) {
            value = random(tokenId, 1, 16);
        }  else if (tokenId < 9000) {
            value = random(tokenId, 1, 11);
        }  else if (tokenId < 10000) {
            value = random(tokenId, 1, 6);
        } else {
            value = 1;
        }
        return value;
    }

    function getRgbs(uint tokenId, uint baseColor) internal pure returns (uint256[3] memory rgbValues) {
        if (baseColor > 0) {
            for (uint i = 0; i < 3; i++) {
                if (baseColor == i + 1) {
                    rgbValues[i] = 255;
                } else {
                    rgbValues[i] = utils.random(tokenId + i, 0, 256);
                }
            }
        } else {
            for (uint i = 0; i < 3; i++) {
                rgbValues[i] = 255;
            }
        }
        return rgbValues;
    }

    function getMintPhase(uint tokenId) internal pure returns (uint mintPhase) {
        if (tokenId <= 1000) {
            mintPhase = 1;
        } else if (tokenId <= 5000) {
            mintPhase = 2;
        } else {
            mintPhase = 3;
        }
    }

    function secondsRemaining(uint end) internal view returns (uint) {
        if (block.timestamp <= end) {
            return end - block.timestamp;
        } else {
            return 0;
        }
    }

    function minutesRemaining(uint end) internal view returns (uint) {
        if (secondsRemaining(end) >= 60) {
            return (end - block.timestamp) / 60;
        } else {
            return 0;
        }
    }
}

File 5 of 9 : 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 6 of 9 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

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

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 7 of 9 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 8 of 9 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 9 of 9 : 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;
    }
}

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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_finalBlock","type":"uint256"}],"name":"CountdownExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"addFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"combine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalMintingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"freeMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinutesRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCombinable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"toggleCombinable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee5380006009556000600a60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040518060400160405280600581526020017f55494e54530000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f55494e54530000000000000000000000000000000000000000000000000000008152508160029081620000b5919062000457565b508060039081620000c7919062000457565b50620000d86200010660201b60201c565b600081905550505062000100620000f46200010f60201b60201c565b6200011760201b60201c565b6200053e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025f57607f821691505b60208210810362000275576200027462000217565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a0565b620002eb8683620002a0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000338620003326200032c8462000303565b6200030d565b62000303565b9050919050565b6000819050919050565b620003548362000317565b6200036c62000363826200033f565b848454620002ad565b825550505050565b600090565b6200038362000374565b6200039081848462000349565b505050565b5b81811015620003b857620003ac60008262000379565b60018101905062000396565b5050565b601f8211156200040757620003d1816200027b565b620003dc8462000290565b81016020851015620003ec578190505b62000404620003fb8562000290565b83018262000395565b50505b505050565b600082821c905092915050565b60006200042c600019846008026200040c565b1980831691505092915050565b600062000447838362000419565b9150826002028217905092915050565b6200046282620001dd565b67ffffffffffffffff8111156200047e576200047d620001e8565b5b6200048a825462000246565b62000497828285620003bc565b600060209050601f831160018114620004cf5760008415620004ba578287015190505b620004c6858262000439565b86555062000536565b601f198416620004df866200027b565b60005b828110156200050957848901518255600182019150602085019450602081019050620004e2565b8683101562000529578489015162000525601f89168262000419565b8355505b6001600288020188555050505b505050505050565b615f6c806200054e6000396000f3fe6080604052600436106101cd5760003560e01c80637c928fe9116100f7578063a6c56c7911610095578063d1d18f5011610064578063d1d18f501461060f578063d8c718a81461064c578063e985e9c514610675578063f2fde38b146106b2576101cd565b8063a6c56c7914610574578063b88d4fde1461059f578063b8be6e98146105bb578063c87b56dd146105d2576101cd565b80639659867e116100d15780639659867e146104d9578063a035b1fe14610504578063a0712d681461052f578063a22cb4651461054b576101cd565b80637c928fe91461045a5780638da5cb5b1461048357806395d89b41146104ae576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103ad5780636352211e146103c957806370a0823114610406578063715018a614610443576101cd565b806323b872dd1461032657806325e514c61461034257806337c5fa0d1461036b5780633ccfd60b14610396576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630ff4c9161461029357806318160ddd146102d057806321cf7ecf146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906132e6565b6106db565b604051610206919061332e565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b60405161023191906133d9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613431565b6107ff565b60405161026e919061349f565b60405180910390f35b610291600480360381019061028c91906134e6565b61087e565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190613431565b6109c2565b6040516102c79190613535565b60405180910390f35b3480156102dc57600080fd5b506102e5610a22565b6040516102f29190613535565b60405180910390f35b34801561030757600080fd5b50610310610a39565b60405161031d9190613535565b60405180910390f35b610340600480360381019061033b9190613550565b610a3f565b005b34801561034e57600080fd5b50610369600480360381019061036491906136eb565b610d61565b005b34801561037757600080fd5b506103806110bb565b60405161038d919061332e565b60405180910390f35b3480156103a257600080fd5b506103ab6110ce565b005b6103c760048036038101906103c29190613550565b611116565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613431565b611136565b6040516103fd919061349f565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613734565b611148565b60405161043a9190613535565b60405180910390f35b34801561044f57600080fd5b50610458611200565b005b34801561046657600080fd5b50610481600480360381019061047c9190613431565b611214565b005b34801561048f57600080fd5b506104986112f9565b6040516104a5919061349f565b60405180910390f35b3480156104ba57600080fd5b506104c3611323565b6040516104d091906133d9565b60405180910390f35b3480156104e557600080fd5b506104ee6113b5565b6040516104fb9190613535565b60405180910390f35b34801561051057600080fd5b506105196113c4565b6040516105269190613535565b60405180910390f35b61054960048036038101906105449190613431565b6113ca565b005b34801561055757600080fd5b50610572600480360381019061056d919061378d565b611427565b005b34801561058057600080fd5b50610589611532565b6040516105969190613535565b60405180910390f35b6105b960048036038101906105b49190613882565b611544565b005b3480156105c757600080fd5b506105d06115b7565b005b3480156105de57600080fd5b506105f960048036038101906105f49190613431565b6115eb565b60405161060691906133d9565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190613734565b61169f565b6040516106439190613535565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190613960565b6116e8565b005b34801561068157600080fd5b5061069c600480360381019061069791906139c0565b611782565b6040516106a9919061332e565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613734565b611816565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077c90613a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890613a2f565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a82611899565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088982611136565b90508073ffffffffffffffffffffffffffffffffffffffff166108aa6118f8565b73ffffffffffffffffffffffffffffffffffffffff161461090d576108d6816108d16118f8565b611782565b61090c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cd82611899565b6109da5760009050610a1d565b6000600c6000848152602001908152602001600020541115610a1157600c6000838152602001908152602001600020549050610a1d565b610a1a82611900565b90505b919050565b6000610a2c611a41565b6001546000540303905090565b600b5481565b6000610a4a82611a4a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610abd84611b16565b91509150610ad38187610ace6118f8565b611b3d565b610b1f57610ae886610ae36118f8565b611782565b610b1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b928686866001611b81565b8015610b9d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c6b85610c47888887611b87565b7c020000000000000000000000000000000000000000000000000000000017611baf565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610cf15760006001850190506000600460008381526020019081526020016000205403610cef576000548114610cee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d598686866001611bda565b505050505050565b600a60009054906101000a900460ff16610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613aac565b60405180910390fd5b600080600090505b8251811015610e94573373ffffffffffffffffffffffffffffffffffffffff16610dfb848381518110610dee57610ded613acc565b5b6020026020010151611136565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890613b47565b60405180910390fd5b610e74838281518110610e6757610e66613acc565b5b60200260200101516109c2565b82610e7f9190613b96565b91508080610e8c90613bca565b915050610db8565b5061270f811115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613c5e565b60405180910390fd5b6000600190505b8251811015610fd757610f0d838281518110610f0057610eff613acc565b5b6020026020010151611be0565b6000600c6000858481518110610f2657610f25613acc565b5b60200260200101518152602001908152602001600020819055506000600d6000858481518110610f5957610f58613acc565b5b60200260200101518152602001908152602001600020819055507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7838281518110610fa757610fa6613acc565b5b6020026020010151604051610fbc9190613535565b60405180910390a18080610fcf90613bca565b915050610ee1565b5080600c600084600081518110610ff157610ff0613acc565b5b60200260200101518152602001908152602001600020819055506110338260008151811061102257611021613acc565b5b602002602001015160016004611bee565b600d60008460008151811061104b5761104a613acc565b5b60200260200101518152602001908152602001600020819055507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce78260008151811061109a57611099613acc565b5b60200260200101516040516110af9190613535565b60405180910390a15050565b600a60009054906101000a900460ff1681565b6110d6611c62565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061111457600080fd5b565b61113183838360405180602001604052806000815250611544565b505050565b600061114182611a4a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111af576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611208611c62565b6112126000611ce0565b565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613cca565b60405180910390fd5b6112a03382611da6565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ef9190613cea565b9250508190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133290613a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461135e90613a2f565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b60006113bf611ef2565b905090565b60095481565b600954816113d89190613d1e565b34101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613dac565b60405180910390fd5b6114243382611da6565b50565b80600760006114346118f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e16118f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611526919061332e565b60405180910390a35050565b600061153f600b54611f05565b905090565b61154f848484610a3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115b15761157a84848484611f40565b6115b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115bf611c62565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60606000806000600c600086815260200190815260200160002054111561162b57600c600085815260200190815260200160002054905060009150611677565b6000600c600086815260200190815260200160002054148015611654575061165284611899565b155b15611666576000905060019150611676565b61166f84611900565b9050600091505b5b6116968482600d60008881526020019081526020016000205485612090565b92505050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116f0611c62565b60005b8383905081101561177c5781600e600086868581811061171657611715613acc565b5b905060200201602081019061172b9190613734565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061177490613bca565b9150506116f3565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181e611c62565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490613e3e565b60405180910390fd5b61189681611ce0565b50565b6000816118a4611a41565b111580156118b3575060005482105b80156118f1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006103e8821015611920576119198260016033611bee565b9050611a3c565b6107d082101561193e57611937826001602e611bee565b9050611a3b565b610bb882101561195c576119558260016029611bee565b9050611a3a565b610fa082101561197a576119738260016024611bee565b9050611a39565b61138882101561199857611991826001601f611bee565b9050611a38565b6117708210156119b6576119af826001601a611bee565b9050611a37565b611b588210156119d4576119cd8260016015611bee565b9050611a36565b611f408210156119f2576119eb8260016010611bee565b9050611a35565b612328821015611a1057611a09826001600b611bee565b9050611a34565b612710821015611a2e57611a278260016006611bee565b9050611a33565b600190505b5b5b5b5b5b5b5b5b5b919050565b60006001905090565b60008082905080611a59611a41565b11611adf57600054811015611ade5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611adc575b60008103611ad2576004600083600190039350838152602001908152602001600020549050611aa8565b8092505050611b11565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b9e8686846121e8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611beb8160006121f1565b50565b6000808383611bfd9190613cea565b90506001816107e787611c109190613b96565b604051602001611c209190613e7f565b6040516020818303038152906040528051906020012060001c611c439190613ec9565b84611c4e9190613cea565b611c589190613cea565b9150509392505050565b611c6a612443565b73ffffffffffffffffffffffffffffffffffffffff16611c886112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590613f46565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611db0611ef2565b90506103e88110611e7f576000611dc8600b5461244b565b11611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613fb2565b60405180910390fd5b61138881108015611e2657506113888282611e239190613b96565b10155b15611e7a576201518042611e3a9190613b96565b600b819055507ff5b316bf09d21e0058eb23be118a6b81bd52674b4cb843e0f446b986ce22433e600b54604051611e719190613535565b60405180910390a15b611ee3565b6103e88282611e8e9190613b96565b10611ee2576201518042611ea29190613b96565b600b819055507ff5b316bf09d21e0058eb23be118a6b81bd52674b4cb843e0f446b986ce22433e600b54604051611ed99190613535565b60405180910390a15b5b611eed8383612471565b505050565b6000611efc611a41565b60005403905090565b6000603c611f128361244b565b10611f3657603c4283611f259190613cea565b611f2f9190613fd2565b9050611f3b565b600090505b919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f666118f8565b8786866040518563ffffffff1660e01b8152600401611f889493929190614058565b6020604051808303816000875af1925050508015611fc457506040513d601f19601f82011682018060405250810190611fc191906140b9565b60015b61203d573d8060008114611ff4576040519150601f19603f3d011682016040523d82523d6000602084013e611ff9565b606091505b506000815103612035576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600061209e868561262c565b9050606083156120ea576120b187612713565b6120c36120be888561289b565b612bbd565b6040516020016120d492919061429e565b60405160208183030381529060405290506121b4565b6120f387612713565b6120fc87612713565b61210d6121088a612d20565b612713565b61211688612d51565b6121378660006003811061212d5761212c613acc565b5b6020020151612713565b6121588760016003811061214e5761214d613acc565b5b6020020151612713565b6121798860026003811061216f5761216e613acc565b5b6020020151612713565b61218b6121868e8b61289b565b612bbd565b6040516020016121a2989796959493929190614601565b60405160208183030381529060405290505b6121bd81612bbd565b6040516020016121cd9190614722565b60405160208183030381529060405292505050949350505050565b60009392505050565b60006121fc83611a4a565b9050600081905060008061220f86611b16565b9150915084156122785761222b81846122266118f8565b611b3d565b612277576122408361223b6118f8565b611782565b612276576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612286836000886001611b81565b801561229157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612339836122f685600088611b87565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611baf565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036123bf57600060018701905060006004600083815260200190815260200160002054036123bd5760005481146123bc578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612429836000886001611bda565b600160008154809291906001019190505550505050505050565b600033905090565b60008142116124675742826124609190613cea565b905061246c565b600090505b919050565b600080549050600082036124b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124be6000848385611b81565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612535836125266000866000611b87565b61252f85612e6c565b17611baf565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061259b565b5060008203612611576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126276000848385611bda565b505050565b612634613230565b60008211156126ce5760005b60038110156126c8576001816126569190613b96565b830361267f5760ff82826003811061267157612670613acc565b5b6020020181815250506126b5565b612698818561268e9190613b96565b6000610100611bee565b8282600381106126ab576126aa613acc565b5b6020020181815250505b80806126c090613bca565b915050612640565b5061270d565b60005b600381101561270b5760ff8282600381106126ef576126ee613acc565b5b602002018181525050808061270390613bca565b9150506126d1565b505b92915050565b60606000820361275a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612896565b600082905060005b6000821461278c57808061277590613bca565b915050600a826127859190613fd2565b9150612762565b60008167ffffffffffffffff8111156127a8576127a76135a8565b5b6040519080825280601f01601f1916602001820160405280156127da5781602001600182028036833780820191505090505b50905060008290505b6000861461288e576001816127f89190613cea565b90506000600a808861280a9190613fd2565b6128149190613d1e565b8761281f9190613cea565b603061282b9190614751565b905060008160f81b90508084848151811061284957612848613acc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886128859190613fd2565b975050506127e3565b819450505050505b919050565b606060405180610c400160405280610c19815260200161531e610c199139905060006128de836000600381106128d4576128d3613acc565b5b6020020151612713565b6128ff846001600381106128f5576128f4613acc565b5b6020020151612713565b6129208560026003811061291657612915613acc565b5b6020020151612713565b6040516020016129329392919061481e565b60405160208183030381529060405290506000840315612b9257600061295785612713565b51905060006129668683612e7c565b9050600182036129a7578261298060038360600151612fb3565b60405160200161299192919061487b565b6040516020818303038152906040529250612b8f565b60028203612a1857826129bf60028360400151612fb3565b6040516020016129d092919061487b565b6040516020818303038152906040529250826129f160038360600151612fb3565b604051602001612a0292919061487b565b6040516020818303038152906040529250612b8e565b60038203612abb5782612a3060018360200151612fb3565b604051602001612a4192919061487b565b604051602081830303815290604052925082612a6260028360400151612fb3565b604051602001612a7392919061487b565b604051602081830303815290604052925082612a9460038360600151612fb3565b604051602001612aa592919061487b565b6040516020818303038152906040529250612b8d565b60048203612b8c5782612ad360008360000151612fb3565b604051602001612ae492919061487b565b604051602081830303815290604052925082612b0560018360200151612fb3565b604051602001612b1692919061487b565b604051602081830303815290604052925082612b3760028360400151612fb3565b604051602001612b4892919061487b565b604051602081830303815290604052925082612b6960038360600151612fb3565b604051602001612b7a92919061487b565b60405160208183030381529060405292505b5b5b5b50505b8181604051602001612ba59291906148eb565b60405160208183030381529060405291505092915050565b60606000825103612bdf57604051806020016040528060008152509050612d1b565b60006040518060600160405280604081526020016152de6040913990506000600360028551612c0e9190613b96565b612c189190613fd2565b6004612c249190613d1e565b67ffffffffffffffff811115612c3d57612c3c6135a8565b5b6040519080825280601f01601f191660200182016040528015612c6f5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612cdb576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612c80565b5050600386510660018114612cf75760028114612d0a57612d12565b603d6001830353603d6002830353612d12565b603d60018303535b50505080925050505b919050565b60006103e88211612d345760019050612d4c565b6113888211612d465760029050612d4b565b600390505b5b919050565b6060600060405180608001604052806040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477265656e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152508152509050808360048110612e5f57612e5e613acc565b5b6020020151915050919050565b60006001821460e11b9050919050565b612e84613252565b60018203612e9b5782816060018181525050612fad565b60028203612ed457600a83612eb09190613fd2565b816040018181525050600a83612ec69190613ec9565b816060018181525050612fac565b60038203612f2f57606483612ee99190613fd2565b816020018181525050600a606484612f019190613ec9565b612f0b9190613fd2565b816040018181525050600a83612f219190613ec9565b816060018181525050612fab565b60048203612faa576103e883612f459190613fd2565b81600001818152505060646103e884612f5e9190613ec9565b612f689190613fd2565b816020018181525050600a606484612f809190613ec9565b612f8a9190613fd2565b816040018181525050600a83612fa09190613ec9565b8160600181815250505b5b5b5b92915050565b60606000612fc084612713565b905060008303612ffc57808182838485604051602001612fe596959493929190614b2e565b60405160208183030381529060405291505061322a565b6001830361302e578081604051602001613017929190614c56565b60405160208183030381529060405291505061322a565b6002830361306657808182838460405160200161304f959493929190614cf2565b60405160208183030381529060405291505061322a565b6003830361309e578081828384604051602001613087959493929190614dab565b60405160208183030381529060405291505061322a565b600483036130d457808182836040516020016130bd9493929190614e64565b60405160208183030381529060405291505061322a565b6005830361310c5780818283846040516020016130f5959493929190614efa565b60405160208183030381529060405291505061322a565b600683036131465780818283848560405160200161312f96959493929190614fb3565b60405160208183030381529060405291505061322a565b6007830361317a578081826040516020016131639392919061508f565b60405160208183030381529060405291505061322a565b600883036131b6578081828384858660405160200161319f9796959493929190615102565b60405160208183030381529060405291505061322a565b600983036131f0578081828384856040516020016131d996959493929190615201565b60405160208183030381529060405291505061322a565b6040518060400160405280600581526020017f6572726f720000000000000000000000000000000000000000000000000000008152509150505b92915050565b6040518060600160405280600390602082028036833780820191505090505090565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132c38161328e565b81146132ce57600080fd5b50565b6000813590506132e0816132ba565b92915050565b6000602082840312156132fc576132fb613284565b5b600061330a848285016132d1565b91505092915050565b60008115159050919050565b61332881613313565b82525050565b6000602082019050613343600083018461331f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613383578082015181840152602081019050613368565b60008484015250505050565b6000601f19601f8301169050919050565b60006133ab82613349565b6133b58185613354565b93506133c5818560208601613365565b6133ce8161338f565b840191505092915050565b600060208201905081810360008301526133f381846133a0565b905092915050565b6000819050919050565b61340e816133fb565b811461341957600080fd5b50565b60008135905061342b81613405565b92915050565b60006020828403121561344757613446613284565b5b60006134558482850161341c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134898261345e565b9050919050565b6134998161347e565b82525050565b60006020820190506134b46000830184613490565b92915050565b6134c38161347e565b81146134ce57600080fd5b50565b6000813590506134e0816134ba565b92915050565b600080604083850312156134fd576134fc613284565b5b600061350b858286016134d1565b925050602061351c8582860161341c565b9150509250929050565b61352f816133fb565b82525050565b600060208201905061354a6000830184613526565b92915050565b60008060006060848603121561356957613568613284565b5b6000613577868287016134d1565b9350506020613588868287016134d1565b92505060406135998682870161341c565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135e08261338f565b810181811067ffffffffffffffff821117156135ff576135fe6135a8565b5b80604052505050565b600061361261327a565b905061361e82826135d7565b919050565b600067ffffffffffffffff82111561363e5761363d6135a8565b5b602082029050602081019050919050565b600080fd5b600061366761366284613623565b613608565b9050808382526020820190506020840283018581111561368a5761368961364f565b5b835b818110156136b3578061369f888261341c565b84526020840193505060208101905061368c565b5050509392505050565b600082601f8301126136d2576136d16135a3565b5b81356136e2848260208601613654565b91505092915050565b60006020828403121561370157613700613284565b5b600082013567ffffffffffffffff81111561371f5761371e613289565b5b61372b848285016136bd565b91505092915050565b60006020828403121561374a57613749613284565b5b6000613758848285016134d1565b91505092915050565b61376a81613313565b811461377557600080fd5b50565b60008135905061378781613761565b92915050565b600080604083850312156137a4576137a3613284565b5b60006137b2858286016134d1565b92505060206137c385828601613778565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156137ed576137ec6135a8565b5b6137f68261338f565b9050602081019050919050565b82818337600083830152505050565b6000613825613820846137d2565b613608565b905082815260208101848484011115613841576138406137cd565b5b61384c848285613803565b509392505050565b600082601f830112613869576138686135a3565b5b8135613879848260208601613812565b91505092915050565b6000806000806080858703121561389c5761389b613284565b5b60006138aa878288016134d1565b94505060206138bb878288016134d1565b93505060406138cc8782880161341c565b925050606085013567ffffffffffffffff8111156138ed576138ec613289565b5b6138f987828801613854565b91505092959194509250565b600080fd5b60008083601f8401126139205761391f6135a3565b5b8235905067ffffffffffffffff81111561393d5761393c613905565b5b6020830191508360208202830111156139595761395861364f565b5b9250929050565b60008060006040848603121561397957613978613284565b5b600084013567ffffffffffffffff81111561399757613996613289565b5b6139a38682870161390a565b935093505060206139b68682870161341c565b9150509250925092565b600080604083850312156139d7576139d6613284565b5b60006139e5858286016134d1565b92505060206139f6858286016134d1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a4757607f821691505b602082108103613a5a57613a59613a00565b5b50919050565b7f636f6d62696e696e67206e6f7420616374697665000000000000000000000000600082015250565b6000613a96601483613354565b9150613aa182613a60565b602082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d757374206f776e20616c6c20746f6b656e7300000000000000000000000000600082015250565b6000613b31601383613354565b9150613b3c82613afb565b602082019050919050565b60006020820190508181036000830152613b6081613b24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ba1826133fb565b9150613bac836133fb565b9250828201905080821115613bc457613bc3613b67565b5b92915050565b6000613bd5826133fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c0757613c06613b67565b5b600182019050919050565b7f73756d206d7573742062652039393939206f72206c6573730000000000000000600082015250565b6000613c48601883613354565b9150613c5382613c12565b602082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f6e6f7420656e6f7567682066726565206d696e74730000000000000000000000600082015250565b6000613cb4601583613354565b9150613cbf82613c7e565b602082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b6000613cf5826133fb565b9150613d00836133fb565b9250828203905081811115613d1857613d17613b67565b5b92915050565b6000613d29826133fb565b9150613d34836133fb565b9250828202613d42816133fb565b91508282048414831517613d5957613d58613b67565b5b5092915050565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b6000613d96600e83613354565b9150613da182613d60565b602082019050919050565b60006020820190508181036000830152613dc581613d89565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e28602683613354565b9150613e3382613dcc565b604082019050919050565b60006020820190508181036000830152613e5781613e1b565b9050919050565b6000819050919050565b613e79613e74826133fb565b613e5e565b82525050565b6000613e8b8284613e68565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ed4826133fb565b9150613edf836133fb565b925082613eef57613eee613e9a565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f30602083613354565b9150613f3b82613efa565b602082019050919050565b60006020820190508181036000830152613f5f81613f23565b9050919050565b7f6d696e7420697320636c6f736564000000000000000000000000000000000000600082015250565b6000613f9c600e83613354565b9150613fa782613f66565b602082019050919050565b60006020820190508181036000830152613fcb81613f8f565b9050919050565b6000613fdd826133fb565b9150613fe8836133fb565b925082613ff857613ff7613e9a565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b600061402a82614003565b614034818561400e565b9350614044818560208601613365565b61404d8161338f565b840191505092915050565b600060808201905061406d6000830187613490565b61407a6020830186613490565b6140876040830185613526565b8181036060830152614099818461401f565b905095945050505050565b6000815190506140b3816132ba565b92915050565b6000602082840312156140cf576140ce613284565b5b60006140dd848285016140a4565b91505092915050565b600081905092915050565b7f7b226e616d65223a202255494e54532000000000000000000000000000000000600082015250565b60006141276010836140e6565b9150614132826140f1565b601082019050919050565b600061414882613349565b61415281856140e6565b9350614162818560208601613365565b80840191505092915050565b7f205b4255524e45445d222c20226465736372697074696f6e223a20224e756d6260008201527f65727320617265206172742c20616e642077652061726520617274697374732e60208201527f222c202261747472696275746573223a5b7b2274726169745f74797065223a2060408201527f224275726e6564222c202276616c7565223a2022596573227d5d2c2022696d6160608201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c608082015250565b600061423c60a0836140e6565b91506142478261416e565b60a082019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006142886002836140e6565b915061429382614252565b600282019050919050565b60006142a98261411a565b91506142b5828561413d565b91506142c08261422f565b91506142cc828461413d565b91506142d78261427b565b91508190509392505050565b7f222c20226465736372697074696f6e223a20224e756d6265727320617265206160008201527f72742c20616e642077652061726520617274697374732e222c2022617474726960208201527f6275746573223a5b7b2274726169745f74797065223a20224e756d626572222c60408201527f20226d61785f76616c7565223a20393939392c202276616c7565223a20000000606082015250565b600061438b607d836140e6565b9150614396826142e3565b607d82019050919050565b7f7d2c7b22646973706c61795f74797065223a20226e756d626572222c2022747260008201527f6169745f74797065223a20224d696e74205068617365222c202276616c75652260208201527f3a20000000000000000000000000000000000000000000000000000000000000604082015250565b60006144236042836140e6565b915061442e826143a1565b604282019050919050565b7f7d2c7b2274726169745f74797065223a20224275726e6564222c202276616c7560008201527f65223a20224e6f227d2c7b2274726169745f74797065223a202242617365204360208201527f6f6c6f72222c202276616c7565223a2022000000000000000000000000000000604082015250565b60006144bb6051836140e6565b91506144c682614439565b605182019050919050565b7f227d2c7b2274726169745f74797065223a2022436f6c6f72222c202276616c7560008201527f65223a2022524742280000000000000000000000000000000000000000000000602082015250565b600061452d6029836140e6565b9150614538826144d1565b602982019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b60006145796001836140e6565b915061458482614543565b600182019050919050565b7f29227d5d2c2022696d616765223a2022646174613a696d6167652f7376672b7860008201527f6d6c3b6261736536342c00000000000000000000000000000000000000000000602082015250565b60006145eb602a836140e6565b91506145f68261458f565b602a82019050919050565b600061460c8261411a565b9150614618828b61413d565b91506146238261437e565b915061462f828a61413d565b915061463a82614416565b9150614646828961413d565b9150614651826144ae565b915061465d828861413d565b915061466882614520565b9150614674828761413d565b915061467f8261456c565b915061468b828661413d565b91506146968261456c565b91506146a2828561413d565b91506146ad826145de565b91506146b9828461413d565b91506146c48261427b565b91508190509998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061470c601d836140e6565b9150614717826146d6565b601d82019050919050565b600061472d826146ff565b9150614739828461413d565b915081905092915050565b600060ff82169050919050565b600061475c82614744565b915061476783614744565b9250828201905060ff8111156147805761477f613b67565b5b92915050565b7f2a7b66696c6c3a72676228000000000000000000000000000000000000000000600082015250565b60006147bc600b836140e6565b91506147c782614786565b600b82019050919050565b7f297d2362677b66696c6c3a233043304330437d00000000000000000000000000600082015250565b60006148086013836140e6565b9150614813826147d2565b601382019050919050565b6000614829826147af565b9150614835828661413d565b91506148408261456c565b915061484c828561413d565b91506148578261456c565b9150614863828461413d565b915061486e826147fb565b9150819050949350505050565b6000614887828561413d565b9150614893828461413d565b91508190509392505050565b7f3c2f7374796c653e3c2f7376673e000000000000000000000000000000000000600082015250565b60006148d5600e836140e6565b91506148e08261489f565b600e82019050919050565b60006148f7828561413d565b9150614903828461413d565b915061490e826148c8565b91508190509392505050565b7f2370000000000000000000000000000000000000000000000000000000000000600082015250565b60006149506002836140e6565b915061495b8261491a565b600282019050919050565b7f312c000000000000000000000000000000000000000000000000000000000000600082015250565b600061499c6002836140e6565b91506149a782614966565b600282019050919050565b7f322c000000000000000000000000000000000000000000000000000000000000600082015250565b60006149e86002836140e6565b91506149f3826149b2565b600282019050919050565b7f332c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a346002836140e6565b9150614a3f826149fe565b600282019050919050565b7f352c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a806002836140e6565b9150614a8b82614a4a565b600282019050919050565b7f362c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614acc6002836140e6565b9150614ad782614a96565b600282019050919050565b7f37207b66696c6c2d6f7061636974793a317d0000000000000000000000000000600082015250565b6000614b186012836140e6565b9150614b2382614ae2565b601282019050919050565b6000614b3982614943565b9150614b45828961413d565b9150614b508261498f565b9150614b5b82614943565b9150614b67828861413d565b9150614b72826149db565b9150614b7d82614943565b9150614b89828761413d565b9150614b9482614a27565b9150614b9f82614943565b9150614bab828661413d565b9150614bb682614a73565b9150614bc182614943565b9150614bcd828561413d565b9150614bd882614abf565b9150614be382614943565b9150614bef828461413d565b9150614bfa82614b0b565b9150819050979650505050505050565b7f36207b66696c6c2d6f7061636974793a317d0000000000000000000000000000600082015250565b6000614c406012836140e6565b9150614c4b82614c0a565b601282019050919050565b6000614c6182614943565b9150614c6d828561413d565b9150614c7882614a27565b9150614c8382614943565b9150614c8f828461413d565b9150614c9a82614c33565b91508190509392505050565b7f342c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614cdc6002836140e6565b9150614ce782614ca6565b600282019050919050565b6000614cfd82614943565b9150614d09828861413d565b9150614d148261498f565b9150614d1f82614943565b9150614d2b828761413d565b9150614d3682614a27565b9150614d4182614943565b9150614d4d828661413d565b9150614d5882614ccf565b9150614d6382614943565b9150614d6f828561413d565b9150614d7a82614a73565b9150614d8582614943565b9150614d91828461413d565b9150614d9c82614b0b565b91508190509695505050505050565b6000614db682614943565b9150614dc2828861413d565b9150614dcd8261498f565b9150614dd882614943565b9150614de4828761413d565b9150614def82614a27565b9150614dfa82614943565b9150614e06828661413d565b9150614e1182614ccf565b9150614e1c82614943565b9150614e28828561413d565b9150614e3382614abf565b9150614e3e82614943565b9150614e4a828461413d565b9150614e5582614b0b565b91508190509695505050505050565b6000614e6f82614943565b9150614e7b828761413d565b9150614e86826149db565b9150614e9182614943565b9150614e9d828661413d565b9150614ea882614a27565b9150614eb382614943565b9150614ebf828561413d565b9150614eca82614ccf565b9150614ed582614943565b9150614ee1828461413d565b9150614eec82614c33565b915081905095945050505050565b6000614f0582614943565b9150614f11828861413d565b9150614f1c8261498f565b9150614f2782614943565b9150614f33828761413d565b9150614f3e826149db565b9150614f4982614943565b9150614f55828661413d565b9150614f6082614ccf565b9150614f6b82614943565b9150614f77828561413d565b9150614f8282614abf565b9150614f8d82614943565b9150614f99828461413d565b9150614fa482614b0b565b91508190509695505050505050565b6000614fbe82614943565b9150614fca828961413d565b9150614fd58261498f565b9150614fe082614943565b9150614fec828861413d565b9150614ff7826149db565b915061500282614943565b915061500e828761413d565b915061501982614ccf565b915061502482614943565b9150615030828661413d565b915061503b82614a73565b915061504682614943565b9150615052828561413d565b915061505d82614abf565b915061506882614943565b9150615074828461413d565b915061507f82614b0b565b9150819050979650505050505050565b600061509a82614943565b91506150a6828661413d565b91506150b18261498f565b91506150bc82614943565b91506150c8828561413d565b91506150d382614a27565b91506150de82614943565b91506150ea828461413d565b91506150f582614c33565b9150819050949350505050565b600061510d82614943565b9150615119828a61413d565b91506151248261498f565b915061512f82614943565b915061513b828961413d565b9150615146826149db565b915061515182614943565b915061515d828861413d565b915061516882614a27565b915061517382614943565b915061517f828761413d565b915061518a82614ccf565b915061519582614943565b91506151a1828661413d565b91506151ac82614a73565b91506151b782614943565b91506151c3828561413d565b91506151ce82614abf565b91506151d982614943565b91506151e5828461413d565b91506151f082614b0b565b915081905098975050505050505050565b600061520c82614943565b9150615218828961413d565b91506152238261498f565b915061522e82614943565b915061523a828861413d565b9150615245826149db565b915061525082614943565b915061525c828761413d565b915061526782614a27565b915061527282614943565b915061527e828661413d565b915061528982614ccf565b915061529482614943565b91506152a0828561413d565b91506152ab82614abf565b91506152b682614943565b91506152c2828461413d565b91506152cd82614b0b565b915081905097965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672076696577426f783d223020302033303020333030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c726563742069643d226267222077696474683d2233303022206865696768743d22333030222066696c6c3d2223304330433043222f3e3c706174682069643d227030312220643d224d313030203131394c313033203132324c313030203132354c3830203132354c3737203132324c3830203131394c313030203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030322220643d224d3733203132364c3736203132334c373920313236563134364c3736203134394c373320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030332220643d224d313031203132364c313034203132334c31303720313236563134364c313034203134394c31303120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030342220643d224d313030203134374c313033203135304c313030203135334c3830203135334c3737203135304c3830203134374c313030203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030352220643d224d3733203135344c3736203135314c373920313534563137344c3736203137374c373320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030362220643d224d313031203135344c313034203135314c31303720313534563137344c313034203137374c31303120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030372220643d224d313030203137354c313033203137384c313030203138314c3830203138314c3737203137384c3830203137354c313030203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031312220643d224d313430203131394c313433203132324c313430203132354c313230203132354c313137203132324c313230203131394c313430203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031322220643d224d313133203132364c313136203132334c31313920313236563134364c313136203134394c31313320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031332220643d224d313431203132364c313434203132334c31343720313236563134364c313434203134394c31343120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031342220643d224d313430203134374c313433203135304c313430203135334c313230203135334c313137203135304c313230203134374c313430203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031352220643d224d313133203135344c313136203135314c31313920313534563137344c313136203137374c31313320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031362220643d224d313431203135344c313434203135314c31343720313534563137344c313434203137374c31343120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031372220643d224d313430203137354c313433203137384c313430203138314c313230203138314c313137203137384c313230203137354c313430203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032312220643d224d313830203131394c313833203132324c313830203132354c313630203132354c313537203132324c313630203131394c313830203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032322220643d224d313533203132364c313536203132334c31353920313236563134364c313536203134394c31353320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032332220643d224d313831203132364c313834203132334c31383720313236563134364c313834203134394c31383120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032342220643d224d313830203134374c313833203135304c313830203135334c313630203135334c313537203135304c313630203134374c313830203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032352220643d224d313533203135344c313536203135314c31353920313534563137344c313536203137374c31353320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032362220643d224d313831203135344c313834203135314c31383720313534563137344c313834203137374c31383120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032372220643d224d313830203137354c313833203137384c313830203138314c313630203138314c313537203137384c313630203137354c313830203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033312220643d224d323230203131394c323233203132324c323230203132354c323030203132354c313937203132324c323030203131394c323230203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033322220643d224d313933203132364c313936203132334c31393920313236563134364c313936203134394c31393320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033332220643d224d323231203132364c323234203132334c32323720313236563134364c323234203134394c32323120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033342220643d224d323230203134374c323233203135304c323230203135334c323030203135334c313937203135304c323030203134374c323230203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033352220643d224d313933203135344c313936203135314c31393920313534563137344c313936203137374c31393320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033362220643d224d323231203135344c323234203135314c32323720313534563137344c323234203137374c32323120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033372220643d224d323230203137354c323233203137384c323230203138314c323030203138314c313937203137384c323030203137354c323230203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c7374796c653ea2646970667358221220101415cfc649c9a7e5c7d276c1c3cf47d8f1cc493d5b0f83efe02f0e091caf1e64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637c928fe9116100f7578063a6c56c7911610095578063d1d18f5011610064578063d1d18f501461060f578063d8c718a81461064c578063e985e9c514610675578063f2fde38b146106b2576101cd565b8063a6c56c7914610574578063b88d4fde1461059f578063b8be6e98146105bb578063c87b56dd146105d2576101cd565b80639659867e116100d15780639659867e146104d9578063a035b1fe14610504578063a0712d681461052f578063a22cb4651461054b576101cd565b80637c928fe91461045a5780638da5cb5b1461048357806395d89b41146104ae576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103ad5780636352211e146103c957806370a0823114610406578063715018a614610443576101cd565b806323b872dd1461032657806325e514c61461034257806337c5fa0d1461036b5780633ccfd60b14610396576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630ff4c9161461029357806318160ddd146102d057806321cf7ecf146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906132e6565b6106db565b604051610206919061332e565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b60405161023191906133d9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613431565b6107ff565b60405161026e919061349f565b60405180910390f35b610291600480360381019061028c91906134e6565b61087e565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190613431565b6109c2565b6040516102c79190613535565b60405180910390f35b3480156102dc57600080fd5b506102e5610a22565b6040516102f29190613535565b60405180910390f35b34801561030757600080fd5b50610310610a39565b60405161031d9190613535565b60405180910390f35b610340600480360381019061033b9190613550565b610a3f565b005b34801561034e57600080fd5b50610369600480360381019061036491906136eb565b610d61565b005b34801561037757600080fd5b506103806110bb565b60405161038d919061332e565b60405180910390f35b3480156103a257600080fd5b506103ab6110ce565b005b6103c760048036038101906103c29190613550565b611116565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613431565b611136565b6040516103fd919061349f565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613734565b611148565b60405161043a9190613535565b60405180910390f35b34801561044f57600080fd5b50610458611200565b005b34801561046657600080fd5b50610481600480360381019061047c9190613431565b611214565b005b34801561048f57600080fd5b506104986112f9565b6040516104a5919061349f565b60405180910390f35b3480156104ba57600080fd5b506104c3611323565b6040516104d091906133d9565b60405180910390f35b3480156104e557600080fd5b506104ee6113b5565b6040516104fb9190613535565b60405180910390f35b34801561051057600080fd5b506105196113c4565b6040516105269190613535565b60405180910390f35b61054960048036038101906105449190613431565b6113ca565b005b34801561055757600080fd5b50610572600480360381019061056d919061378d565b611427565b005b34801561058057600080fd5b50610589611532565b6040516105969190613535565b60405180910390f35b6105b960048036038101906105b49190613882565b611544565b005b3480156105c757600080fd5b506105d06115b7565b005b3480156105de57600080fd5b506105f960048036038101906105f49190613431565b6115eb565b60405161060691906133d9565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190613734565b61169f565b6040516106439190613535565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190613960565b6116e8565b005b34801561068157600080fd5b5061069c600480360381019061069791906139c0565b611782565b6040516106a9919061332e565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613734565b611816565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077c90613a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890613a2f565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a82611899565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088982611136565b90508073ffffffffffffffffffffffffffffffffffffffff166108aa6118f8565b73ffffffffffffffffffffffffffffffffffffffff161461090d576108d6816108d16118f8565b611782565b61090c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cd82611899565b6109da5760009050610a1d565b6000600c6000848152602001908152602001600020541115610a1157600c6000838152602001908152602001600020549050610a1d565b610a1a82611900565b90505b919050565b6000610a2c611a41565b6001546000540303905090565b600b5481565b6000610a4a82611a4a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610abd84611b16565b91509150610ad38187610ace6118f8565b611b3d565b610b1f57610ae886610ae36118f8565b611782565b610b1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b928686866001611b81565b8015610b9d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c6b85610c47888887611b87565b7c020000000000000000000000000000000000000000000000000000000017611baf565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610cf15760006001850190506000600460008381526020019081526020016000205403610cef576000548114610cee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d598686866001611bda565b505050505050565b600a60009054906101000a900460ff16610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613aac565b60405180910390fd5b600080600090505b8251811015610e94573373ffffffffffffffffffffffffffffffffffffffff16610dfb848381518110610dee57610ded613acc565b5b6020026020010151611136565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890613b47565b60405180910390fd5b610e74838281518110610e6757610e66613acc565b5b60200260200101516109c2565b82610e7f9190613b96565b91508080610e8c90613bca565b915050610db8565b5061270f811115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613c5e565b60405180910390fd5b6000600190505b8251811015610fd757610f0d838281518110610f0057610eff613acc565b5b6020026020010151611be0565b6000600c6000858481518110610f2657610f25613acc565b5b60200260200101518152602001908152602001600020819055506000600d6000858481518110610f5957610f58613acc565b5b60200260200101518152602001908152602001600020819055507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7838281518110610fa757610fa6613acc565b5b6020026020010151604051610fbc9190613535565b60405180910390a18080610fcf90613bca565b915050610ee1565b5080600c600084600081518110610ff157610ff0613acc565b5b60200260200101518152602001908152602001600020819055506110338260008151811061102257611021613acc565b5b602002602001015160016004611bee565b600d60008460008151811061104b5761104a613acc565b5b60200260200101518152602001908152602001600020819055507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce78260008151811061109a57611099613acc565b5b60200260200101516040516110af9190613535565b60405180910390a15050565b600a60009054906101000a900460ff1681565b6110d6611c62565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061111457600080fd5b565b61113183838360405180602001604052806000815250611544565b505050565b600061114182611a4a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111af576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611208611c62565b6112126000611ce0565b565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613cca565b60405180910390fd5b6112a03382611da6565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ef9190613cea565b9250508190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133290613a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461135e90613a2f565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b60006113bf611ef2565b905090565b60095481565b600954816113d89190613d1e565b34101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613dac565b60405180910390fd5b6114243382611da6565b50565b80600760006114346118f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e16118f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611526919061332e565b60405180910390a35050565b600061153f600b54611f05565b905090565b61154f848484610a3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115b15761157a84848484611f40565b6115b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115bf611c62565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60606000806000600c600086815260200190815260200160002054111561162b57600c600085815260200190815260200160002054905060009150611677565b6000600c600086815260200190815260200160002054148015611654575061165284611899565b155b15611666576000905060019150611676565b61166f84611900565b9050600091505b5b6116968482600d60008881526020019081526020016000205485612090565b92505050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116f0611c62565b60005b8383905081101561177c5781600e600086868581811061171657611715613acc565b5b905060200201602081019061172b9190613734565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061177490613bca565b9150506116f3565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181e611c62565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490613e3e565b60405180910390fd5b61189681611ce0565b50565b6000816118a4611a41565b111580156118b3575060005482105b80156118f1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006103e8821015611920576119198260016033611bee565b9050611a3c565b6107d082101561193e57611937826001602e611bee565b9050611a3b565b610bb882101561195c576119558260016029611bee565b9050611a3a565b610fa082101561197a576119738260016024611bee565b9050611a39565b61138882101561199857611991826001601f611bee565b9050611a38565b6117708210156119b6576119af826001601a611bee565b9050611a37565b611b588210156119d4576119cd8260016015611bee565b9050611a36565b611f408210156119f2576119eb8260016010611bee565b9050611a35565b612328821015611a1057611a09826001600b611bee565b9050611a34565b612710821015611a2e57611a278260016006611bee565b9050611a33565b600190505b5b5b5b5b5b5b5b5b5b919050565b60006001905090565b60008082905080611a59611a41565b11611adf57600054811015611ade5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611adc575b60008103611ad2576004600083600190039350838152602001908152602001600020549050611aa8565b8092505050611b11565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b9e8686846121e8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611beb8160006121f1565b50565b6000808383611bfd9190613cea565b90506001816107e787611c109190613b96565b604051602001611c209190613e7f565b6040516020818303038152906040528051906020012060001c611c439190613ec9565b84611c4e9190613cea565b611c589190613cea565b9150509392505050565b611c6a612443565b73ffffffffffffffffffffffffffffffffffffffff16611c886112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590613f46565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611db0611ef2565b90506103e88110611e7f576000611dc8600b5461244b565b11611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613fb2565b60405180910390fd5b61138881108015611e2657506113888282611e239190613b96565b10155b15611e7a576201518042611e3a9190613b96565b600b819055507ff5b316bf09d21e0058eb23be118a6b81bd52674b4cb843e0f446b986ce22433e600b54604051611e719190613535565b60405180910390a15b611ee3565b6103e88282611e8e9190613b96565b10611ee2576201518042611ea29190613b96565b600b819055507ff5b316bf09d21e0058eb23be118a6b81bd52674b4cb843e0f446b986ce22433e600b54604051611ed99190613535565b60405180910390a15b5b611eed8383612471565b505050565b6000611efc611a41565b60005403905090565b6000603c611f128361244b565b10611f3657603c4283611f259190613cea565b611f2f9190613fd2565b9050611f3b565b600090505b919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f666118f8565b8786866040518563ffffffff1660e01b8152600401611f889493929190614058565b6020604051808303816000875af1925050508015611fc457506040513d601f19601f82011682018060405250810190611fc191906140b9565b60015b61203d573d8060008114611ff4576040519150601f19603f3d011682016040523d82523d6000602084013e611ff9565b606091505b506000815103612035576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600061209e868561262c565b9050606083156120ea576120b187612713565b6120c36120be888561289b565b612bbd565b6040516020016120d492919061429e565b60405160208183030381529060405290506121b4565b6120f387612713565b6120fc87612713565b61210d6121088a612d20565b612713565b61211688612d51565b6121378660006003811061212d5761212c613acc565b5b6020020151612713565b6121588760016003811061214e5761214d613acc565b5b6020020151612713565b6121798860026003811061216f5761216e613acc565b5b6020020151612713565b61218b6121868e8b61289b565b612bbd565b6040516020016121a2989796959493929190614601565b60405160208183030381529060405290505b6121bd81612bbd565b6040516020016121cd9190614722565b60405160208183030381529060405292505050949350505050565b60009392505050565b60006121fc83611a4a565b9050600081905060008061220f86611b16565b9150915084156122785761222b81846122266118f8565b611b3d565b612277576122408361223b6118f8565b611782565b612276576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612286836000886001611b81565b801561229157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612339836122f685600088611b87565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611baf565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036123bf57600060018701905060006004600083815260200190815260200160002054036123bd5760005481146123bc578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612429836000886001611bda565b600160008154809291906001019190505550505050505050565b600033905090565b60008142116124675742826124609190613cea565b905061246c565b600090505b919050565b600080549050600082036124b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124be6000848385611b81565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612535836125266000866000611b87565b61252f85612e6c565b17611baf565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061259b565b5060008203612611576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126276000848385611bda565b505050565b612634613230565b60008211156126ce5760005b60038110156126c8576001816126569190613b96565b830361267f5760ff82826003811061267157612670613acc565b5b6020020181815250506126b5565b612698818561268e9190613b96565b6000610100611bee565b8282600381106126ab576126aa613acc565b5b6020020181815250505b80806126c090613bca565b915050612640565b5061270d565b60005b600381101561270b5760ff8282600381106126ef576126ee613acc565b5b602002018181525050808061270390613bca565b9150506126d1565b505b92915050565b60606000820361275a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612896565b600082905060005b6000821461278c57808061277590613bca565b915050600a826127859190613fd2565b9150612762565b60008167ffffffffffffffff8111156127a8576127a76135a8565b5b6040519080825280601f01601f1916602001820160405280156127da5781602001600182028036833780820191505090505b50905060008290505b6000861461288e576001816127f89190613cea565b90506000600a808861280a9190613fd2565b6128149190613d1e565b8761281f9190613cea565b603061282b9190614751565b905060008160f81b90508084848151811061284957612848613acc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886128859190613fd2565b975050506127e3565b819450505050505b919050565b606060405180610c400160405280610c19815260200161531e610c199139905060006128de836000600381106128d4576128d3613acc565b5b6020020151612713565b6128ff846001600381106128f5576128f4613acc565b5b6020020151612713565b6129208560026003811061291657612915613acc565b5b6020020151612713565b6040516020016129329392919061481e565b60405160208183030381529060405290506000840315612b9257600061295785612713565b51905060006129668683612e7c565b9050600182036129a7578261298060038360600151612fb3565b60405160200161299192919061487b565b6040516020818303038152906040529250612b8f565b60028203612a1857826129bf60028360400151612fb3565b6040516020016129d092919061487b565b6040516020818303038152906040529250826129f160038360600151612fb3565b604051602001612a0292919061487b565b6040516020818303038152906040529250612b8e565b60038203612abb5782612a3060018360200151612fb3565b604051602001612a4192919061487b565b604051602081830303815290604052925082612a6260028360400151612fb3565b604051602001612a7392919061487b565b604051602081830303815290604052925082612a9460038360600151612fb3565b604051602001612aa592919061487b565b6040516020818303038152906040529250612b8d565b60048203612b8c5782612ad360008360000151612fb3565b604051602001612ae492919061487b565b604051602081830303815290604052925082612b0560018360200151612fb3565b604051602001612b1692919061487b565b604051602081830303815290604052925082612b3760028360400151612fb3565b604051602001612b4892919061487b565b604051602081830303815290604052925082612b6960038360600151612fb3565b604051602001612b7a92919061487b565b60405160208183030381529060405292505b5b5b5b50505b8181604051602001612ba59291906148eb565b60405160208183030381529060405291505092915050565b60606000825103612bdf57604051806020016040528060008152509050612d1b565b60006040518060600160405280604081526020016152de6040913990506000600360028551612c0e9190613b96565b612c189190613fd2565b6004612c249190613d1e565b67ffffffffffffffff811115612c3d57612c3c6135a8565b5b6040519080825280601f01601f191660200182016040528015612c6f5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612cdb576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612c80565b5050600386510660018114612cf75760028114612d0a57612d12565b603d6001830353603d6002830353612d12565b603d60018303535b50505080925050505b919050565b60006103e88211612d345760019050612d4c565b6113888211612d465760029050612d4b565b600390505b5b919050565b6060600060405180608001604052806040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477265656e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152508152509050808360048110612e5f57612e5e613acc565b5b6020020151915050919050565b60006001821460e11b9050919050565b612e84613252565b60018203612e9b5782816060018181525050612fad565b60028203612ed457600a83612eb09190613fd2565b816040018181525050600a83612ec69190613ec9565b816060018181525050612fac565b60038203612f2f57606483612ee99190613fd2565b816020018181525050600a606484612f019190613ec9565b612f0b9190613fd2565b816040018181525050600a83612f219190613ec9565b816060018181525050612fab565b60048203612faa576103e883612f459190613fd2565b81600001818152505060646103e884612f5e9190613ec9565b612f689190613fd2565b816020018181525050600a606484612f809190613ec9565b612f8a9190613fd2565b816040018181525050600a83612fa09190613ec9565b8160600181815250505b5b5b5b92915050565b60606000612fc084612713565b905060008303612ffc57808182838485604051602001612fe596959493929190614b2e565b60405160208183030381529060405291505061322a565b6001830361302e578081604051602001613017929190614c56565b60405160208183030381529060405291505061322a565b6002830361306657808182838460405160200161304f959493929190614cf2565b60405160208183030381529060405291505061322a565b6003830361309e578081828384604051602001613087959493929190614dab565b60405160208183030381529060405291505061322a565b600483036130d457808182836040516020016130bd9493929190614e64565b60405160208183030381529060405291505061322a565b6005830361310c5780818283846040516020016130f5959493929190614efa565b60405160208183030381529060405291505061322a565b600683036131465780818283848560405160200161312f96959493929190614fb3565b60405160208183030381529060405291505061322a565b6007830361317a578081826040516020016131639392919061508f565b60405160208183030381529060405291505061322a565b600883036131b6578081828384858660405160200161319f9796959493929190615102565b60405160208183030381529060405291505061322a565b600983036131f0578081828384856040516020016131d996959493929190615201565b60405160208183030381529060405291505061322a565b6040518060400160405280600581526020017f6572726f720000000000000000000000000000000000000000000000000000008152509150505b92915050565b6040518060600160405280600390602082028036833780820191505090505090565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132c38161328e565b81146132ce57600080fd5b50565b6000813590506132e0816132ba565b92915050565b6000602082840312156132fc576132fb613284565b5b600061330a848285016132d1565b91505092915050565b60008115159050919050565b61332881613313565b82525050565b6000602082019050613343600083018461331f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613383578082015181840152602081019050613368565b60008484015250505050565b6000601f19601f8301169050919050565b60006133ab82613349565b6133b58185613354565b93506133c5818560208601613365565b6133ce8161338f565b840191505092915050565b600060208201905081810360008301526133f381846133a0565b905092915050565b6000819050919050565b61340e816133fb565b811461341957600080fd5b50565b60008135905061342b81613405565b92915050565b60006020828403121561344757613446613284565b5b60006134558482850161341c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134898261345e565b9050919050565b6134998161347e565b82525050565b60006020820190506134b46000830184613490565b92915050565b6134c38161347e565b81146134ce57600080fd5b50565b6000813590506134e0816134ba565b92915050565b600080604083850312156134fd576134fc613284565b5b600061350b858286016134d1565b925050602061351c8582860161341c565b9150509250929050565b61352f816133fb565b82525050565b600060208201905061354a6000830184613526565b92915050565b60008060006060848603121561356957613568613284565b5b6000613577868287016134d1565b9350506020613588868287016134d1565b92505060406135998682870161341c565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135e08261338f565b810181811067ffffffffffffffff821117156135ff576135fe6135a8565b5b80604052505050565b600061361261327a565b905061361e82826135d7565b919050565b600067ffffffffffffffff82111561363e5761363d6135a8565b5b602082029050602081019050919050565b600080fd5b600061366761366284613623565b613608565b9050808382526020820190506020840283018581111561368a5761368961364f565b5b835b818110156136b3578061369f888261341c565b84526020840193505060208101905061368c565b5050509392505050565b600082601f8301126136d2576136d16135a3565b5b81356136e2848260208601613654565b91505092915050565b60006020828403121561370157613700613284565b5b600082013567ffffffffffffffff81111561371f5761371e613289565b5b61372b848285016136bd565b91505092915050565b60006020828403121561374a57613749613284565b5b6000613758848285016134d1565b91505092915050565b61376a81613313565b811461377557600080fd5b50565b60008135905061378781613761565b92915050565b600080604083850312156137a4576137a3613284565b5b60006137b2858286016134d1565b92505060206137c385828601613778565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156137ed576137ec6135a8565b5b6137f68261338f565b9050602081019050919050565b82818337600083830152505050565b6000613825613820846137d2565b613608565b905082815260208101848484011115613841576138406137cd565b5b61384c848285613803565b509392505050565b600082601f830112613869576138686135a3565b5b8135613879848260208601613812565b91505092915050565b6000806000806080858703121561389c5761389b613284565b5b60006138aa878288016134d1565b94505060206138bb878288016134d1565b93505060406138cc8782880161341c565b925050606085013567ffffffffffffffff8111156138ed576138ec613289565b5b6138f987828801613854565b91505092959194509250565b600080fd5b60008083601f8401126139205761391f6135a3565b5b8235905067ffffffffffffffff81111561393d5761393c613905565b5b6020830191508360208202830111156139595761395861364f565b5b9250929050565b60008060006040848603121561397957613978613284565b5b600084013567ffffffffffffffff81111561399757613996613289565b5b6139a38682870161390a565b935093505060206139b68682870161341c565b9150509250925092565b600080604083850312156139d7576139d6613284565b5b60006139e5858286016134d1565b92505060206139f6858286016134d1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a4757607f821691505b602082108103613a5a57613a59613a00565b5b50919050565b7f636f6d62696e696e67206e6f7420616374697665000000000000000000000000600082015250565b6000613a96601483613354565b9150613aa182613a60565b602082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d757374206f776e20616c6c20746f6b656e7300000000000000000000000000600082015250565b6000613b31601383613354565b9150613b3c82613afb565b602082019050919050565b60006020820190508181036000830152613b6081613b24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ba1826133fb565b9150613bac836133fb565b9250828201905080821115613bc457613bc3613b67565b5b92915050565b6000613bd5826133fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c0757613c06613b67565b5b600182019050919050565b7f73756d206d7573742062652039393939206f72206c6573730000000000000000600082015250565b6000613c48601883613354565b9150613c5382613c12565b602082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f6e6f7420656e6f7567682066726565206d696e74730000000000000000000000600082015250565b6000613cb4601583613354565b9150613cbf82613c7e565b602082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b6000613cf5826133fb565b9150613d00836133fb565b9250828203905081811115613d1857613d17613b67565b5b92915050565b6000613d29826133fb565b9150613d34836133fb565b9250828202613d42816133fb565b91508282048414831517613d5957613d58613b67565b5b5092915050565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b6000613d96600e83613354565b9150613da182613d60565b602082019050919050565b60006020820190508181036000830152613dc581613d89565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e28602683613354565b9150613e3382613dcc565b604082019050919050565b60006020820190508181036000830152613e5781613e1b565b9050919050565b6000819050919050565b613e79613e74826133fb565b613e5e565b82525050565b6000613e8b8284613e68565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ed4826133fb565b9150613edf836133fb565b925082613eef57613eee613e9a565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f30602083613354565b9150613f3b82613efa565b602082019050919050565b60006020820190508181036000830152613f5f81613f23565b9050919050565b7f6d696e7420697320636c6f736564000000000000000000000000000000000000600082015250565b6000613f9c600e83613354565b9150613fa782613f66565b602082019050919050565b60006020820190508181036000830152613fcb81613f8f565b9050919050565b6000613fdd826133fb565b9150613fe8836133fb565b925082613ff857613ff7613e9a565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b600061402a82614003565b614034818561400e565b9350614044818560208601613365565b61404d8161338f565b840191505092915050565b600060808201905061406d6000830187613490565b61407a6020830186613490565b6140876040830185613526565b8181036060830152614099818461401f565b905095945050505050565b6000815190506140b3816132ba565b92915050565b6000602082840312156140cf576140ce613284565b5b60006140dd848285016140a4565b91505092915050565b600081905092915050565b7f7b226e616d65223a202255494e54532000000000000000000000000000000000600082015250565b60006141276010836140e6565b9150614132826140f1565b601082019050919050565b600061414882613349565b61415281856140e6565b9350614162818560208601613365565b80840191505092915050565b7f205b4255524e45445d222c20226465736372697074696f6e223a20224e756d6260008201527f65727320617265206172742c20616e642077652061726520617274697374732e60208201527f222c202261747472696275746573223a5b7b2274726169745f74797065223a2060408201527f224275726e6564222c202276616c7565223a2022596573227d5d2c2022696d6160608201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c608082015250565b600061423c60a0836140e6565b91506142478261416e565b60a082019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006142886002836140e6565b915061429382614252565b600282019050919050565b60006142a98261411a565b91506142b5828561413d565b91506142c08261422f565b91506142cc828461413d565b91506142d78261427b565b91508190509392505050565b7f222c20226465736372697074696f6e223a20224e756d6265727320617265206160008201527f72742c20616e642077652061726520617274697374732e222c2022617474726960208201527f6275746573223a5b7b2274726169745f74797065223a20224e756d626572222c60408201527f20226d61785f76616c7565223a20393939392c202276616c7565223a20000000606082015250565b600061438b607d836140e6565b9150614396826142e3565b607d82019050919050565b7f7d2c7b22646973706c61795f74797065223a20226e756d626572222c2022747260008201527f6169745f74797065223a20224d696e74205068617365222c202276616c75652260208201527f3a20000000000000000000000000000000000000000000000000000000000000604082015250565b60006144236042836140e6565b915061442e826143a1565b604282019050919050565b7f7d2c7b2274726169745f74797065223a20224275726e6564222c202276616c7560008201527f65223a20224e6f227d2c7b2274726169745f74797065223a202242617365204360208201527f6f6c6f72222c202276616c7565223a2022000000000000000000000000000000604082015250565b60006144bb6051836140e6565b91506144c682614439565b605182019050919050565b7f227d2c7b2274726169745f74797065223a2022436f6c6f72222c202276616c7560008201527f65223a2022524742280000000000000000000000000000000000000000000000602082015250565b600061452d6029836140e6565b9150614538826144d1565b602982019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b60006145796001836140e6565b915061458482614543565b600182019050919050565b7f29227d5d2c2022696d616765223a2022646174613a696d6167652f7376672b7860008201527f6d6c3b6261736536342c00000000000000000000000000000000000000000000602082015250565b60006145eb602a836140e6565b91506145f68261458f565b602a82019050919050565b600061460c8261411a565b9150614618828b61413d565b91506146238261437e565b915061462f828a61413d565b915061463a82614416565b9150614646828961413d565b9150614651826144ae565b915061465d828861413d565b915061466882614520565b9150614674828761413d565b915061467f8261456c565b915061468b828661413d565b91506146968261456c565b91506146a2828561413d565b91506146ad826145de565b91506146b9828461413d565b91506146c48261427b565b91508190509998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061470c601d836140e6565b9150614717826146d6565b601d82019050919050565b600061472d826146ff565b9150614739828461413d565b915081905092915050565b600060ff82169050919050565b600061475c82614744565b915061476783614744565b9250828201905060ff8111156147805761477f613b67565b5b92915050565b7f2a7b66696c6c3a72676228000000000000000000000000000000000000000000600082015250565b60006147bc600b836140e6565b91506147c782614786565b600b82019050919050565b7f297d2362677b66696c6c3a233043304330437d00000000000000000000000000600082015250565b60006148086013836140e6565b9150614813826147d2565b601382019050919050565b6000614829826147af565b9150614835828661413d565b91506148408261456c565b915061484c828561413d565b91506148578261456c565b9150614863828461413d565b915061486e826147fb565b9150819050949350505050565b6000614887828561413d565b9150614893828461413d565b91508190509392505050565b7f3c2f7374796c653e3c2f7376673e000000000000000000000000000000000000600082015250565b60006148d5600e836140e6565b91506148e08261489f565b600e82019050919050565b60006148f7828561413d565b9150614903828461413d565b915061490e826148c8565b91508190509392505050565b7f2370000000000000000000000000000000000000000000000000000000000000600082015250565b60006149506002836140e6565b915061495b8261491a565b600282019050919050565b7f312c000000000000000000000000000000000000000000000000000000000000600082015250565b600061499c6002836140e6565b91506149a782614966565b600282019050919050565b7f322c000000000000000000000000000000000000000000000000000000000000600082015250565b60006149e86002836140e6565b91506149f3826149b2565b600282019050919050565b7f332c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a346002836140e6565b9150614a3f826149fe565b600282019050919050565b7f352c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a806002836140e6565b9150614a8b82614a4a565b600282019050919050565b7f362c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614acc6002836140e6565b9150614ad782614a96565b600282019050919050565b7f37207b66696c6c2d6f7061636974793a317d0000000000000000000000000000600082015250565b6000614b186012836140e6565b9150614b2382614ae2565b601282019050919050565b6000614b3982614943565b9150614b45828961413d565b9150614b508261498f565b9150614b5b82614943565b9150614b67828861413d565b9150614b72826149db565b9150614b7d82614943565b9150614b89828761413d565b9150614b9482614a27565b9150614b9f82614943565b9150614bab828661413d565b9150614bb682614a73565b9150614bc182614943565b9150614bcd828561413d565b9150614bd882614abf565b9150614be382614943565b9150614bef828461413d565b9150614bfa82614b0b565b9150819050979650505050505050565b7f36207b66696c6c2d6f7061636974793a317d0000000000000000000000000000600082015250565b6000614c406012836140e6565b9150614c4b82614c0a565b601282019050919050565b6000614c6182614943565b9150614c6d828561413d565b9150614c7882614a27565b9150614c8382614943565b9150614c8f828461413d565b9150614c9a82614c33565b91508190509392505050565b7f342c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614cdc6002836140e6565b9150614ce782614ca6565b600282019050919050565b6000614cfd82614943565b9150614d09828861413d565b9150614d148261498f565b9150614d1f82614943565b9150614d2b828761413d565b9150614d3682614a27565b9150614d4182614943565b9150614d4d828661413d565b9150614d5882614ccf565b9150614d6382614943565b9150614d6f828561413d565b9150614d7a82614a73565b9150614d8582614943565b9150614d91828461413d565b9150614d9c82614b0b565b91508190509695505050505050565b6000614db682614943565b9150614dc2828861413d565b9150614dcd8261498f565b9150614dd882614943565b9150614de4828761413d565b9150614def82614a27565b9150614dfa82614943565b9150614e06828661413d565b9150614e1182614ccf565b9150614e1c82614943565b9150614e28828561413d565b9150614e3382614abf565b9150614e3e82614943565b9150614e4a828461413d565b9150614e5582614b0b565b91508190509695505050505050565b6000614e6f82614943565b9150614e7b828761413d565b9150614e86826149db565b9150614e9182614943565b9150614e9d828661413d565b9150614ea882614a27565b9150614eb382614943565b9150614ebf828561413d565b9150614eca82614ccf565b9150614ed582614943565b9150614ee1828461413d565b9150614eec82614c33565b915081905095945050505050565b6000614f0582614943565b9150614f11828861413d565b9150614f1c8261498f565b9150614f2782614943565b9150614f33828761413d565b9150614f3e826149db565b9150614f4982614943565b9150614f55828661413d565b9150614f6082614ccf565b9150614f6b82614943565b9150614f77828561413d565b9150614f8282614abf565b9150614f8d82614943565b9150614f99828461413d565b9150614fa482614b0b565b91508190509695505050505050565b6000614fbe82614943565b9150614fca828961413d565b9150614fd58261498f565b9150614fe082614943565b9150614fec828861413d565b9150614ff7826149db565b915061500282614943565b915061500e828761413d565b915061501982614ccf565b915061502482614943565b9150615030828661413d565b915061503b82614a73565b915061504682614943565b9150615052828561413d565b915061505d82614abf565b915061506882614943565b9150615074828461413d565b915061507f82614b0b565b9150819050979650505050505050565b600061509a82614943565b91506150a6828661413d565b91506150b18261498f565b91506150bc82614943565b91506150c8828561413d565b91506150d382614a27565b91506150de82614943565b91506150ea828461413d565b91506150f582614c33565b9150819050949350505050565b600061510d82614943565b9150615119828a61413d565b91506151248261498f565b915061512f82614943565b915061513b828961413d565b9150615146826149db565b915061515182614943565b915061515d828861413d565b915061516882614a27565b915061517382614943565b915061517f828761413d565b915061518a82614ccf565b915061519582614943565b91506151a1828661413d565b91506151ac82614a73565b91506151b782614943565b91506151c3828561413d565b91506151ce82614abf565b91506151d982614943565b91506151e5828461413d565b91506151f082614b0b565b915081905098975050505050505050565b600061520c82614943565b9150615218828961413d565b91506152238261498f565b915061522e82614943565b915061523a828861413d565b9150615245826149db565b915061525082614943565b915061525c828761413d565b915061526782614a27565b915061527282614943565b915061527e828661413d565b915061528982614ccf565b915061529482614943565b91506152a0828561413d565b91506152ab82614abf565b91506152b682614943565b91506152c2828461413d565b91506152cd82614b0b565b915081905097965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672076696577426f783d223020302033303020333030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c726563742069643d226267222077696474683d2233303022206865696768743d22333030222066696c6c3d2223304330433043222f3e3c706174682069643d227030312220643d224d313030203131394c313033203132324c313030203132354c3830203132354c3737203132324c3830203131394c313030203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030322220643d224d3733203132364c3736203132334c373920313236563134364c3736203134394c373320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030332220643d224d313031203132364c313034203132334c31303720313236563134364c313034203134394c31303120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030342220643d224d313030203134374c313033203135304c313030203135334c3830203135334c3737203135304c3830203134374c313030203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030352220643d224d3733203135344c3736203135314c373920313534563137344c3736203137374c373320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030362220643d224d313031203135344c313034203135314c31303720313534563137344c313034203137374c31303120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227030372220643d224d313030203137354c313033203137384c313030203138314c3830203138314c3737203137384c3830203137354c313030203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031312220643d224d313430203131394c313433203132324c313430203132354c313230203132354c313137203132324c313230203131394c313430203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031322220643d224d313133203132364c313136203132334c31313920313236563134364c313136203134394c31313320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031332220643d224d313431203132364c313434203132334c31343720313236563134364c313434203134394c31343120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031342220643d224d313430203134374c313433203135304c313430203135334c313230203135334c313137203135304c313230203134374c313430203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031352220643d224d313133203135344c313136203135314c31313920313534563137344c313136203137374c31313320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031362220643d224d313431203135344c313434203135314c31343720313534563137344c313434203137374c31343120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227031372220643d224d313430203137354c313433203137384c313430203138314c313230203138314c313137203137384c313230203137354c313430203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032312220643d224d313830203131394c313833203132324c313830203132354c313630203132354c313537203132324c313630203131394c313830203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032322220643d224d313533203132364c313536203132334c31353920313236563134364c313536203134394c31353320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032332220643d224d313831203132364c313834203132334c31383720313236563134364c313834203134394c31383120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032342220643d224d313830203134374c313833203135304c313830203135334c313630203135334c313537203135304c313630203134374c313830203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032352220643d224d313533203135344c313536203135314c31353920313534563137344c313536203137374c31353320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032362220643d224d313831203135344c313834203135314c31383720313534563137344c313834203137374c31383120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227032372220643d224d313830203137354c313833203137384c313830203138314c313630203138314c313537203137384c313630203137354c313830203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033312220643d224d323230203131394c323233203132324c323230203132354c323030203132354c313937203132324c323030203131394c323230203131395a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033322220643d224d313933203132364c313936203132334c31393920313236563134364c313936203134394c31393320313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033332220643d224d323231203132364c323234203132334c32323720313236563134364c323234203134394c32323120313436563132365a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033342220643d224d323230203134374c323233203135304c323230203135334c323030203135334c313937203135304c323030203134374c323230203134375a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033352220643d224d313933203135344c313936203135314c31393920313534563137344c313936203137374c31393320313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033362220643d224d323231203135344c323234203135314c32323720313534563137344c323234203137374c32323120313734563135345a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c706174682069643d227033372220643d224d323230203137354c323233203137384c323230203138314c323030203138314c313937203137384c323030203137354c323230203137355a222066696c6c3d227768697465222066696c6c2d6f7061636974793d22302e3035222f3e3c7374796c653ea2646970667358221220101415cfc649c9a7e5c7d276c1c3cf47d8f1cc493d5b0f83efe02f0e091caf1e64736f6c63430008120033

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.