ETH Price: $2,518.48 (+2.79%)

Token

Skate or DAO (GNAR)
 

Overview

Max Total Supply

615 GNAR

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
chsh.eth
Balance
2 GNAR
0x5adf1c982bde935ce98a07e115ff8d09254ecb1b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Gnars are a new way to fund extreme athletes. They prefer a world where kids aren't sold energy drinks by their heroes. So as a community of action sports enthusiasts, They formed a DAO to rethink how extreme athletes get sponsored.

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
SkateContract

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : SkateContract.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import {IGnarSeeder} from "./GNARSeeder.sol";
import {IGnarDescriptor} from "./GNARDescriptor.sol";

/**
 * @title SkateContract
 */
contract SkateContract is
    ERC721Enumerable,
    Ownable,
    ReentrancyGuardUpgradeable
{
    using Strings for uint256;

    struct Auction {
        // ID for the gnar (ERC721 token ID)
        uint256 gnarId;
        // The current highest bid amount
        uint256 amount;
        // The block number that the auction started
        uint256 startBlock;
        // The time that the auction is scheduled to end
        uint256 endBlock;
        // The address of the current highest bid
        address payable bidder;
        // Skate percentage
        uint8 skatePercent;
        // Dao percentage
        uint8 daoPercent;
        // Whether or not the auction has been settled
        bool settled;
    }

    event AuctionCreated(uint256 indexed gnarId);
    event AuctionBid(
        uint256 indexed gnarId,
        address sender,
        uint256 value,
        uint256 timestamp
    );
    event AuctionSettled(
        uint256 indexed gnarId,
        address winner,
        uint256 amount,
        uint256 timestamp
    );
    event MinBidIncrementPercentageUpdated(uint8 percent);
    event ReservePriceUpdated(uint256 price);

    // The number of blocks an auction lasts
    uint16 public auctionPeriodBlocks = 666;
    // The Gnar token URI descriptor address
    IGnarDescriptor public descriptor;
    // The Gnar token seeder
    IGnarSeeder public seeder;
    // The internal Skate ID tracker
    uint256 public currentGnarId;
    // current Auction info like gnarId,
    Auction public auction;
    // The minimum price accepted in an auction
    uint256 public reservePrice;
    // The minimum percentage difference between the last bid amount and the current bid
    uint8 public minBidIncrementPercentage;
    // The seeds
    mapping(uint256 => IGnarSeeder.Seed) public seeds;
    // paused
    bool public paused = true;
    // skate address
    address public skate;
    // dao address
    address public dao;

    constructor(
        address _skate,
        address _dao,
        address _descriptor,
        address _seeder,
        uint256 _reservePrice,
        uint8 _minBidIncrementPercentage
    ) ERC721("Skate or DAO", "GNAR") {
        require(
            _skate != address(0) &&
                _dao != address(0) &&
                _descriptor != address(0) &&
                _seeder != address(0),
            "ZERO ADDRESS"
        );
        skate = _skate;
        dao = _dao;
        descriptor = IGnarDescriptor(_descriptor);
        seeder = IGnarSeeder(_seeder);
        reservePrice = _reservePrice;
        minBidIncrementPercentage = _minBidIncrementPercentage;
    }

    /**
     * set skate and dao address
     */
    function setSkateDaoAddresses(address _skate, address _dao)
        external
        onlyOwner
    {
        require(_skate != address(0) && _dao != address(0), "ZERO ADDRESS");
        skate = _skate;
        dao = _dao;
    }

    /**
     * Auction start by onwer
     */
    function auctionStart() external onlyOwner {
        require(paused, "Auction already started");
        paused = false;
        _createAuction();
    }

    /**
     * @notice Settle the current auction, mint a new Gnar, and put it up for auction.
     */
    function settleCurrentAndCreateNewAuction() external nonReentrant {
        require(!paused, "Auction is paused");
        _settleAuction();
        _createAuction();
    }

    /**
     * @notice Set the token URI descriptor.
     * @dev Only callable by the owner when not locked.
     */
    function setDescriptor(address _descriptor) external onlyOwner {
        require(_descriptor != address(0), "ZERO ADDRESS");
        descriptor = IGnarDescriptor(_descriptor);
    }

    /**
     * @notice Set the token seeder.
     * @dev Only callable by the owner when not locked.
     */
    function setSeeder(address _seeder) external onlyOwner {
        require(_seeder != address(0), "ZERO ADDRESS");
        seeder = IGnarSeeder(_seeder);
    }

    function mint() internal returns (uint256) {
        IGnarSeeder.Seed memory _seed = seeder.generateSeed(
            currentGnarId,
            descriptor
        );
        uint256 tokenId = currentGnarId;
        _safeMint(msg.sender, tokenId);
        currentGnarId++;
        seeds[tokenId] = _seed;
        return tokenId;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        return descriptor.tokenURI(tokenId, seeds[tokenId]);
    }

    /**
     * @notice Create a bid for a Gnar, with a given amount.
     * @dev This contract only accepts payment in ETH.
     */
    function createBid(
        uint256 gnarId,
        uint8 _skatePercent,
        uint8 _daoPercent
    ) external payable nonReentrant {
        Auction memory _auction = auction;

        require(_auction.gnarId == gnarId, "Gnar not up for auction");
        require(
            _skatePercent + _daoPercent == 100,
            "Sum of percents is not 100"
        );
        require(block.number < _auction.endBlock, "Auction expired");
        require(msg.value >= reservePrice, "Must send at least reservePrice");
        require(
            msg.value >=
                _auction.amount +
                    ((_auction.amount * minBidIncrementPercentage) / 100),
            "Must send more than last bid by minBidIncrementPercentage amount"
        );

        address payable lastBidder = _auction.bidder;

        // Refund the last bidder, if applicable
        if (lastBidder != address(0)) {
            require(
                _safeTransferETH(lastBidder, _auction.amount),
                "ETH transfer failed"
            );
        }

        auction.amount = msg.value;
        auction.bidder = payable(msg.sender);
        auction.skatePercent = _skatePercent;
        auction.daoPercent = _daoPercent;

        emit AuctionBid(
            _auction.gnarId,
            msg.sender,
            msg.value,
            block.timestamp
        );
    }

    /**
     * @notice Create an auction.
     * @dev Store the auction details in the `auction` state variable and emit an AuctionCreated event.
     * If the mint reverts, the minter was updated without pausing this contract first. To remedy this,
     * catch the revert and pause this contract.
     */
    function _createAuction() internal {
        uint256 gnarId = mint();
        uint256 startBlock = block.number;
        uint256 endBlock = startBlock + auctionPeriodBlocks;

        auction = Auction({
            gnarId: gnarId,
            amount: 0,
            startBlock: startBlock,
            endBlock: endBlock,
            bidder: payable(0),
            skatePercent: 50,
            daoPercent: 50,
            settled: false
        });

        emit AuctionCreated(gnarId);
    }

    /**
     * @notice Settle an auction, finalizing the bid and paying out to the owner.
     * @dev If there are no bids, the Gnar is burned.
     */
    function _settleAuction() internal {
        Auction memory _auction = auction;
        require(_auction.startBlock != 0, "Auction hasn't begun");
        require(!_auction.settled, "Auction has already been settled");
        require(block.number >= _auction.endBlock, "Auction hasn't completed");

        auction.settled = true;

        if (_auction.bidder == address(0)) {
            burn(_auction.gnarId);
        } else {
            transferFrom(owner(), _auction.bidder, _auction.gnarId);
        }

        if (_auction.amount > 0) {
            require(
                _safeTransferETH(
                    skate,
                    (_auction.amount * _auction.skatePercent) / 100
                ),
                "ETH transfer failed"
            );
            require(
                _safeTransferETH(
                    dao,
                    (_auction.amount * _auction.daoPercent) / 100
                ),
                "ETH transfer failed"
            );
        }

        emit AuctionSettled(
            _auction.gnarId,
            _auction.bidder,
            _auction.amount,
            block.timestamp
        );
    }

    /**
     * @notice Pause the gnar auction house.
     * @dev This function can only be called by the owner when the
     * contract is unpaused. While no new auctions can be started when paused,
     * anyone can settle an ongoing auction.
     */
    function pause() external onlyOwner {
        require(!paused, "Already Paused");
        paused = true;
    }

    /**
     * @notice Unpause the Gnars auction house.
     * @dev This function can only be called by the owner when the
     * contract is paused. If required, this function will start a new auction.
     */
    function unpause() external onlyOwner {
        require(paused, "Already Auction running");
        paused = false;
        if (auction.endBlock < block.number) {
            if (auction.settled) {
                _createAuction();
            } else {
                _settleAuction();
                _createAuction();
            }
        }
    }

    /**
     * @notice Set the auction reserve price.
     * @dev Only callable by the owner.
     */
    function setReservePrice(uint256 _reservePrice) external onlyOwner {
        reservePrice = _reservePrice;
        emit ReservePriceUpdated(_reservePrice);
    }

    /**
     * @notice Set the auction minimum bid increment percentage.
     * @dev Only callable by the owner.
     */
    function setMinBidIncrementPercentage(uint8 _minBidIncrementPercentage)
        external
        onlyOwner
    {
        minBidIncrementPercentage = _minBidIncrementPercentage;
        emit MinBidIncrementPercentageUpdated(_minBidIncrementPercentage);
    }

    /**
     * @notice Burn a gnar.
     */
    function burn(uint256 gnarId) public onlyOwner {
        _burn(gnarId);
    }

    /**
     * @notice Transfer ETH.
     */
    function _safeTransferETH(address to, uint256 amount)
        internal
        returns (bool)
    {
        (bool success, ) = to.call{value: amount, gas: 50_000}(new bytes(0));
        return success;
    }

    function remainBlocks() external view returns (uint256) {
        require(auction.endBlock >= block.number, "No remain blocks!");
        return auction.endBlock - block.number;
    }

    function setAuctionPeriodBlocks(uint16 _auctionPeriodBlocks)
        external
        onlyOwner
    {
        auctionPeriodBlocks = _auctionPeriodBlocks;
    }
}

File 2 of 22 : IGNARSeeder.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;

import {IGnarDescriptor} from "./IGNARDescriptor.sol";

interface IGnarSeeder {
    struct Seed {
        uint48 background;
        uint48 body;
        uint48 accessory;
        uint48 head;
        uint48 glasses;
    }

    function generateSeed(uint256 nounId, IGnarDescriptor descriptor)
        external
        view
        returns (Seed memory);
}

File 3 of 22 : IGNARDescriptor.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;

import {IGnarSeeder} from "./IGNARSeeder.sol";

interface IGnarDescriptor {
    event PartsLocked();

    event DataURIToggled(bool enabled);

    event BaseURIUpdated(string baseURI);

    function arePartsLocked() external returns (bool);

    function isDataURIEnabled() external returns (bool);

    function baseURI() external returns (string memory);

    function palettes(uint8 paletteIndex, uint256 colorIndex)
        external
        view
        returns (string memory);

    function backgrounds(uint256 index) external view returns (string memory);

    function bodies(uint256 index) external view returns (bytes memory);

    function accessories(uint256 index) external view returns (bytes memory);

    function heads(uint256 index) external view returns (bytes memory);

    function glasses(uint256 index) external view returns (bytes memory);

    function backgroundCount() external view returns (uint256);

    function bodyCount() external view returns (uint256);

    function accessoryCount() external view returns (uint256);

    function headCount() external view returns (uint256);

    function glassesCount() external view returns (uint256);

    function addManyColorsToPalette(
        uint8 paletteIndex,
        string[] calldata newColors
    ) external;

    function addManyBackgrounds(string[] calldata backgrounds) external;

    function addManyBodies(bytes[] calldata bodies) external;

    function addManyAccessories(bytes[] calldata accessories) external;

    function addManyHeads(bytes[] calldata heads) external;

    function addManyGlasses(bytes[] calldata glasses) external;

    function addColorToPalette(uint8 paletteIndex, string calldata color)
        external;

    function addBackground(string calldata background) external;

    function addBody(bytes calldata body) external;

    function addAccessory(bytes calldata accessory) external;

    function addHead(bytes calldata head) external;

    function addGlasses(bytes calldata glasses) external;

    function lockParts() external;

    function toggleDataURIEnabled() external;

    function setBaseURI(string calldata baseURI) external;

    function tokenURI(uint256 tokenId, IGnarSeeder.Seed memory seed)
        external
        view
        returns (string memory);

    function dataURI(uint256 tokenId, IGnarSeeder.Seed memory seed)
        external
        view
        returns (string memory);

    function genericDataURI(
        string calldata name,
        string calldata description,
        IGnarSeeder.Seed memory seed
    ) external view returns (string memory);

    function generateSVGImage(IGnarSeeder.Seed memory seed)
        external
        view
        returns (string memory);
}

File 4 of 22 : MultiPartRLEToSVG.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;

library MultiPartRLEToSVG {
    struct SVGParams {
        bytes[] parts;
        string background;
    }

    struct ContentBounds {
        uint8 top;
        uint8 right;
        uint8 bottom;
        uint8 left;
    }

    struct Rect {
        uint8 length;
        uint8 colorIndex;
    }

    struct DecodedImage {
        uint8 paletteIndex;
        ContentBounds bounds;
        Rect[] rects;
    }

    /**
     * @notice Given RLE image parts and color palettes, merge to generate a single SVG image.
     */
    function generateSVG(SVGParams memory params, mapping(uint8 => string[]) storage palettes)
        internal
        view
        returns (string memory svg)
    {
        // prettier-ignore
        return string(
            abi.encodePacked(
                '<svg width="320" height="320" viewBox="0 0 320 320" xmlns="http://www.w3.org/2000/svg" shape-rendering="crispEdges">',
                '<rect width="100%" height="100%" fill="#', params.background, '" />',
                _generateSVGRects(params, palettes),
                '</svg>'
            )
        );
    }

    /**
     * @notice Given RLE image parts and color palettes, generate SVG rects.
     */
    // prettier-ignore
    function _generateSVGRects(SVGParams memory params, mapping(uint8 => string[]) storage palettes)
        private
        view
        returns (string memory svg)
    {
        string[33] memory lookup = [
            '0', '10', '20', '30', '40', '50', '60', '70', 
            '80', '90', '100', '110', '120', '130', '140', '150', 
            '160', '170', '180', '190', '200', '210', '220', '230', 
            '240', '250', '260', '270', '280', '290', '300', '310',
            '320' 
        ];
        string memory rects;
        for (uint8 p = 0; p < params.parts.length; p++) {
            DecodedImage memory image = _decodeRLEImage(params.parts[p]);
            string[] storage palette = palettes[image.paletteIndex];
            uint256 currentX = image.bounds.left;
            uint256 currentY = image.bounds.top;
            uint256 cursor;
            string[16] memory buffer;

            string memory part;
            for (uint256 i = 0; i < image.rects.length; i++) {
                Rect memory rect = image.rects[i];
                if (rect.colorIndex != 0) {
                    buffer[cursor] = lookup[rect.length];          // width
                    buffer[cursor + 1] = lookup[currentX];         // x
                    buffer[cursor + 2] = lookup[currentY];         // y
                    buffer[cursor + 3] = palette[rect.colorIndex]; // color

                    cursor += 4;

                    if (cursor >= 16) {
                        part = string(abi.encodePacked(part, _getChunk(cursor, buffer)));
                        cursor = 0;
                    }
                }

                currentX += rect.length;
                if (currentX == image.bounds.right) {
                    currentX = image.bounds.left;
                    currentY++;
                }
            }

            if (cursor != 0) {
                part = string(abi.encodePacked(part, _getChunk(cursor, buffer)));
            }
            rects = string(abi.encodePacked(rects, part));
        }
        return rects;
    }

    /**
     * @notice Return a string that consists of all rects in the provided `buffer`.
     */
    // prettier-ignore
    function _getChunk(uint256 cursor, string[16] memory buffer) private pure returns (string memory) {
        string memory chunk;
        for (uint256 i = 0; i < cursor; i += 4) {
            chunk = string(
                abi.encodePacked(
                    chunk,
                    '<rect width="', buffer[i], '" height="10" x="', buffer[i + 1], '" y="', buffer[i + 2], '" fill="#', buffer[i + 3], '" />'
                )
            );
        }
        return chunk;
    }

    /**
     * @notice Decode a single RLE compressed image into a `DecodedImage`.
     */
    function _decodeRLEImage(bytes memory image) private pure returns (DecodedImage memory) {
        uint8 paletteIndex = uint8(image[0]);
        ContentBounds memory bounds = ContentBounds({
            top: uint8(image[1]),
            right: uint8(image[2]),
            bottom: uint8(image[3]),
            left: uint8(image[4])
        });

        uint256 cursor;
        Rect[] memory rects = new Rect[]((image.length - 5) / 2);
        for (uint256 i = 5; i < image.length; i += 2) {
            rects[cursor] = Rect({ length: uint8(image[i]), colorIndex: uint8(image[i + 1]) });
            cursor++;
        }
        return DecodedImage({ paletteIndex: paletteIndex, bounds: bounds, rects: rects });
    }
}

File 5 of 22 : GNARSeeder.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.6;

import {IGnarSeeder} from "../interfaces/IGNARSeeder.sol";
import {IGnarDescriptor} from "../interfaces/IGNARDescriptor.sol";

contract GNARSeeder is IGnarSeeder {
    function generateSeed(uint256 gnarId, IGnarDescriptor descriptor)
        external
        view
        override
        returns (Seed memory)
    {
        uint256 pseudorandomness = uint256(
            keccak256(abi.encodePacked(blockhash(block.number - 1), gnarId))
        );

        uint256 backgroundCount = descriptor.backgroundCount();
        uint256 bodyCount = descriptor.bodyCount();
        uint256 accessoryCount = descriptor.accessoryCount();
        uint256 headCount = descriptor.headCount();
        uint256 glassesCount = descriptor.glassesCount();
        require(backgroundCount > 0, "background is missing");
        require(bodyCount > 0, "body is missing");
        require(accessoryCount > 0, "accessories is missing");
        require(headCount > 0, "head is missing");
        require(glassesCount > 0, "glasses is missing");

        return
            Seed({
                background: uint48(uint48(pseudorandomness) % backgroundCount),
                body: uint48(uint48(pseudorandomness >> 48) % bodyCount),
                accessory: uint48(
                    uint48(pseudorandomness >> 96) % accessoryCount
                ),
                head: uint48(uint48(pseudorandomness >> 144) % headCount),
                glasses: uint48(uint48(pseudorandomness >> 192) % glassesCount)
            });
    }
}

File 6 of 22 : GNARDescriptor.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Base64} from "base64-sol/base64.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {IGnarDescriptor} from "../interfaces/IGNARDescriptor.sol";
import {IGnarSeeder} from "../interfaces/IGNARSeeder.sol";
import {MultiPartRLEToSVG} from "./libs/MultiPartRLEToSVG.sol";

contract GNARDescriptor is IGnarDescriptor, Ownable {
    using Strings for uint256;

    // Whether or not new Gnar parts can be added
    bool public override arePartsLocked;

    // Whether or not `tokenURI` should be returned as a data URI (Default: true)
    bool public override isDataURIEnabled = true;

    // Base URI
    string public override baseURI;

    // Gnar Color Palettes (Index => Hex Colors)
    mapping(uint8 => string[]) public override palettes;

    // Gnar Backgrounds (Hex Colors)
    string[] public override backgrounds;

    // Gnar Bodies (Custom RLE)
    bytes[] public override bodies;

    // Gnar Accessories (Custom RLE)
    bytes[] public override accessories;

    // Gnar Heads (Custom RLE)
    bytes[] public override heads;

    // Gnar Glasses (Custom RLE)
    bytes[] public override glasses;

    /**
     * @notice Require that the parts have not been locked.
     */
    modifier whenPartsNotLocked() {
        require(!arePartsLocked, "Parts are locked");
        _;
    }

    /**
     * @notice Get the number of available Gnar `backgrounds`.
     */
    function backgroundCount() external view override returns (uint256) {
        return backgrounds.length;
    }

    /**
     * @notice Get the number of available Gnar `bodies`.
     */
    function bodyCount() external view override returns (uint256) {
        return bodies.length;
    }

    /**
     * @notice Get the number of available Gnar `accessories`.
     */
    function accessoryCount() external view override returns (uint256) {
        return accessories.length;
    }

    /**
     * @notice Get the number of available Gnar `heads`.
     */
    function headCount() external view override returns (uint256) {
        return heads.length;
    }

    /**
     * @notice Get the number of available Gnar `glasses`.
     */
    function glassesCount() external view override returns (uint256) {
        return glasses.length;
    }

    /**
     * @notice Add colors to a color palette.
     * @dev This function can only be called by the owner.
     */
    function addManyColorsToPalette(
        uint8 paletteIndex,
        string[] calldata newColors
    ) external override onlyOwner {
        require(
            palettes[paletteIndex].length + newColors.length <= 256,
            "Palettes can only hold 256 colors"
        );
        for (uint256 i = 0; i < newColors.length; i++) {
            _addColorToPalette(paletteIndex, newColors[i]);
        }
    }

    /**
     * @notice Batch add Gnar backgrounds.
     * @dev This function can only be called by the owner when not locked.
     */
    function addManyBackgrounds(string[] calldata _backgrounds)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        for (uint256 i = 0; i < _backgrounds.length; i++) {
            _addBackground(_backgrounds[i]);
        }
    }

    /**
     * @notice Batch add Gnar bodies.
     * @dev This function can only be called by the owner when not locked.
     */
    function addManyBodies(bytes[] calldata _bodies)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        for (uint256 i = 0; i < _bodies.length; i++) {
            _addBody(_bodies[i]);
        }
    }

    /**
     * @notice Batch add Gnar accessories.
     * @dev This function can only be called by the owner when not locked.
     */
    function addManyAccessories(bytes[] calldata _accessories)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        for (uint256 i = 0; i < _accessories.length; i++) {
            _addAccessory(_accessories[i]);
        }
    }

    /**
     * @notice Batch add Gnar heads.
     * @dev This function can only be called by the owner when not locked.
     */
    function addManyHeads(bytes[] calldata _heads)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        for (uint256 i = 0; i < _heads.length; i++) {
            _addHead(_heads[i]);
        }
    }

    /**
     * @notice Batch add Gnar glasses.
     * @dev This function can only be called by the owner when not locked.
     */
    function addManyGlasses(bytes[] calldata _glasses)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        for (uint256 i = 0; i < _glasses.length; i++) {
            _addGlasses(_glasses[i]);
        }
    }

    /**
     * @notice Add a single color to a color palette.
     * @dev This function can only be called by the owner.
     */
    function addColorToPalette(uint8 _paletteIndex, string calldata _color)
        external
        override
        onlyOwner
    {
        require(
            palettes[_paletteIndex].length <= 255,
            "Palettes can only hold 256 colors"
        );
        _addColorToPalette(_paletteIndex, _color);
    }

    /**
     * @notice Add a Gnar background.
     * @dev This function can only be called by the owner when not locked.
     */
    function addBackground(string calldata _background)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        _addBackground(_background);
    }

    /**
     * @notice Add a Gnar body.
     * @dev This function can only be called by the owner when not locked.
     */
    function addBody(bytes calldata _body)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        _addBody(_body);
    }

    /**
     * @notice Add a Gnar accessory.
     * @dev This function can only be called by the owner when not locked.
     */
    function addAccessory(bytes calldata _accessory)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        _addAccessory(_accessory);
    }

    /**
     * @notice Add a Gnar head.
     * @dev This function can only be called by the owner when not locked.
     */
    function addHead(bytes calldata _head)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        _addHead(_head);
    }

    /**
     * @notice Add Gnar glasses.
     * @dev This function can only be called by the owner when not locked.
     */
    function addGlasses(bytes calldata _glasses)
        external
        override
        onlyOwner
        whenPartsNotLocked
    {
        _addGlasses(_glasses);
    }

    /**
     * @notice Lock all Gnar parts.
     * @dev This cannot be reversed and can only be called by the owner when not locked.
     */
    function lockParts() external override onlyOwner whenPartsNotLocked {
        arePartsLocked = true;

        emit PartsLocked();
    }

    /**
     * @notice Toggle a boolean value which determines if `tokenURI` returns a data URI
     * or an HTTP URL.
     * @dev This can only be called by the owner.
     */
    function toggleDataURIEnabled() external override onlyOwner {
        bool enabled = !isDataURIEnabled;

        isDataURIEnabled = enabled;
        emit DataURIToggled(enabled);
    }

    /**
     * @notice Set the base URI for all token IDs. It is automatically
     * added as a prefix to the value returned in {tokenURI}, or to the
     * token ID if {tokenURI} is empty.
     * @dev This can only be called by the owner.
     */
    function setBaseURI(string calldata _baseURI) external override onlyOwner {
        baseURI = _baseURI;

        emit BaseURIUpdated(_baseURI);
    }

    /**
     * @notice Given a token ID and seed, construct a token URI for an official Gnars DAO Gnar.
     * @dev The returned value may be a base64 encoded data URI or an API URL.
     */
    function tokenURI(uint256 tokenId, IGnarSeeder.Seed memory seed)
        external
        view
        override
        returns (string memory)
    {
        if (isDataURIEnabled) {
            return dataURI(tokenId, seed);
        }
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    /**
     * @notice Given a token ID and seed, construct a base64 encoded data URI for an official Gnars DAO Gnar.
     */
    function dataURI(uint256 tokenId, IGnarSeeder.Seed memory seed)
        public
        view
        override
        returns (string memory)
    {
        string memory gnarId = tokenId.toString();
        string memory name = string(abi.encodePacked("Gnar ", gnarId));
        string memory description = string(
            abi.encodePacked("Gnar ", gnarId, " both skater and terrain")
        );

        return genericDataURI(name, description, seed);
    }

    /**
     * @notice Given a name, description, and seed, construct a base64 encoded data URI.
     */
    function genericDataURI(
        string memory name,
        string memory description,
        IGnarSeeder.Seed memory seed
    ) public view override returns (string memory) {
        string memory image = _generateSVGImage(
            MultiPartRLEToSVG.SVGParams({
                parts: _getPartsForSeed(seed),
                background: backgrounds[seed.background]
            })
        );

        // prettier-ignore
        return string(
            abi.encodePacked(
                'data:application/json;base64,',
                Base64.encode(
                    bytes(
                        abi.encodePacked('{"name":"', name, '", "description":"', description, '", "image": "', 'data:image/svg+xml;base64,', image, '"}')
                    )
                )
            )
        );
    }

    /**
     * @notice Given a seed, construct a base64 encoded SVG image.
     */
    function generateSVGImage(IGnarSeeder.Seed memory seed)
        external
        view
        override
        returns (string memory)
    {
        MultiPartRLEToSVG.SVGParams memory params = MultiPartRLEToSVG
            .SVGParams({
                parts: _getPartsForSeed(seed),
                background: backgrounds[seed.background]
            });
        return _generateSVGImage(params);
    }

    /**
     * @notice Generate an SVG image for use in the ERC721 token URI.
     */
    function _generateSVGImage(MultiPartRLEToSVG.SVGParams memory params)
        public
        view
        returns (string memory svg)
    {
        return
            Base64.encode(
                bytes(MultiPartRLEToSVG.generateSVG(params, palettes))
            );
    }

    /**
     * @notice Add a single color to a color palette.
     */
    function _addColorToPalette(uint8 _paletteIndex, string calldata _color)
        internal
    {
        palettes[_paletteIndex].push(_color);
    }

    /**
     * @notice Add a Gnar background.
     */
    function _addBackground(string calldata _background) internal {
        backgrounds.push(_background);
    }

    /**
     * @notice Add a Gnar body.
     */
    function _addBody(bytes calldata _body) internal {
        bodies.push(_body);
    }

    /**
     * @notice Add a Gnar accessory.
     */
    function _addAccessory(bytes calldata _accessory) internal {
        accessories.push(_accessory);
    }

    /**
     * @notice Add a Gnar head.
     */
    function _addHead(bytes calldata _head) internal {
        heads.push(_head);
    }

    /**
     * @notice Add Gnar glasses.
     */
    function _addGlasses(bytes calldata _glasses) internal {
        glasses.push(_glasses);
    }

    /**
     * @notice Get all Gnar parts for the passed `seed`.
     */
    function _getPartsForSeed(IGnarSeeder.Seed memory seed)
        internal
        view
        returns (bytes[] memory)
    {
        bytes[] memory _parts = new bytes[](4);
        _parts[0] = bodies[seed.body];
        _parts[1] = accessories[seed.accessory];
        _parts[2] = heads[seed.head];
        _parts[3] = glasses[seed.glasses];
        return _parts;
    }
}

File 7 of 22 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

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

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 22 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 14 of 22 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 15 of 22 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 22 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 17 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 18 of 22 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 19 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 20 of 22 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 21 of 22 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

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

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

    uint256 private _status;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 22 of 22 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_skate","type":"address"},{"internalType":"address","name":"_dao","type":"address"},{"internalType":"address","name":"_descriptor","type":"address"},{"internalType":"address","name":"_seeder","type":"address"},{"internalType":"uint256","name":"_reservePrice","type":"uint256"},{"internalType":"uint8","name":"_minBidIncrementPercentage","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"gnarId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AuctionBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"gnarId","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"gnarId","type":"uint256"},{"indexed":false,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AuctionSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"percent","type":"uint8"}],"name":"MinBidIncrementPercentageUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"ReservePriceUpdated","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auction","outputs":[{"internalType":"uint256","name":"gnarId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"},{"internalType":"address payable","name":"bidder","type":"address"},{"internalType":"uint8","name":"skatePercent","type":"uint8"},{"internalType":"uint8","name":"daoPercent","type":"uint8"},{"internalType":"bool","name":"settled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionPeriodBlocks","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gnarId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gnarId","type":"uint256"},{"internalType":"uint8","name":"_skatePercent","type":"uint8"},{"internalType":"uint8","name":"_daoPercent","type":"uint8"}],"name":"createBid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentGnarId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dao","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract IGnarDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBidIncrementPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservePrice","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seeder","outputs":[{"internalType":"contract IGnarSeeder","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seeds","outputs":[{"internalType":"uint48","name":"background","type":"uint48"},{"internalType":"uint48","name":"body","type":"uint48"},{"internalType":"uint48","name":"accessory","type":"uint48"},{"internalType":"uint48","name":"head","type":"uint48"},{"internalType":"uint48","name":"glasses","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_auctionPeriodBlocks","type":"uint16"}],"name":"setAuctionPeriodBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_descriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_minBidIncrementPercentage","type":"uint8"}],"name":"setMinBidIncrementPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservePrice","type":"uint256"}],"name":"setReservePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_seeder","type":"address"}],"name":"setSeeder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_skate","type":"address"},{"internalType":"address","name":"_dao","type":"address"}],"name":"setSkateDaoAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleCurrentAndCreateNewAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"skate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261029a603d60006101000a81548161ffff021916908361ffff1602179055506001604860006101000a81548160ff0219169083151502179055503480156200004b57600080fd5b5060405162006729380380620067298339818101604052810190620000719190620005e5565b6040518060400160405280600c81526020017f536b617465206f722044414f00000000000000000000000000000000000000008152506040518060400160405280600481526020017f474e4152000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f592919062000452565b5080600190805190602001906200010e92919062000452565b50505062000131620001256200038460201b60201c565b6200038c60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156200019c5750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015620001d65750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015620002105750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b62000252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024990620006e2565b60405180910390fd5b85604860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084604960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083603d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082603e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160458190555080604660006101000a81548160ff021916908360ff16021790555050505050505062000769565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004609062000733565b90600052602060002090601f016020900481019282620004845760008555620004d0565b82601f106200049f57805160ff1916838001178555620004d0565b82800160010185558215620004d0579182015b82811115620004cf578251825591602001919060010190620004b2565b5b509050620004df9190620004e3565b5090565b5b80821115620004fe576000816000905550600101620004e4565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005348262000507565b9050919050565b620005468162000527565b81146200055257600080fd5b50565b60008151905062000566816200053b565b92915050565b6000819050919050565b62000581816200056c565b81146200058d57600080fd5b50565b600081519050620005a18162000576565b92915050565b600060ff82169050919050565b620005bf81620005a7565b8114620005cb57600080fd5b50565b600081519050620005df81620005b4565b92915050565b60008060008060008060c0878903121562000605576200060462000502565b5b60006200061589828a0162000555565b96505060206200062889828a0162000555565b95505060406200063b89828a0162000555565b94505060606200064e89828a0162000555565b93505060806200066189828a0162000590565b92505060a06200067489828a01620005ce565b9150509295509295509295565b600082825260208201905092915050565b7f5a45524f20414444524553530000000000000000000000000000000000000000600082015250565b6000620006ca600c8362000681565b9150620006d78262000692565b602082019050919050565b60006020820190508181036000830152620006fd81620006bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074c57607f821691505b6020821081141562000763576200076262000704565b5b50919050565b615fb080620007796000396000f3fe60806040526004361061025c5760003560e01c8063684931ed11610144578063b296024d116100b6578063d50b31eb1161007a578063d50b31eb146108a8578063db2e1eed146108d1578063e985e9c5146108fc578063f0503e8014610939578063f25efffc1461097a578063f2fde38b146109915761025c565b8063b296024d146107c3578063b88d4fde146107ee578063c20bc70114610817578063c87b56dd14610842578063ce9c7c0d1461087f5761025c565b80638456cb59116101085780638456cb59146106d95780638da5cb5b146106f057806394a9c1c01461071b57806395d89b4114610746578063a1e0d98d14610771578063a22cb4651461079a5761025c565b8063684931ed146105ff57806370a082311461062a578063715018a61461066757806375b37bd01461067e5780637d9f6db5146106a75761025c565b8063303e74df116101dd57806342966c68116101a157806342966c68146104ef5780634f245ef7146105185780634f6ccce71461052f57806351926dba1461056c5780635c975abb146105975780636352211e146105c25761025c565b8063303e74df1461043057806336ebdb381461045b5780633f4ba83a146104845780634162169f1461049b57806342842e0e146104c65761025c565b8063119a7fce11610224578063119a7fce1461035857806318160ddd1461038357806323b872dd146103ae57806325f43362146103d75780632f745c59146103f35761025c565b806301b9a3971461026157806301ffc9a71461028a57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613e7a565b6109ba565b005b34801561029657600080fd5b506102b160048036038101906102ac9190613eff565b610aea565b6040516102be9190613f47565b60405180910390f35b3480156102d357600080fd5b506102dc610b64565b6040516102e99190613ffb565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190614053565b610bf6565b604051610326919061408f565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906140aa565b610c7b565b005b34801561036457600080fd5b5061036d610d93565b60405161037a9190614107565b60405180910390f35b34801561038f57600080fd5b50610398610da7565b6040516103a59190614131565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061414c565b610db4565b005b6103f160048036038101906103ec91906141d8565b610e14565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906140aa565b61124b565b6040516104279190614131565b60405180910390f35b34801561043c57600080fd5b506104456112f0565b604051610452919061428a565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906142a5565b611316565b005b34801561049057600080fd5b506104996113e7565b005b3480156104a757600080fd5b506104b0611513565b6040516104bd919061408f565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e8919061414c565b611539565b005b3480156104fb57600080fd5b5061051660048036038101906105119190614053565b611559565b005b34801561052457600080fd5b5061052d6115e1565b005b34801561053b57600080fd5b5061055660048036038101906105519190614053565b6116d1565b6040516105639190614131565b60405180910390f35b34801561057857600080fd5b50610581611742565b60405161058e9190614131565b60405180910390f35b3480156105a357600080fd5b506105ac611748565b6040516105b99190613f47565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190614053565b61175b565b6040516105f6919061408f565b60405180910390f35b34801561060b57600080fd5b5061061461180d565b60405161062191906142f3565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190613e7a565b611833565b60405161065e9190614131565b60405180910390f35b34801561067357600080fd5b5061067c6118eb565b005b34801561068a57600080fd5b506106a560048036038101906106a0919061433a565b611973565b005b3480156106b357600080fd5b506106bc611a0f565b6040516106d0989796959493929190614397565b60405180910390f35b3480156106e557600080fd5b506106ee611a8c565b005b3480156106fc57600080fd5b50610705611b75565b604051610712919061408f565b60405180910390f35b34801561072757600080fd5b50610730611b9f565b60405161073d9190614131565b60405180910390f35b34801561075257600080fd5b5061075b611bff565b6040516107689190613ffb565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190614415565b611c91565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190614481565b611e3c565b005b3480156107cf57600080fd5b506107d8611e52565b6040516107e591906144c1565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190614611565b611e65565b005b34801561082357600080fd5b5061082c611ec7565b604051610839919061408f565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190614053565b611eed565b6040516108769190613ffb565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a19190614053565b611ff3565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613e7a565b6120b0565b005b3480156108dd57600080fd5b506108e66121e0565b6040516108f39190614131565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190614415565b6121e6565b6040516109309190613f47565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190614053565b61227a565b6040516109719594939291906146b5565b60405180910390f35b34801561098657600080fd5b5061098f61230a565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613e7a565b6123c2565b005b6109c26124ba565b73ffffffffffffffffffffffffffffffffffffffff166109e0611b75565b73ffffffffffffffffffffffffffffffffffffffff1614610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d906147c0565b60405180910390fd5b80603d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5d5750610b5c826124c2565b5b9050919050565b606060008054610b739061480f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f9061480f565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b5050505050905090565b6000610c01826125a4565b610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906148b3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c868261175b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90614945565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d166124ba565b73ffffffffffffffffffffffffffffffffffffffff161480610d455750610d4481610d3f6124ba565b6121e6565b5b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b906149d7565b60405180910390fd5b610d8e8383612610565b505050565b603d60009054906101000a900461ffff1681565b6000600880549050905090565b610dc5610dbf6124ba565b826126c9565b610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90614a69565b60405180910390fd5b610e0f8383836127a7565b505050565b6002600b541415610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190614ad5565b60405180910390fd5b6002600b8190555060006040805180610100016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016004820160149054906101000a900460ff1660ff1660ff1681526020016004820160159054906101000a900460ff1660ff1660ff1681526020016004820160169054906101000a900460ff161515151581525050905083816000015114610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614b41565b60405180910390fd5b60648284610f9a9190614b90565b60ff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490614c13565b60405180910390fd5b80606001514310611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614c7f565b60405180910390fd5b604554341015611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90614ceb565b60405180910390fd5b6064604660009054906101000a900460ff1660ff16826020015161108c9190614d0b565b6110969190614d94565b81602001516110a59190614dc5565b3410156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614e8d565b60405180910390fd5b600081608001519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461117257611132818360200151612a03565b611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614ef9565b60405180910390fd5b5b3460406001018190555033604060040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083604060040160146101000a81548160ff021916908360ff16021790555082604060040160156101000a81548160ff021916908360ff16021790555081600001517f730f2240d495ac23326a84377b898e338b57feddb6bba95ae0dfa2612ded8bca33344260405161123493929190614f19565b60405180910390a250506001600b81905550505050565b600061125683611833565b8210611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614fc2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b603d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61131e6124ba565b73ffffffffffffffffffffffffffffffffffffffff1661133c611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990614754565b60405180910390fd5b80604660006101000a81548160ff021916908360ff1602179055507fe550c0472f427d25eb6af8d792537bf24e15303bfb7674965446eed362ce5c33816040516113dc91906144c1565b60405180910390a150565b6113ef6124ba565b73ffffffffffffffffffffffffffffffffffffffff1661140d611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614754565b60405180910390fd5b604860009054906101000a900460ff166114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a99061502e565b60405180910390fd5b6000604860006101000a81548160ff02191690831515021790555043604060030154101561151157604060040160169054906101000a900460ff16156114ff576114fa612ace565b611510565b611507612c68565b61150f612ace565b5b5b565b604960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61155483838360405180602001604052806000815250611e65565b505050565b6115616124ba565b73ffffffffffffffffffffffffffffffffffffffff1661157f611b75565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614754565b60405180910390fd5b6115de81613017565b50565b6115e96124ba565b73ffffffffffffffffffffffffffffffffffffffff16611607611b75565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490614754565b60405180910390fd5b604860009054906101000a900460ff166116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a39061509a565b60405180910390fd5b6000604860006101000a81548160ff0219169083151502179055506116cf612ace565b565b60006116db610da7565b821061171c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117139061512c565b60405180910390fd5b600882815481106117305761172f61514c565b5b90600052602060002001549050919050565b603f5481565b604860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb906151ed565b60405180910390fd5b80915050919050565b603e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b9061527f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118f36124ba565b73ffffffffffffffffffffffffffffffffffffffff16611911611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90614754565b60405180910390fd5b6119716000613128565b565b61197b6124ba565b73ffffffffffffffffffffffffffffffffffffffff16611999611b75565b73ffffffffffffffffffffffffffffffffffffffff16146119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690614754565b60405180910390fd5b80603d60006101000a81548161ffff021916908361ffff16021790555050565b60408060000154908060010154908060020154908060030154908060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060040160149054906101000a900460ff16908060040160159054906101000a900460ff16908060040160169054906101000a900460ff16905088565b611a946124ba565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90614754565b60405180910390fd5b604860009054906101000a900460ff1615611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906152eb565b60405180910390fd5b6001604860006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000436040600301541015611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090615357565b60405180910390fd5b43604060030154611bfa9190615377565b905090565b606060018054611c0e9061480f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3a9061480f565b8015611c875780601f10611c5c57610100808354040283529160200191611c87565b820191906000526020600020905b815481529060010190602001808311611c6a57829003601f168201915b5050505050905090565b611c996124ba565b73ffffffffffffffffffffffffffffffffffffffff16611cb7611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0490614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d775750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad906147c0565b60405180910390fd5b81604860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080604960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611e4e611e476124ba565b83836131ee565b5050565b604660009054906101000a900460ff1681565b611e76611e706124ba565b836126c9565b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90614a69565b60405180910390fd5b611ec18484848461335b565b50505050565b604860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611ef8826125a4565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e906153f7565b60405180910390fd5b603d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633cfdafd383604760008681526020019081526020016000206040518363ffffffff1660e01b8152600401611fa6929190615580565b600060405180830381865afa158015611fc3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611fec919061564a565b9050919050565b611ffb6124ba565b73ffffffffffffffffffffffffffffffffffffffff16612019611b75565b73ffffffffffffffffffffffffffffffffffffffff161461206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690614754565b60405180910390fd5b806045819055507f5eff5bfbbcd368d29167922a6a1271d4872e0160b274c36bc5f5b5aff168f371816040516120a59190614131565b60405180910390a150565b6120b86124ba565b73ffffffffffffffffffffffffffffffffffffffff166120d6611b75565b73ffffffffffffffffffffffffffffffffffffffff161461212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906147c0565b60405180910390fd5b80603e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60455481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60476020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b6002600b541415612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614ad5565b60405180910390fd5b6002600b81905550604860009054906101000a900460ff16156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f906156df565b60405180910390fd5b6123b0612c68565b6123b8612ace565b6001600b81905550565b6123ca6124ba565b73ffffffffffffffffffffffffffffffffffffffff166123e8611b75565b73ffffffffffffffffffffffffffffffffffffffff161461243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a590615771565b60405180910390fd5b6124b781613128565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061259d575061259c826133b7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126838361175b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d4826125a4565b612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90615803565b60405180910390fd5b600061271e8361175b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278d57508373ffffffffffffffffffffffffffffffffffffffff1661277584610bf6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279e575061279d81856121e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c78261175b565b73ffffffffffffffffffffffffffffffffffffffff161461281d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281490615895565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490615927565b60405180910390fd5b612898838383613421565b6128a3600082612610565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f39190615377565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294a9190614dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808373ffffffffffffffffffffffffffffffffffffffff168361c35090600067ffffffffffffffff811115612a3d57612a3c6144e6565b5b6040519080825280601f01601f191660200182016040528015612a6f5781602001600182028036833780820191505090505b50604051612a7d919061598e565b600060405180830381858888f193505050503d8060008114612abb576040519150601f19603f3d011682016040523d82523d6000602084013e612ac0565b606091505b505090508091505092915050565b6000612ad8613535565b905060004390506000603d60009054906101000a900461ffff1661ffff1682612b019190614dc5565b905060405180610100016040528084815260200160008152602001838152602001828152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001603260ff168152602001603260ff1681526020016000151581525060406000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160040160146101000a81548160ff021916908360ff16021790555060c08201518160040160156101000a81548160ff021916908360ff16021790555060e08201518160040160166101000a81548160ff021916908315150217905550905050827f7e0e356457a92dacd3760ddf327a24dd226c6ca01b2cc41a7fd6f28469c7ab9b60405160405180910390a2505050565b60006040805180610100016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016004820160149054906101000a900460ff1660ff1660ff1681526020016004820160159054906101000a900460ff1660ff1660ff1681526020016004820160169054906101000a900460ff1615151515815250509050600081604001511415612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b906159f1565b60405180910390fd5b8060e0015115612dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd090615a5d565b60405180910390fd5b8060600151431015612e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1790615ac9565b60405180910390fd5b6001604060040160166101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff161415612e8957612e848160000151611559565b612ea4565b612ea3612e94611b75565b82608001518360000151610db4565b5b600081602001511115612fcc57612eff604860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660648360a0015160ff168460200151612ef09190614d0b565b612efa9190614d94565b612a03565b612f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3590614ef9565b60405180910390fd5b612f8c604960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660648360c0015160ff168460200151612f7d9190614d0b565b612f879190614d94565b612a03565b612fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc290614ef9565b60405180910390fd5b5b80600001517ff3f2616e1974d63dd639b6a9ee3bb862a76b9bb4909e0a92a1e95b475e3821b7826080015183602001514260405161300c93929190615b0a565b60405180910390a250565b60006130228261175b565b905061303081600084613421565b61303b600083612610565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308b9190615377565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561325d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325490615b8d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161334e9190613f47565b60405180910390a3505050565b6133668484846127a7565b6133728484848461371b565b6133b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a890615c1f565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61342c8383836138a3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561346f5761346a816138a8565b6134ae565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134ad576134ac83826138f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f1576134ec81613a5e565b613530565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461352f5761352e8282613b2f565b5b5b505050565b600080603e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663422e2e99603f54603d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016135b9929190615c3f565b60a060405180830381865afa1580156135d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135fa9190615d25565b90506000603f54905061360d3382613bae565b603f600081548092919061362090615d52565b9190505550816047600083815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff160217905550905050809250505090565b600061373c8473ffffffffffffffffffffffffffffffffffffffff16613bcc565b15613896578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137656124ba565b8786866040518563ffffffff1660e01b81526004016137879493929190615de5565b6020604051808303816000875af19250505080156137c357506040513d601f19601f820116820180604052508101906137c09190615e46565b60015b613846573d80600081146137f3576040519150601f19603f3d011682016040523d82523d6000602084013e6137f8565b606091505b5060008151141561383e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383590615c1f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061389b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138fe84611833565b6139089190615377565b90506000600760008481526020019081526020016000205490508181146139ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a729190615377565b9050600060096000848152602001908152602001600020549050600060088381548110613aa257613aa161514c565b5b906000526020600020015490508060088381548110613ac457613ac361514c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b1357613b12615e73565b5b6001900381819060005260206000200160009055905550505050565b6000613b3a83611833565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613bc8828260405180602001604052806000815250613bdf565b5050565b600080823b905060008111915050919050565b613be98383613c3a565b613bf6600084848461371b565b613c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c2c90615c1f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca190615eee565b60405180910390fd5b613cb3816125a4565b15613cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cea90615f5a565b60405180910390fd5b613cff60008383613421565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d4f9190614dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4782613e1c565b9050919050565b613e5781613e3c565b8114613e6257600080fd5b50565b600081359050613e7481613e4e565b92915050565b600060208284031215613e9057613e8f613e12565b5b6000613e9e84828501613e65565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613edc81613ea7565b8114613ee757600080fd5b50565b600081359050613ef981613ed3565b92915050565b600060208284031215613f1557613f14613e12565b5b6000613f2384828501613eea565b91505092915050565b60008115159050919050565b613f4181613f2c565b82525050565b6000602082019050613f5c6000830184613f38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f9c578082015181840152602081019050613f81565b83811115613fab576000848401525b50505050565b6000601f19601f8301169050919050565b6000613fcd82613f62565b613fd78185613f6d565b9350613fe7818560208601613f7e565b613ff081613fb1565b840191505092915050565b600060208201905081810360008301526140158184613fc2565b905092915050565b6000819050919050565b6140308161401d565b811461403b57600080fd5b50565b60008135905061404d81614027565b92915050565b60006020828403121561406957614068613e12565b5b60006140778482850161403e565b91505092915050565b61408981613e3c565b82525050565b60006020820190506140a46000830184614080565b92915050565b600080604083850312156140c1576140c0613e12565b5b60006140cf85828601613e65565b92505060206140e08582860161403e565b9150509250929050565b600061ffff82169050919050565b614101816140ea565b82525050565b600060208201905061411c60008301846140f8565b92915050565b61412b8161401d565b82525050565b60006020820190506141466000830184614122565b92915050565b60008060006060848603121561416557614164613e12565b5b600061417386828701613e65565b935050602061418486828701613e65565b92505060406141958682870161403e565b9150509250925092565b600060ff82169050919050565b6141b58161419f565b81146141c057600080fd5b50565b6000813590506141d2816141ac565b92915050565b6000806000606084860312156141f1576141f0613e12565b5b60006141ff8682870161403e565b9350506020614210868287016141c3565b9250506040614221868287016141c3565b9150509250925092565b6000819050919050565b600061425061424b61424684613e1c565b61422b565b613e1c565b9050919050565b600061426282614235565b9050919050565b600061427482614257565b9050919050565b61428481614269565b82525050565b600060208201905061429f600083018461427b565b92915050565b6000602082840312156142bb576142ba613e12565b5b60006142c9848285016141c3565b91505092915050565b60006142dd82614257565b9050919050565b6142ed816142d2565b82525050565b600060208201905061430860008301846142e4565b92915050565b614317816140ea565b811461432257600080fd5b50565b6000813590506143348161430e565b92915050565b6000602082840312156143505761434f613e12565b5b600061435e84828501614325565b91505092915050565b600061437282613e1c565b9050919050565b61438281614367565b82525050565b6143918161419f565b82525050565b6000610100820190506143ad600083018b614122565b6143ba602083018a614122565b6143c76040830189614122565b6143d46060830188614122565b6143e16080830187614379565b6143ee60a0830186614388565b6143fb60c0830185614388565b61440860e0830184613f38565b9998505050505050505050565b6000806040838503121561442c5761442b613e12565b5b600061443a85828601613e65565b925050602061444b85828601613e65565b9150509250929050565b61445e81613f2c565b811461446957600080fd5b50565b60008135905061447b81614455565b92915050565b6000806040838503121561449857614497613e12565b5b60006144a685828601613e65565b92505060206144b78582860161446c565b9150509250929050565b60006020820190506144d66000830184614388565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61451e82613fb1565b810181811067ffffffffffffffff8211171561453d5761453c6144e6565b5b80604052505050565b6000614550613e08565b905061455c8282614515565b919050565b600067ffffffffffffffff82111561457c5761457b6144e6565b5b61458582613fb1565b9050602081019050919050565b82818337600083830152505050565b60006145b46145af84614561565b614546565b9050828152602081018484840111156145d0576145cf6144e1565b5b6145db848285614592565b509392505050565b600082601f8301126145f8576145f76144dc565b5b81356146088482602086016145a1565b91505092915050565b6000806000806080858703121561462b5761462a613e12565b5b600061463987828801613e65565b945050602061464a87828801613e65565b935050604061465b8782880161403e565b925050606085013567ffffffffffffffff81111561467c5761467b613e17565b5b614688878288016145e3565b91505092959194509250565b600065ffffffffffff82169050919050565b6146af81614694565b82525050565b600060a0820190506146ca60008301886146a6565b6146d760208301876146a6565b6146e460408301866146a6565b6146f160608301856146a6565b6146fe60808301846146a6565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061473e602083613f6d565b915061474982614708565b602082019050919050565b6000602082019050818103600083015261476d81614731565b9050919050565b7f5a45524f20414444524553530000000000000000000000000000000000000000600082015250565b60006147aa600c83613f6d565b91506147b582614774565b602082019050919050565b600060208201905081810360008301526147d98161479d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061482757607f821691505b6020821081141561483b5761483a6147e0565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061489d602c83613f6d565b91506148a882614841565b604082019050919050565b600060208201905081810360008301526148cc81614890565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061492f602183613f6d565b915061493a826148d3565b604082019050919050565b6000602082019050818103600083015261495e81614922565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006149c1603883613f6d565b91506149cc82614965565b604082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a53603183613f6d565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614abf601f83613f6d565b9150614aca82614a89565b602082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f476e6172206e6f7420757020666f722061756374696f6e000000000000000000600082015250565b6000614b2b601783613f6d565b9150614b3682614af5565b602082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9b8261419f565b9150614ba68361419f565b92508260ff03821115614bbc57614bbb614b61565b5b828201905092915050565b7f53756d206f662070657263656e7473206973206e6f7420313030000000000000600082015250565b6000614bfd601a83613f6d565b9150614c0882614bc7565b602082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f41756374696f6e20657870697265640000000000000000000000000000000000600082015250565b6000614c69600f83613f6d565b9150614c7482614c33565b602082019050919050565b60006020820190508181036000830152614c9881614c5c565b9050919050565b7f4d7573742073656e64206174206c656173742072657365727665507269636500600082015250565b6000614cd5601f83613f6d565b9150614ce082614c9f565b602082019050919050565b60006020820190508181036000830152614d0481614cc8565b9050919050565b6000614d168261401d565b9150614d218361401d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5a57614d59614b61565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d9f8261401d565b9150614daa8361401d565b925082614dba57614db9614d65565b5b828204905092915050565b6000614dd08261401d565b9150614ddb8361401d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e1057614e0f614b61565b5b828201905092915050565b7f4d7573742073656e64206d6f7265207468616e206c617374206269642062792060008201527f6d696e426964496e6372656d656e7450657263656e7461676520616d6f756e74602082015250565b6000614e77604083613f6d565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000614ee3601383613f6d565b9150614eee82614ead565b602082019050919050565b60006020820190508181036000830152614f1281614ed6565b9050919050565b6000606082019050614f2e6000830186614080565b614f3b6020830185614122565b614f486040830184614122565b949350505050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614fac602b83613f6d565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b7f416c72656164792041756374696f6e2072756e6e696e67000000000000000000600082015250565b6000615018601783613f6d565b915061502382614fe2565b602082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f41756374696f6e20616c72656164792073746172746564000000000000000000600082015250565b6000615084601783613f6d565b915061508f8261504e565b602082019050919050565b600060208201905081810360008301526150b381615077565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615116602c83613f6d565b9150615121826150ba565b604082019050919050565b6000602082019050818103600083015261514581615109565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006151d7602983613f6d565b91506151e28261517b565b604082019050919050565b60006020820190508181036000830152615206816151ca565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615269602a83613f6d565b91506152748261520d565b604082019050919050565b600060208201905081810360008301526152988161525c565b9050919050565b7f416c726561647920506175736564000000000000000000000000000000000000600082015250565b60006152d5600e83613f6d565b91506152e08261529f565b602082019050919050565b60006020820190508181036000830152615304816152c8565b9050919050565b7f4e6f2072656d61696e20626c6f636b7321000000000000000000000000000000600082015250565b6000615341601183613f6d565b915061534c8261530b565b602082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b60006153828261401d565b915061538d8361401d565b9250828210156153a05761539f614b61565b5b828203905092915050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006153e1601183613f6d565b91506153ec826153ab565b602082019050919050565b60006020820190508181036000830152615410816153d4565b9050919050565b60008160001c9050919050565b600065ffffffffffff82169050919050565b600061544961544483615417565b615424565b9050919050565b61545981614694565b82525050565b60008160301c9050919050565b600061547f61547a8361545f565b615424565b9050919050565b60008160601c9050919050565b60006154a66154a183615486565b615424565b9050919050565b60008160901c9050919050565b60006154cd6154c8836154ad565b615424565b9050919050565b60008160c01c9050919050565b60006154f46154ef836154d4565b615424565b9050919050565b60a08201600080830154905061551081615436565b61551d6000860182615450565b506155278161546c565b6155346020860182615450565b5061553e81615493565b61554b6040860182615450565b50615555816154ba565b6155626060860182615450565b5061556c816154e1565b6155796080860182615450565b5050505050565b600060c0820190506155956000830185614122565b6155a260208301846154fb565b9392505050565b600067ffffffffffffffff8211156155c4576155c36144e6565b5b6155cd82613fb1565b9050602081019050919050565b60006155ed6155e8846155a9565b614546565b905082815260208101848484011115615609576156086144e1565b5b615614848285613f7e565b509392505050565b600082601f830112615631576156306144dc565b5b81516156418482602086016155da565b91505092915050565b6000602082840312156156605761565f613e12565b5b600082015167ffffffffffffffff81111561567e5761567d613e17565b5b61568a8482850161561c565b91505092915050565b7f41756374696f6e20697320706175736564000000000000000000000000000000600082015250565b60006156c9601183613f6d565b91506156d482615693565b602082019050919050565b600060208201905081810360008301526156f8816156bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061575b602683613f6d565b9150615766826156ff565b604082019050919050565b6000602082019050818103600083015261578a8161574e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006157ed602c83613f6d565b91506157f882615791565b604082019050919050565b6000602082019050818103600083015261581c816157e0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061587f602983613f6d565b915061588a82615823565b604082019050919050565b600060208201905081810360008301526158ae81615872565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615911602483613f6d565b915061591c826158b5565b604082019050919050565b6000602082019050818103600083015261594081615904565b9050919050565b600081519050919050565b600081905092915050565b600061596882615947565b6159728185615952565b9350615982818560208601613f7e565b80840191505092915050565b600061599a828461595d565b915081905092915050565b7f41756374696f6e206861736e277420626567756e000000000000000000000000600082015250565b60006159db601483613f6d565b91506159e6826159a5565b602082019050919050565b60006020820190508181036000830152615a0a816159ce565b9050919050565b7f41756374696f6e2068617320616c7265616479206265656e20736574746c6564600082015250565b6000615a47602083613f6d565b9150615a5282615a11565b602082019050919050565b60006020820190508181036000830152615a7681615a3a565b9050919050565b7f41756374696f6e206861736e277420636f6d706c657465640000000000000000600082015250565b6000615ab3601883613f6d565b9150615abe82615a7d565b602082019050919050565b60006020820190508181036000830152615ae281615aa6565b9050919050565b6000615af482614257565b9050919050565b615b0481615ae9565b82525050565b6000606082019050615b1f6000830186615afb565b615b2c6020830185614122565b615b396040830184614122565b949350505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615b77601983613f6d565b9150615b8282615b41565b602082019050919050565b60006020820190508181036000830152615ba681615b6a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c09603283613f6d565b9150615c1482615bad565b604082019050919050565b60006020820190508181036000830152615c3881615bfc565b9050919050565b6000604082019050615c546000830185614122565b615c61602083018461427b565b9392505050565b600080fd5b615c7681614694565b8114615c8157600080fd5b50565b600081519050615c9381615c6d565b92915050565b600060a08284031215615caf57615cae615c68565b5b615cb960a0614546565b90506000615cc984828501615c84565b6000830152506020615cdd84828501615c84565b6020830152506040615cf184828501615c84565b6040830152506060615d0584828501615c84565b6060830152506080615d1984828501615c84565b60808301525092915050565b600060a08284031215615d3b57615d3a613e12565b5b6000615d4984828501615c99565b91505092915050565b6000615d5d8261401d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d9057615d8f614b61565b5b600182019050919050565b600082825260208201905092915050565b6000615db782615947565b615dc18185615d9b565b9350615dd1818560208601613f7e565b615dda81613fb1565b840191505092915050565b6000608082019050615dfa6000830187614080565b615e076020830186614080565b615e146040830185614122565b8181036060830152615e268184615dac565b905095945050505050565b600081519050615e4081613ed3565b92915050565b600060208284031215615e5c57615e5b613e12565b5b6000615e6a84828501615e31565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615ed8602083613f6d565b9150615ee382615ea2565b602082019050919050565b60006020820190508181036000830152615f0781615ecb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615f44601c83613f6d565b9150615f4f82615f0e565b602082019050919050565b60006020820190508181036000830152615f7381615f37565b905091905056fea26469706673582212208c8af0a0a67e3a0096d3bb6c69a3e25de96fe4cb0d220524394ad2e617d0e15564736f6c634300080b003300000000000000000000000073222225044ce0fc672ff9b6f9730d0a0421382c0000000000000000000000001f873636cb05a52b9efd2625dbf9383e26b2e4e9000000000000000000000000356ed178c62a251136d883f01e1b84cf6980aea80000000000000000000000003c7901a03f9c37af91f308b8f9af92fbc55f61a5000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063684931ed11610144578063b296024d116100b6578063d50b31eb1161007a578063d50b31eb146108a8578063db2e1eed146108d1578063e985e9c5146108fc578063f0503e8014610939578063f25efffc1461097a578063f2fde38b146109915761025c565b8063b296024d146107c3578063b88d4fde146107ee578063c20bc70114610817578063c87b56dd14610842578063ce9c7c0d1461087f5761025c565b80638456cb59116101085780638456cb59146106d95780638da5cb5b146106f057806394a9c1c01461071b57806395d89b4114610746578063a1e0d98d14610771578063a22cb4651461079a5761025c565b8063684931ed146105ff57806370a082311461062a578063715018a61461066757806375b37bd01461067e5780637d9f6db5146106a75761025c565b8063303e74df116101dd57806342966c68116101a157806342966c68146104ef5780634f245ef7146105185780634f6ccce71461052f57806351926dba1461056c5780635c975abb146105975780636352211e146105c25761025c565b8063303e74df1461043057806336ebdb381461045b5780633f4ba83a146104845780634162169f1461049b57806342842e0e146104c65761025c565b8063119a7fce11610224578063119a7fce1461035857806318160ddd1461038357806323b872dd146103ae57806325f43362146103d75780632f745c59146103f35761025c565b806301b9a3971461026157806301ffc9a71461028a57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613e7a565b6109ba565b005b34801561029657600080fd5b506102b160048036038101906102ac9190613eff565b610aea565b6040516102be9190613f47565b60405180910390f35b3480156102d357600080fd5b506102dc610b64565b6040516102e99190613ffb565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190614053565b610bf6565b604051610326919061408f565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906140aa565b610c7b565b005b34801561036457600080fd5b5061036d610d93565b60405161037a9190614107565b60405180910390f35b34801561038f57600080fd5b50610398610da7565b6040516103a59190614131565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061414c565b610db4565b005b6103f160048036038101906103ec91906141d8565b610e14565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906140aa565b61124b565b6040516104279190614131565b60405180910390f35b34801561043c57600080fd5b506104456112f0565b604051610452919061428a565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906142a5565b611316565b005b34801561049057600080fd5b506104996113e7565b005b3480156104a757600080fd5b506104b0611513565b6040516104bd919061408f565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e8919061414c565b611539565b005b3480156104fb57600080fd5b5061051660048036038101906105119190614053565b611559565b005b34801561052457600080fd5b5061052d6115e1565b005b34801561053b57600080fd5b5061055660048036038101906105519190614053565b6116d1565b6040516105639190614131565b60405180910390f35b34801561057857600080fd5b50610581611742565b60405161058e9190614131565b60405180910390f35b3480156105a357600080fd5b506105ac611748565b6040516105b99190613f47565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190614053565b61175b565b6040516105f6919061408f565b60405180910390f35b34801561060b57600080fd5b5061061461180d565b60405161062191906142f3565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190613e7a565b611833565b60405161065e9190614131565b60405180910390f35b34801561067357600080fd5b5061067c6118eb565b005b34801561068a57600080fd5b506106a560048036038101906106a0919061433a565b611973565b005b3480156106b357600080fd5b506106bc611a0f565b6040516106d0989796959493929190614397565b60405180910390f35b3480156106e557600080fd5b506106ee611a8c565b005b3480156106fc57600080fd5b50610705611b75565b604051610712919061408f565b60405180910390f35b34801561072757600080fd5b50610730611b9f565b60405161073d9190614131565b60405180910390f35b34801561075257600080fd5b5061075b611bff565b6040516107689190613ffb565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190614415565b611c91565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190614481565b611e3c565b005b3480156107cf57600080fd5b506107d8611e52565b6040516107e591906144c1565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190614611565b611e65565b005b34801561082357600080fd5b5061082c611ec7565b604051610839919061408f565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190614053565b611eed565b6040516108769190613ffb565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a19190614053565b611ff3565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613e7a565b6120b0565b005b3480156108dd57600080fd5b506108e66121e0565b6040516108f39190614131565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190614415565b6121e6565b6040516109309190613f47565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190614053565b61227a565b6040516109719594939291906146b5565b60405180910390f35b34801561098657600080fd5b5061098f61230a565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613e7a565b6123c2565b005b6109c26124ba565b73ffffffffffffffffffffffffffffffffffffffff166109e0611b75565b73ffffffffffffffffffffffffffffffffffffffff1614610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d906147c0565b60405180910390fd5b80603d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5d5750610b5c826124c2565b5b9050919050565b606060008054610b739061480f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f9061480f565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b5050505050905090565b6000610c01826125a4565b610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906148b3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c868261175b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90614945565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d166124ba565b73ffffffffffffffffffffffffffffffffffffffff161480610d455750610d4481610d3f6124ba565b6121e6565b5b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b906149d7565b60405180910390fd5b610d8e8383612610565b505050565b603d60009054906101000a900461ffff1681565b6000600880549050905090565b610dc5610dbf6124ba565b826126c9565b610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90614a69565b60405180910390fd5b610e0f8383836127a7565b505050565b6002600b541415610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190614ad5565b60405180910390fd5b6002600b8190555060006040805180610100016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016004820160149054906101000a900460ff1660ff1660ff1681526020016004820160159054906101000a900460ff1660ff1660ff1681526020016004820160169054906101000a900460ff161515151581525050905083816000015114610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614b41565b60405180910390fd5b60648284610f9a9190614b90565b60ff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490614c13565b60405180910390fd5b80606001514310611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614c7f565b60405180910390fd5b604554341015611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90614ceb565b60405180910390fd5b6064604660009054906101000a900460ff1660ff16826020015161108c9190614d0b565b6110969190614d94565b81602001516110a59190614dc5565b3410156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614e8d565b60405180910390fd5b600081608001519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461117257611132818360200151612a03565b611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614ef9565b60405180910390fd5b5b3460406001018190555033604060040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083604060040160146101000a81548160ff021916908360ff16021790555082604060040160156101000a81548160ff021916908360ff16021790555081600001517f730f2240d495ac23326a84377b898e338b57feddb6bba95ae0dfa2612ded8bca33344260405161123493929190614f19565b60405180910390a250506001600b81905550505050565b600061125683611833565b8210611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614fc2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b603d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61131e6124ba565b73ffffffffffffffffffffffffffffffffffffffff1661133c611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990614754565b60405180910390fd5b80604660006101000a81548160ff021916908360ff1602179055507fe550c0472f427d25eb6af8d792537bf24e15303bfb7674965446eed362ce5c33816040516113dc91906144c1565b60405180910390a150565b6113ef6124ba565b73ffffffffffffffffffffffffffffffffffffffff1661140d611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614754565b60405180910390fd5b604860009054906101000a900460ff166114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a99061502e565b60405180910390fd5b6000604860006101000a81548160ff02191690831515021790555043604060030154101561151157604060040160169054906101000a900460ff16156114ff576114fa612ace565b611510565b611507612c68565b61150f612ace565b5b5b565b604960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61155483838360405180602001604052806000815250611e65565b505050565b6115616124ba565b73ffffffffffffffffffffffffffffffffffffffff1661157f611b75565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614754565b60405180910390fd5b6115de81613017565b50565b6115e96124ba565b73ffffffffffffffffffffffffffffffffffffffff16611607611b75565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490614754565b60405180910390fd5b604860009054906101000a900460ff166116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a39061509a565b60405180910390fd5b6000604860006101000a81548160ff0219169083151502179055506116cf612ace565b565b60006116db610da7565b821061171c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117139061512c565b60405180910390fd5b600882815481106117305761172f61514c565b5b90600052602060002001549050919050565b603f5481565b604860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb906151ed565b60405180910390fd5b80915050919050565b603e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b9061527f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118f36124ba565b73ffffffffffffffffffffffffffffffffffffffff16611911611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90614754565b60405180910390fd5b6119716000613128565b565b61197b6124ba565b73ffffffffffffffffffffffffffffffffffffffff16611999611b75565b73ffffffffffffffffffffffffffffffffffffffff16146119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690614754565b60405180910390fd5b80603d60006101000a81548161ffff021916908361ffff16021790555050565b60408060000154908060010154908060020154908060030154908060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060040160149054906101000a900460ff16908060040160159054906101000a900460ff16908060040160169054906101000a900460ff16905088565b611a946124ba565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90614754565b60405180910390fd5b604860009054906101000a900460ff1615611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906152eb565b60405180910390fd5b6001604860006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000436040600301541015611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090615357565b60405180910390fd5b43604060030154611bfa9190615377565b905090565b606060018054611c0e9061480f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3a9061480f565b8015611c875780601f10611c5c57610100808354040283529160200191611c87565b820191906000526020600020905b815481529060010190602001808311611c6a57829003601f168201915b5050505050905090565b611c996124ba565b73ffffffffffffffffffffffffffffffffffffffff16611cb7611b75565b73ffffffffffffffffffffffffffffffffffffffff1614611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0490614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d775750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad906147c0565b60405180910390fd5b81604860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080604960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611e4e611e476124ba565b83836131ee565b5050565b604660009054906101000a900460ff1681565b611e76611e706124ba565b836126c9565b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90614a69565b60405180910390fd5b611ec18484848461335b565b50505050565b604860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611ef8826125a4565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e906153f7565b60405180910390fd5b603d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633cfdafd383604760008681526020019081526020016000206040518363ffffffff1660e01b8152600401611fa6929190615580565b600060405180830381865afa158015611fc3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611fec919061564a565b9050919050565b611ffb6124ba565b73ffffffffffffffffffffffffffffffffffffffff16612019611b75565b73ffffffffffffffffffffffffffffffffffffffff161461206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690614754565b60405180910390fd5b806045819055507f5eff5bfbbcd368d29167922a6a1271d4872e0160b274c36bc5f5b5aff168f371816040516120a59190614131565b60405180910390a150565b6120b86124ba565b73ffffffffffffffffffffffffffffffffffffffff166120d6611b75565b73ffffffffffffffffffffffffffffffffffffffff161461212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906147c0565b60405180910390fd5b80603e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60455481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60476020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b6002600b541415612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614ad5565b60405180910390fd5b6002600b81905550604860009054906101000a900460ff16156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f906156df565b60405180910390fd5b6123b0612c68565b6123b8612ace565b6001600b81905550565b6123ca6124ba565b73ffffffffffffffffffffffffffffffffffffffff166123e8611b75565b73ffffffffffffffffffffffffffffffffffffffff161461243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590614754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a590615771565b60405180910390fd5b6124b781613128565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061259d575061259c826133b7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126838361175b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d4826125a4565b612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90615803565b60405180910390fd5b600061271e8361175b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278d57508373ffffffffffffffffffffffffffffffffffffffff1661277584610bf6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279e575061279d81856121e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c78261175b565b73ffffffffffffffffffffffffffffffffffffffff161461281d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281490615895565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490615927565b60405180910390fd5b612898838383613421565b6128a3600082612610565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f39190615377565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294a9190614dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808373ffffffffffffffffffffffffffffffffffffffff168361c35090600067ffffffffffffffff811115612a3d57612a3c6144e6565b5b6040519080825280601f01601f191660200182016040528015612a6f5781602001600182028036833780820191505090505b50604051612a7d919061598e565b600060405180830381858888f193505050503d8060008114612abb576040519150601f19603f3d011682016040523d82523d6000602084013e612ac0565b606091505b505090508091505092915050565b6000612ad8613535565b905060004390506000603d60009054906101000a900461ffff1661ffff1682612b019190614dc5565b905060405180610100016040528084815260200160008152602001838152602001828152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001603260ff168152602001603260ff1681526020016000151581525060406000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160040160146101000a81548160ff021916908360ff16021790555060c08201518160040160156101000a81548160ff021916908360ff16021790555060e08201518160040160166101000a81548160ff021916908315150217905550905050827f7e0e356457a92dacd3760ddf327a24dd226c6ca01b2cc41a7fd6f28469c7ab9b60405160405180910390a2505050565b60006040805180610100016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016004820160149054906101000a900460ff1660ff1660ff1681526020016004820160159054906101000a900460ff1660ff1660ff1681526020016004820160169054906101000a900460ff1615151515815250509050600081604001511415612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b906159f1565b60405180910390fd5b8060e0015115612dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd090615a5d565b60405180910390fd5b8060600151431015612e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1790615ac9565b60405180910390fd5b6001604060040160166101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff161415612e8957612e848160000151611559565b612ea4565b612ea3612e94611b75565b82608001518360000151610db4565b5b600081602001511115612fcc57612eff604860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660648360a0015160ff168460200151612ef09190614d0b565b612efa9190614d94565b612a03565b612f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3590614ef9565b60405180910390fd5b612f8c604960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660648360c0015160ff168460200151612f7d9190614d0b565b612f879190614d94565b612a03565b612fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc290614ef9565b60405180910390fd5b5b80600001517ff3f2616e1974d63dd639b6a9ee3bb862a76b9bb4909e0a92a1e95b475e3821b7826080015183602001514260405161300c93929190615b0a565b60405180910390a250565b60006130228261175b565b905061303081600084613421565b61303b600083612610565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308b9190615377565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561325d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325490615b8d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161334e9190613f47565b60405180910390a3505050565b6133668484846127a7565b6133728484848461371b565b6133b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a890615c1f565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61342c8383836138a3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561346f5761346a816138a8565b6134ae565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134ad576134ac83826138f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f1576134ec81613a5e565b613530565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461352f5761352e8282613b2f565b5b5b505050565b600080603e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663422e2e99603f54603d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016135b9929190615c3f565b60a060405180830381865afa1580156135d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135fa9190615d25565b90506000603f54905061360d3382613bae565b603f600081548092919061362090615d52565b9190505550816047600083815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff160217905550905050809250505090565b600061373c8473ffffffffffffffffffffffffffffffffffffffff16613bcc565b15613896578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137656124ba565b8786866040518563ffffffff1660e01b81526004016137879493929190615de5565b6020604051808303816000875af19250505080156137c357506040513d601f19601f820116820180604052508101906137c09190615e46565b60015b613846573d80600081146137f3576040519150601f19603f3d011682016040523d82523d6000602084013e6137f8565b606091505b5060008151141561383e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383590615c1f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061389b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138fe84611833565b6139089190615377565b90506000600760008481526020019081526020016000205490508181146139ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a729190615377565b9050600060096000848152602001908152602001600020549050600060088381548110613aa257613aa161514c565b5b906000526020600020015490508060088381548110613ac457613ac361514c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b1357613b12615e73565b5b6001900381819060005260206000200160009055905550505050565b6000613b3a83611833565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613bc8828260405180602001604052806000815250613bdf565b5050565b600080823b905060008111915050919050565b613be98383613c3a565b613bf6600084848461371b565b613c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c2c90615c1f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca190615eee565b60405180910390fd5b613cb3816125a4565b15613cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cea90615f5a565b60405180910390fd5b613cff60008383613421565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d4f9190614dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4782613e1c565b9050919050565b613e5781613e3c565b8114613e6257600080fd5b50565b600081359050613e7481613e4e565b92915050565b600060208284031215613e9057613e8f613e12565b5b6000613e9e84828501613e65565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613edc81613ea7565b8114613ee757600080fd5b50565b600081359050613ef981613ed3565b92915050565b600060208284031215613f1557613f14613e12565b5b6000613f2384828501613eea565b91505092915050565b60008115159050919050565b613f4181613f2c565b82525050565b6000602082019050613f5c6000830184613f38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f9c578082015181840152602081019050613f81565b83811115613fab576000848401525b50505050565b6000601f19601f8301169050919050565b6000613fcd82613f62565b613fd78185613f6d565b9350613fe7818560208601613f7e565b613ff081613fb1565b840191505092915050565b600060208201905081810360008301526140158184613fc2565b905092915050565b6000819050919050565b6140308161401d565b811461403b57600080fd5b50565b60008135905061404d81614027565b92915050565b60006020828403121561406957614068613e12565b5b60006140778482850161403e565b91505092915050565b61408981613e3c565b82525050565b60006020820190506140a46000830184614080565b92915050565b600080604083850312156140c1576140c0613e12565b5b60006140cf85828601613e65565b92505060206140e08582860161403e565b9150509250929050565b600061ffff82169050919050565b614101816140ea565b82525050565b600060208201905061411c60008301846140f8565b92915050565b61412b8161401d565b82525050565b60006020820190506141466000830184614122565b92915050565b60008060006060848603121561416557614164613e12565b5b600061417386828701613e65565b935050602061418486828701613e65565b92505060406141958682870161403e565b9150509250925092565b600060ff82169050919050565b6141b58161419f565b81146141c057600080fd5b50565b6000813590506141d2816141ac565b92915050565b6000806000606084860312156141f1576141f0613e12565b5b60006141ff8682870161403e565b9350506020614210868287016141c3565b9250506040614221868287016141c3565b9150509250925092565b6000819050919050565b600061425061424b61424684613e1c565b61422b565b613e1c565b9050919050565b600061426282614235565b9050919050565b600061427482614257565b9050919050565b61428481614269565b82525050565b600060208201905061429f600083018461427b565b92915050565b6000602082840312156142bb576142ba613e12565b5b60006142c9848285016141c3565b91505092915050565b60006142dd82614257565b9050919050565b6142ed816142d2565b82525050565b600060208201905061430860008301846142e4565b92915050565b614317816140ea565b811461432257600080fd5b50565b6000813590506143348161430e565b92915050565b6000602082840312156143505761434f613e12565b5b600061435e84828501614325565b91505092915050565b600061437282613e1c565b9050919050565b61438281614367565b82525050565b6143918161419f565b82525050565b6000610100820190506143ad600083018b614122565b6143ba602083018a614122565b6143c76040830189614122565b6143d46060830188614122565b6143e16080830187614379565b6143ee60a0830186614388565b6143fb60c0830185614388565b61440860e0830184613f38565b9998505050505050505050565b6000806040838503121561442c5761442b613e12565b5b600061443a85828601613e65565b925050602061444b85828601613e65565b9150509250929050565b61445e81613f2c565b811461446957600080fd5b50565b60008135905061447b81614455565b92915050565b6000806040838503121561449857614497613e12565b5b60006144a685828601613e65565b92505060206144b78582860161446c565b9150509250929050565b60006020820190506144d66000830184614388565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61451e82613fb1565b810181811067ffffffffffffffff8211171561453d5761453c6144e6565b5b80604052505050565b6000614550613e08565b905061455c8282614515565b919050565b600067ffffffffffffffff82111561457c5761457b6144e6565b5b61458582613fb1565b9050602081019050919050565b82818337600083830152505050565b60006145b46145af84614561565b614546565b9050828152602081018484840111156145d0576145cf6144e1565b5b6145db848285614592565b509392505050565b600082601f8301126145f8576145f76144dc565b5b81356146088482602086016145a1565b91505092915050565b6000806000806080858703121561462b5761462a613e12565b5b600061463987828801613e65565b945050602061464a87828801613e65565b935050604061465b8782880161403e565b925050606085013567ffffffffffffffff81111561467c5761467b613e17565b5b614688878288016145e3565b91505092959194509250565b600065ffffffffffff82169050919050565b6146af81614694565b82525050565b600060a0820190506146ca60008301886146a6565b6146d760208301876146a6565b6146e460408301866146a6565b6146f160608301856146a6565b6146fe60808301846146a6565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061473e602083613f6d565b915061474982614708565b602082019050919050565b6000602082019050818103600083015261476d81614731565b9050919050565b7f5a45524f20414444524553530000000000000000000000000000000000000000600082015250565b60006147aa600c83613f6d565b91506147b582614774565b602082019050919050565b600060208201905081810360008301526147d98161479d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061482757607f821691505b6020821081141561483b5761483a6147e0565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061489d602c83613f6d565b91506148a882614841565b604082019050919050565b600060208201905081810360008301526148cc81614890565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061492f602183613f6d565b915061493a826148d3565b604082019050919050565b6000602082019050818103600083015261495e81614922565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006149c1603883613f6d565b91506149cc82614965565b604082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a53603183613f6d565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614abf601f83613f6d565b9150614aca82614a89565b602082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f476e6172206e6f7420757020666f722061756374696f6e000000000000000000600082015250565b6000614b2b601783613f6d565b9150614b3682614af5565b602082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9b8261419f565b9150614ba68361419f565b92508260ff03821115614bbc57614bbb614b61565b5b828201905092915050565b7f53756d206f662070657263656e7473206973206e6f7420313030000000000000600082015250565b6000614bfd601a83613f6d565b9150614c0882614bc7565b602082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f41756374696f6e20657870697265640000000000000000000000000000000000600082015250565b6000614c69600f83613f6d565b9150614c7482614c33565b602082019050919050565b60006020820190508181036000830152614c9881614c5c565b9050919050565b7f4d7573742073656e64206174206c656173742072657365727665507269636500600082015250565b6000614cd5601f83613f6d565b9150614ce082614c9f565b602082019050919050565b60006020820190508181036000830152614d0481614cc8565b9050919050565b6000614d168261401d565b9150614d218361401d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5a57614d59614b61565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d9f8261401d565b9150614daa8361401d565b925082614dba57614db9614d65565b5b828204905092915050565b6000614dd08261401d565b9150614ddb8361401d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e1057614e0f614b61565b5b828201905092915050565b7f4d7573742073656e64206d6f7265207468616e206c617374206269642062792060008201527f6d696e426964496e6372656d656e7450657263656e7461676520616d6f756e74602082015250565b6000614e77604083613f6d565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000614ee3601383613f6d565b9150614eee82614ead565b602082019050919050565b60006020820190508181036000830152614f1281614ed6565b9050919050565b6000606082019050614f2e6000830186614080565b614f3b6020830185614122565b614f486040830184614122565b949350505050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614fac602b83613f6d565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b7f416c72656164792041756374696f6e2072756e6e696e67000000000000000000600082015250565b6000615018601783613f6d565b915061502382614fe2565b602082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f41756374696f6e20616c72656164792073746172746564000000000000000000600082015250565b6000615084601783613f6d565b915061508f8261504e565b602082019050919050565b600060208201905081810360008301526150b381615077565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615116602c83613f6d565b9150615121826150ba565b604082019050919050565b6000602082019050818103600083015261514581615109565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006151d7602983613f6d565b91506151e28261517b565b604082019050919050565b60006020820190508181036000830152615206816151ca565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615269602a83613f6d565b91506152748261520d565b604082019050919050565b600060208201905081810360008301526152988161525c565b9050919050565b7f416c726561647920506175736564000000000000000000000000000000000000600082015250565b60006152d5600e83613f6d565b91506152e08261529f565b602082019050919050565b60006020820190508181036000830152615304816152c8565b9050919050565b7f4e6f2072656d61696e20626c6f636b7321000000000000000000000000000000600082015250565b6000615341601183613f6d565b915061534c8261530b565b602082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b60006153828261401d565b915061538d8361401d565b9250828210156153a05761539f614b61565b5b828203905092915050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006153e1601183613f6d565b91506153ec826153ab565b602082019050919050565b60006020820190508181036000830152615410816153d4565b9050919050565b60008160001c9050919050565b600065ffffffffffff82169050919050565b600061544961544483615417565b615424565b9050919050565b61545981614694565b82525050565b60008160301c9050919050565b600061547f61547a8361545f565b615424565b9050919050565b60008160601c9050919050565b60006154a66154a183615486565b615424565b9050919050565b60008160901c9050919050565b60006154cd6154c8836154ad565b615424565b9050919050565b60008160c01c9050919050565b60006154f46154ef836154d4565b615424565b9050919050565b60a08201600080830154905061551081615436565b61551d6000860182615450565b506155278161546c565b6155346020860182615450565b5061553e81615493565b61554b6040860182615450565b50615555816154ba565b6155626060860182615450565b5061556c816154e1565b6155796080860182615450565b5050505050565b600060c0820190506155956000830185614122565b6155a260208301846154fb565b9392505050565b600067ffffffffffffffff8211156155c4576155c36144e6565b5b6155cd82613fb1565b9050602081019050919050565b60006155ed6155e8846155a9565b614546565b905082815260208101848484011115615609576156086144e1565b5b615614848285613f7e565b509392505050565b600082601f830112615631576156306144dc565b5b81516156418482602086016155da565b91505092915050565b6000602082840312156156605761565f613e12565b5b600082015167ffffffffffffffff81111561567e5761567d613e17565b5b61568a8482850161561c565b91505092915050565b7f41756374696f6e20697320706175736564000000000000000000000000000000600082015250565b60006156c9601183613f6d565b91506156d482615693565b602082019050919050565b600060208201905081810360008301526156f8816156bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061575b602683613f6d565b9150615766826156ff565b604082019050919050565b6000602082019050818103600083015261578a8161574e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006157ed602c83613f6d565b91506157f882615791565b604082019050919050565b6000602082019050818103600083015261581c816157e0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061587f602983613f6d565b915061588a82615823565b604082019050919050565b600060208201905081810360008301526158ae81615872565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615911602483613f6d565b915061591c826158b5565b604082019050919050565b6000602082019050818103600083015261594081615904565b9050919050565b600081519050919050565b600081905092915050565b600061596882615947565b6159728185615952565b9350615982818560208601613f7e565b80840191505092915050565b600061599a828461595d565b915081905092915050565b7f41756374696f6e206861736e277420626567756e000000000000000000000000600082015250565b60006159db601483613f6d565b91506159e6826159a5565b602082019050919050565b60006020820190508181036000830152615a0a816159ce565b9050919050565b7f41756374696f6e2068617320616c7265616479206265656e20736574746c6564600082015250565b6000615a47602083613f6d565b9150615a5282615a11565b602082019050919050565b60006020820190508181036000830152615a7681615a3a565b9050919050565b7f41756374696f6e206861736e277420636f6d706c657465640000000000000000600082015250565b6000615ab3601883613f6d565b9150615abe82615a7d565b602082019050919050565b60006020820190508181036000830152615ae281615aa6565b9050919050565b6000615af482614257565b9050919050565b615b0481615ae9565b82525050565b6000606082019050615b1f6000830186615afb565b615b2c6020830185614122565b615b396040830184614122565b949350505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615b77601983613f6d565b9150615b8282615b41565b602082019050919050565b60006020820190508181036000830152615ba681615b6a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c09603283613f6d565b9150615c1482615bad565b604082019050919050565b60006020820190508181036000830152615c3881615bfc565b9050919050565b6000604082019050615c546000830185614122565b615c61602083018461427b565b9392505050565b600080fd5b615c7681614694565b8114615c8157600080fd5b50565b600081519050615c9381615c6d565b92915050565b600060a08284031215615caf57615cae615c68565b5b615cb960a0614546565b90506000615cc984828501615c84565b6000830152506020615cdd84828501615c84565b6020830152506040615cf184828501615c84565b6040830152506060615d0584828501615c84565b6060830152506080615d1984828501615c84565b60808301525092915050565b600060a08284031215615d3b57615d3a613e12565b5b6000615d4984828501615c99565b91505092915050565b6000615d5d8261401d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d9057615d8f614b61565b5b600182019050919050565b600082825260208201905092915050565b6000615db782615947565b615dc18185615d9b565b9350615dd1818560208601613f7e565b615dda81613fb1565b840191505092915050565b6000608082019050615dfa6000830187614080565b615e076020830186614080565b615e146040830185614122565b8181036060830152615e268184615dac565b905095945050505050565b600081519050615e4081613ed3565b92915050565b600060208284031215615e5c57615e5b613e12565b5b6000615e6a84828501615e31565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615ed8602083613f6d565b9150615ee382615ea2565b602082019050919050565b60006020820190508181036000830152615f0781615ecb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615f44601c83613f6d565b9150615f4f82615f0e565b602082019050919050565b60006020820190508181036000830152615f7381615f37565b905091905056fea26469706673582212208c8af0a0a67e3a0096d3bb6c69a3e25de96fe4cb0d220524394ad2e617d0e15564736f6c634300080b0033

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

00000000000000000000000073222225044ce0fc672ff9b6f9730d0a0421382c0000000000000000000000001f873636cb05a52b9efd2625dbf9383e26b2e4e9000000000000000000000000356ed178c62a251136d883f01e1b84cf6980aea80000000000000000000000003c7901a03f9c37af91f308b8f9af92fbc55f61a5000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : _skate (address): 0x73222225044cE0FC672Ff9b6F9730D0a0421382C
Arg [1] : _dao (address): 0x1F873636cb05A52b9EFd2625DBf9383E26b2e4E9
Arg [2] : _descriptor (address): 0x356ED178c62a251136D883f01e1B84CF6980AEa8
Arg [3] : _seeder (address): 0x3c7901a03F9c37Af91F308B8f9AF92fBc55F61a5
Arg [4] : _reservePrice (uint256): 10000000000000000
Arg [5] : _minBidIncrementPercentage (uint8): 5

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000073222225044ce0fc672ff9b6f9730d0a0421382c
Arg [1] : 0000000000000000000000001f873636cb05a52b9efd2625dbf9383e26b2e4e9
Arg [2] : 000000000000000000000000356ed178c62a251136d883f01e1b84cf6980aea8
Arg [3] : 0000000000000000000000003c7901a03f9c37af91f308b8f9af92fbc55f61a5
Arg [4] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005


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.