ETH Price: $3,360.58 (-1.62%)
Gas: 8 Gwei

Token

CanineCartel (CARTEL)
 

Overview

Max Total Supply

10,000 CARTEL

Holders

4,304

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CARTEL
0x920976068920991B9E47c4122b6d62803756C027
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Canine NFT is a unique ERC-721 digital collectible living on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CanineCartel

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : CanineCartel.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
- .... . ....... -.. --- --. ... ....... -- .- -.-- ....... .... .- ...- . ....... .... .- -.. ....... - .... . .. .-. ....... -.. .- -.-- --..-- ....... -... ..- - ....... ..- ... ....... -.-. .- - ... ....... .- .-. . ....... .... . .-. . ....... - --- ....... ... - .- -.-- ....... -....- ....... - .... . ....... .-. . ... .. ... - .- -. -.-. .
*/

contract CanineCartel is Ownable, ERC721 {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public mintPrice = 0.05 ether;
    uint256 public mintLimit = 20;

    uint256 public supplyLimit;
    bool public saleActive = false;

    uint256 namingPrice = 0 ether;

    address public wallet1Address;
    address public wallet2Address;
    address public wallet3Address;

    uint8 public wallet1Share = 33;
    uint8 public wallet2Share = 50;
    uint8 public wallet3Share = 17;

    uint8 public charLimit = 32;

    mapping(uint256 => uint256) public tokenStyle;
    mapping(uint256 => bool) public allowedStyles;
    mapping(uint256 => uint256) public stylePrice;

    string public baseURI = "";

    uint256 public totalSupply = 0;
    bool public namingAllowed = false;

    /********* Events - Start *********/
    event wallet1AddressChanged(address _wallet1);
    event wallet2AddressChanged(address _wallet2);
    event wallet3AddressChanged(address _wallet3);

    event SharesChanged(uint8 _value1, uint8 _value2, uint8 _value3);

    event SaleStateChanged(bool _state);
    event SupplyLimitChanged(uint256 _supplyLimit);
    event MintLimitChanged(uint256 _mintLimit);
    event MintPriceChanged(uint256 _mintPrice);
    event BaseURIChanged(string _baseURI);
    event CanineMinted(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ReserveCanines(uint256 _numberOfTokens);

    event StyleChanged(uint256 _tokenId, uint256 _styleId);
    event NameChanged(uint256 _tokenId, string _name);
    event StyleAdded(uint256 _id);
    event StyleRemoved(uint256 _id);
    event StylePriceChanged(uint256 _styleId, uint256 _price);
    event NamingPriceChanged(uint256 _price);
    event NamingStateChanged(bool _namingAllowed);
    /********* Events - Ends *********/

    constructor(
        uint256 tokenSupplyLimit,
        string memory _baseURI
    ) ERC721("CanineCartel", "CARTEL") {
        
        supplyLimit = tokenSupplyLimit;
        wallet1Address = owner();
        wallet2Address = owner();
        wallet3Address = owner();

        baseURI = _baseURI;
        allowedStyles[0] = true;
        
        emit NamingPriceChanged(namingPrice);
        emit SupplyLimitChanged(supplyLimit);
        emit MintLimitChanged(mintLimit);
        emit MintPriceChanged(mintPrice);
        emit SharesChanged(wallet1Share, wallet2Share, wallet3Share);
        emit BaseURIChanged(_baseURI);
        emit StyleAdded(0);
        emit NamingStateChanged(true);
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? 
        string(abi.encodePacked(baseURI, tokenStyle[tokenId].toString(), "/", tokenId.toString())) : "";
    }

    function setCharacterLimit(uint8 _charLimit) external onlyOwner {
        charLimit = _charLimit;
    }

    function toggleNaming(bool _namingAllowed) external onlyOwner {
        namingAllowed = _namingAllowed;
        emit NamingStateChanged(_namingAllowed);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
        emit BaseURIChanged(_baseURI);
    }

    function setWallet_1(address _address) external onlyOwner{
        wallet1Address = _address;
        emit wallet1AddressChanged(_address);
    }

    function setWallet_2(address _address) external onlyOwner{
        wallet2Address = _address;
        transferOwnership(_address);
        emit wallet2AddressChanged(_address);
    }

    function setWallet_3(address _address) external onlyOwner{
        wallet3Address = _address;
        emit wallet3AddressChanged(_address);
    }

    function changeWalletShares(uint8 _value1, uint8 _value2, uint8 _value3) external onlyOwner{
        require(_value1 + _value2 + _value3 == 100, "Shares are not adding up to 100.");
        wallet1Share = _value1;
        wallet2Share = _value2;
        wallet3Share = _value3;
        emit SharesChanged(_value1, _value2, _value3);
    }

    function toggleSaleActive() external onlyOwner {
        saleActive = !saleActive;
        emit SaleStateChanged(saleActive);
    }

    function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner {
        require(_supplyLimit >= totalSupply, "Value should be greater currently minted canines.");
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    function changeMintLimit(uint256 _mintLimit) external onlyOwner {
        mintLimit = _mintLimit;
        emit MintLimitChanged(_mintLimit);
    }

    function changeMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
        emit MintPriceChanged(_mintPrice);
    }

    function buyCanines(uint _numberOfTokens) external payable {
        require(saleActive, "Sale is not active.");
        require(_numberOfTokens <= mintLimit, "Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_numberOfTokens), "Insufficient payment.");

        _mintCanines(_numberOfTokens);
    }

    function _mintCanines(uint _numberOfTokens) internal {
        require(totalSupply.add(_numberOfTokens) <= supplyLimit, "Not enough tokens left.");

        uint256 newId = totalSupply;
        for(uint i = 0; i < _numberOfTokens; i++) {
            newId += 1;
            totalSupply = totalSupply.add(1);

            _safeMint(msg.sender, newId);
            emit CanineMinted(msg.sender, newId, tokenURI(newId));
        }
    }

    function reserveCanines(uint256 _numberOfTokens) external onlyOwner {
        _mintCanines(_numberOfTokens);
        emit ReserveCanines(_numberOfTokens);
    }

    /*
        thio function will send contract balance to its share holders
        according to their shares.
    */
    function _withdraw() internal {
        require(address(this).balance > 0, "No balance to withdraw.");
        uint256 _amount = address(this).balance;
        (bool wallet1Success, ) = wallet1Address.call{value: _amount.mul(wallet1Share).div(100)}("");
        (bool wallet2Success, ) = wallet2Address.call{value: _amount.mul(wallet2Share).div(100)}("");
        (bool wallet3Success, ) = wallet3Address.call{value: _amount.mul(wallet3Share).div(100)}("");
        
        require(wallet1Success && wallet2Success && wallet3Success, "Withdrawal failed.");
    }

    /**
     * This function changes the price of the particular style implemented
     * param _styleId: style number
     * param _price: price of style change
    */
    function setStylePrice(uint256 _styleId, uint256 _price) external onlyOwner {
        require(allowedStyles[_styleId], "Style is not allowed.");
        stylePrice[_styleId] = _price;
        emit StylePriceChanged(_styleId, _price);
    }

    /**
     * This function changes the style of the particular token
     * param _namingPrice: The price for naming your canine
    */
    function setNamingPrice(uint256 _namingPrice) external onlyOwner {
        namingPrice = _namingPrice;
        emit NamingPriceChanged(_namingPrice);
    }

    /**
     * This function changes the style of the particular token
     * param _styleId: style number
     * param _tokenId: tokenId
    */
    function changeStyle(uint256 _styleId, uint256 _tokenId) external payable {
        require(ownerOf(_tokenId) == msg.sender, "Only owner of NFT can change name.");
        require(allowedStyles[_styleId], "Style is not allowed.");
        require(stylePrice[_styleId] >= msg.value, "Price is incorrect");

        tokenStyle[_tokenId] = _styleId;
        emit StyleChanged(_tokenId, _styleId);
    }

    /*
        This function is used to add styles
        param _id: style number
        param _URI: string URI
    */
    function addStyle(uint256 _styleId) external onlyOwner {
        require(_styleId >= 0 && !allowedStyles[_styleId], "Invalid style Id.");
        
        allowedStyles[_styleId] = true;
        emit StyleAdded(_styleId);
    }

    /*
        This function is used to remove styles
        param _id: style number
    */
    function removeStyle(uint256 _styleId) external onlyOwner {
        require(_styleId > 0 && allowedStyles[_styleId], "Invalid style Id.");
        
        allowedStyles[_styleId] = false;
        emit StyleRemoved(_styleId);
    }

     /*
        This function is used to change NFT name
        param _tokenId: tokenId
        param _name: name
    */
    function nameNFT(uint256 _tokenId, string memory _name) external payable {
        require(msg.value == namingPrice, "Incorrect price paid.");
        require(namingAllowed, "Naming is disabled.");
        require(ownerOf(_tokenId) == msg.sender, "Only owner of NFT can change name.");
        require(bytes(_name).length <= charLimit, "Name exceeds characters limit.");
        emit NameChanged(_tokenId, _name);
    }

    /*
        This function will send all contract balance to its contract owner.
    */
    function emergencyWithdraw() external onlyOwner {
        require(address(this).balance > 0, "No funds in smart Contract.");
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Withdraw Failed.");
    }

    /*
        This function will call _withdraw() function.
        any of the one shareholder can call this function.
    */
    function withdrawAll() external {
        require(msg.sender == wallet1Address || msg.sender == wallet2Address || msg.sender == wallet3Address, "Only share holders can call this method.");
        _withdraw();
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 4 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"tokenSupplyLimit","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"}],"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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"CanineMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"NamingPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_namingAllowed","type":"bool"}],"name":"NamingStateChanged","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":"_numberOfTokens","type":"uint256"}],"name":"ReserveCanines","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"_value1","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_value2","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_value3","type":"uint8"}],"name":"SharesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"StyleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_styleId","type":"uint256"}],"name":"StyleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_styleId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"StylePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"StyleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet1","type":"address"}],"name":"wallet1AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet2","type":"address"}],"name":"wallet2AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet3","type":"address"}],"name":"wallet3AddressChanged","type":"event"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"}],"name":"addStyle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedStyles","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"buyCanines","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"changeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"changeStyle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_value1","type":"uint8"},{"internalType":"uint8","name":"_value2","type":"uint8"},{"internalType":"uint8","name":"_value3","type":"uint8"}],"name":"changeWalletShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charLimit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"nameNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"namingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"}],"name":"removeStyle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"reserveCanines","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_charLimit","type":"uint8"}],"name":"setCharacterLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_namingPrice","type":"uint256"}],"name":"setNamingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_styleId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setStylePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stylePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_namingAllowed","type":"bool"}],"name":"toggleNaming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenStyle","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":"wallet1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet1Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet3Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet3Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec5000060075560146008556000600a60006101000a81548160ff0219169083151502179055506000600b556021600e60146101000a81548160ff021916908360ff1602179055506032600e60156101000a81548160ff021916908360ff1602179055506011600e60166101000a81548160ff021916908360ff1602179055506020600e60176101000a81548160ff021916908360ff1602179055506040518060200160405280600081525060129080519060200190620000cb9291906200061b565b5060006013556000601460006101000a81548160ff021916908315150217905550348015620000f957600080fd5b50604051620068693803806200686983398181016040528101906200011f919062000754565b6040518060400160405280600c81526020017f43616e696e6543617274656c00000000000000000000000000000000000000008152506040518060400160405280600681526020017f43415254454c0000000000000000000000000000000000000000000000000000815250620001ab6200019f6200052660201b60201c565b6200052e60201b60201c565b8160019080519060200190620001c39291906200061b565b508060029080519060200190620001dc9291906200061b565b50505081600981905550620001f6620005f260201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000246620005f260201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000296620005f260201b60201c565b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060129080519060200190620002ee9291906200061b565b5060016010600080815260200190815260200160002060006101000a81548160ff0219169083151502179055507f4c9664b26dac29ad37dc5d246f6d23b260bd682a0179c9dd803e6643fc39ab96600b546040516200034e919062000891565b60405180910390a17f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0760095460405162000389919062000891565b60405180910390a17f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab600854604051620003c4919062000891565b60405180910390a17f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f600754604051620003ff919062000891565b60405180910390a17f8c420f9dfa0c9ce57a520f1a0808c3a3f11bc720613ef82d4c52095749ba2b31600e60149054906101000a900460ff16600e60159054906101000a900460ff16600e60169054906101000a900460ff166040516200046993929190620008ae565b60405180910390a17f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051620004a291906200086d565b60405180910390a17f0fbf9d62c56adf188a275d5f7a102eef44f9a934c1625f86996a96f005efa9cf6000604051620004dc919062000850565b60405180910390a17f83bbab4027fa9736c47ba53472f66ce0a0564aa42d70db3e3e3c11b2eb793d19600160405162000516919062000833565b60405180910390a1505062000ac8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200062990620009d3565b90600052602060002090601f0160209004810192826200064d576000855562000699565b82601f106200066857805160ff191683800117855562000699565b8280016001018555821562000699579182015b82811115620006985782518255916020019190600101906200067b565b5b509050620006a89190620006ac565b5090565b5b80821115620006c7576000816000905550600101620006ad565b5090565b6000620006e2620006dc8462000914565b620008eb565b905082815260208101848484011115620006fb57600080fd5b620007088482856200099d565b509392505050565b600082601f8301126200072257600080fd5b815162000734848260208601620006cb565b91505092915050565b6000815190506200074e8162000aae565b92915050565b600080604083850312156200076857600080fd5b600062000778858286016200073d565b925050602083015167ffffffffffffffff8111156200079657600080fd5b620007a48582860162000710565b9150509250929050565b620007b98162000966565b82525050565b620007ca8162000989565b82525050565b6000620007dd826200094a565b620007e9818562000955565b9350620007fb8185602086016200099d565b620008068162000a9d565b840191505092915050565b6200081c8162000972565b82525050565b6200082d816200097c565b82525050565b60006020820190506200084a6000830184620007ae565b92915050565b6000602082019050620008676000830184620007bf565b92915050565b60006020820190508181036000830152620008898184620007d0565b905092915050565b6000602082019050620008a8600083018462000811565b92915050565b6000606082019050620008c5600083018662000822565b620008d4602083018562000822565b620008e3604083018462000822565b949350505050565b6000620008f76200090a565b905062000905828262000a09565b919050565b6000604051905090565b600067ffffffffffffffff82111562000932576200093162000a6e565b5b6200093d8262000a9d565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b6000819050919050565b600060ff82169050919050565b6000620009968262000972565b9050919050565b60005b83811015620009bd578082015181840152602081019050620009a0565b83811115620009cd576000848401525b50505050565b60006002820490506001821680620009ec57607f821691505b6020821081141562000a035762000a0262000a3f565b5b50919050565b62000a148262000a9d565b810181811067ffffffffffffffff8211171562000a365762000a3562000a6e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000ab98162000972565b811462000ac557600080fd5b50565b615d918062000ad86000396000f3fe6080604052600436106103355760003560e01c80636c0360eb116101ab578063a22cb465116100f7578063e11dc47311610095578063f08b5fae1161006f578063f08b5fae14610b9c578063f2fde38b14610bc5578063f75cad5114610bee578063ff16d1df14610c0a57610335565b8063e11dc47314610b09578063e7adeccc14610b34578063e985e9c514610b5f57610335565b8063c87b56dd116100d1578063c87b56dd14610a63578063d44e357314610aa0578063d511519714610ac9578063db2e21bc14610af257610335565b8063a22cb465146109e8578063b88d4fde14610a11578063bc37681e14610a3a57610335565b8063853828b61161016457806395d89b411161013e57806395d89b411461093c57806398ba541214610967578063996517cf146109925780639a13a7ec146109bd57610335565b8063853828b6146108d15780638da5cb5b146108e85780639225de641461091357610335565b80636c0360eb146107e25780636f5286d71461080d57806370a0823114610829578063710b469a14610866578063712ad5cc14610891578063715018a6146108ba57610335565b806334259b5c1161028557806355f804b3116102235780635c0c370f116101fd5780635c0c370f146107245780636352211e1461074f5780636817c76c1461078c57806368428a1b146107b757610335565b806355f804b3146106a257806359af2ba1146106cb5780635a409fd71461070857610335565b806342842e0e1161025f57806342842e0e146105ea578063475fad22146106135780635325fafd1461063c578063555dc7091461066557610335565b806334259b5c1461056d578063387c4167146105965780633fd17366146105c157610335565b806316afd7be116102f257806321822fed116102cc57806321822fed146104db57806323b872dd146105045780632cd295641461052d5780633100a5351461055657610335565b806316afd7be1461045c57806318160ddd1461048557806319d1997a146104b057610335565b806301ffc9a71461033a578063051c0db41461037757806306fdde03146103a2578063081812fc146103cd578063095ea7b31461040a578063128cf3f814610433575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c919061423e565b610c47565b60405161036e9190614b04565b60405180910390f35b34801561038357600080fd5b5061038c610d29565b6040516103999190614ff5565b60405180910390f35b3480156103ae57600080fd5b506103b7610d3c565b6040516103c49190614b1f565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef91906142d1565b610dce565b6040516104019190614a9d565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906141d9565b610e53565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061406e565b610f6b565b005b34801561046857600080fd5b50610483600480360381019061047e91906142d1565b61106b565b005b34801561049157600080fd5b5061049a6111b9565b6040516104a79190614f81565b60405180910390f35b3480156104bc57600080fd5b506104c56111bf565b6040516104d29190614f81565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd919061406e565b6111c5565b005b34801561051057600080fd5b5061052b600480360381019061052691906140d3565b6112bc565b005b34801561053957600080fd5b50610554600480360381019061054f91906142d1565b61131c565b005b34801561056257600080fd5b5061056b6113d9565b005b34801561057957600080fd5b50610594600480360381019061058f91906142d1565b6114c7565b005b3480156105a257600080fd5b506105ab611584565b6040516105b89190614a9d565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e391906142d1565b6115aa565b005b3480156105f657600080fd5b50610611600480360381019061060c91906140d3565b611667565b005b34801561061f57600080fd5b5061063a600480360381019061063591906143b3565b611687565b005b34801561064857600080fd5b50610663600480360381019061065e919061438a565b6117f0565b005b34801561067157600080fd5b5061068c600480360381019061068791906142d1565b61188a565b6040516106999190614b04565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190614290565b6118aa565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906142d1565b611977565b6040516106ff9190614f81565b60405180910390f35b610722600480360381019061071d919061434e565b61198f565b005b34801561073057600080fd5b50610739611b10565b6040516107469190614b04565b60405180910390f35b34801561075b57600080fd5b50610776600480360381019061077191906142d1565b611b23565b6040516107839190614a9d565b60405180910390f35b34801561079857600080fd5b506107a1611bd5565b6040516107ae9190614f81565b60405180910390f35b3480156107c357600080fd5b506107cc611bdb565b6040516107d99190614b04565b60405180910390f35b3480156107ee57600080fd5b506107f7611bee565b6040516108049190614b1f565b60405180910390f35b610827600480360381019061082291906142fa565b611c7c565b005b34801561083557600080fd5b50610850600480360381019061084b919061406e565b611e18565b60405161085d9190614f81565b60405180910390f35b34801561087257600080fd5b5061087b611ed0565b6040516108889190614ff5565b60405180910390f35b34801561089d57600080fd5b506108b860048036038101906108b39190614215565b611ee3565b005b3480156108c657600080fd5b506108cf611fb3565b005b3480156108dd57600080fd5b506108e661203b565b005b3480156108f457600080fd5b506108fd612185565b60405161090a9190614a9d565b60405180910390f35b34801561091f57600080fd5b5061093a6004803603810190610935919061406e565b6121ae565b005b34801561094857600080fd5b506109516122a5565b60405161095e9190614b1f565b60405180910390f35b34801561097357600080fd5b5061097c612337565b6040516109899190614ff5565b60405180910390f35b34801561099e57600080fd5b506109a761234a565b6040516109b49190614f81565b60405180910390f35b3480156109c957600080fd5b506109d2612350565b6040516109df9190614ff5565b60405180910390f35b3480156109f457600080fd5b50610a0f6004803603810190610a0a919061419d565b612363565b005b348015610a1d57600080fd5b50610a386004803603810190610a339190614122565b6124e4565b005b348015610a4657600080fd5b50610a616004803603810190610a5c919061434e565b612546565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a8591906142d1565b612677565b604051610a979190614b1f565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac291906142d1565b61273c565b005b348015610ad557600080fd5b50610af06004803603810190610aeb91906142d1565b61283e565b005b348015610afe57600080fd5b50610b0761298e565b005b348015610b1557600080fd5b50610b1e612b03565b604051610b2b9190614a9d565b60405180910390f35b348015610b4057600080fd5b50610b49612b29565b604051610b569190614a9d565b60405180910390f35b348015610b6b57600080fd5b50610b866004803603810190610b819190614097565b612b4f565b604051610b939190614b04565b60405180910390f35b348015610ba857600080fd5b50610bc36004803603810190610bbe91906142d1565b612be3565b005b348015610bd157600080fd5b50610bec6004803603810190610be7919061406e565b612ca2565b005b610c086004803603810190610c0391906142d1565b612d9a565b005b348015610c1657600080fd5b50610c316004803603810190610c2c91906142d1565b612e91565b604051610c3e9190614f81565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d1257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d225750610d2182612ea9565b5b9050919050565b600e60149054906101000a900460ff1681565b606060018054610d4b90615340565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7790615340565b8015610dc45780601f10610d9957610100808354040283529160200191610dc4565b820191906000526020600020905b815481529060010190602001808311610da757829003601f168201915b5050505050905090565b6000610dd982612f13565b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90614d41565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5e82611b23565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614e01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eee612f7f565b73ffffffffffffffffffffffffffffffffffffffff161480610f1d5750610f1c81610f17612f7f565b612b4f565b5b610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614ca1565b60405180910390fd5b610f668383612f87565b505050565b610f73612f7f565b73ffffffffffffffffffffffffffffffffffffffff16610f91612185565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90614d61565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061103181612ca2565b7f9539f0adf432f6612656f7ec15ddf8a7e5835132bd4a474f39954885dbfc4554816040516110609190614a9d565b60405180910390a150565b611073612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611091612185565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614d61565b60405180910390fd5b60008111801561111457506010600082815260200190815260200160002060009054906101000a900460ff165b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614e41565b60405180910390fd5b60006010600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f68377694da626e57ab4efe5b346f62cb4c2a7dc3d84bf0b17a09717742362cdc816040516111ae9190614f81565b60405180910390a150565b60135481565b60095481565b6111cd612f7f565b73ffffffffffffffffffffffffffffffffffffffff166111eb612185565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890614d61565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcfe8d0199cafb54be527f2e63b41b75a9ecf2d411b91b457f3ac20e38fbb9215816040516112b19190614a9d565b60405180910390a150565b6112cd6112c7612f7f565b82613040565b61130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390614e61565b60405180910390fd5b61131783838361311e565b505050565b611324612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611342612185565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90614d61565b60405180910390fd5b80600b819055507f4c9664b26dac29ad37dc5d246f6d23b260bd682a0179c9dd803e6643fc39ab96816040516113ce9190614f81565b60405180910390a150565b6113e1612f7f565b73ffffffffffffffffffffffffffffffffffffffff166113ff612185565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614d61565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602600a60009054906101000a900460ff166040516114bd9190614b04565b60405180910390a1565b6114cf612f7f565b73ffffffffffffffffffffffffffffffffffffffff166114ed612185565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614d61565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab816040516115799190614f81565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115b2612f7f565b73ffffffffffffffffffffffffffffffffffffffff166115d0612185565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90614d61565b60405180910390fd5b806007819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f8160405161165c9190614f81565b60405180910390a150565b611682838383604051806020016040528060008152506124e4565b505050565b61168f612f7f565b73ffffffffffffffffffffffffffffffffffffffff166116ad612185565b73ffffffffffffffffffffffffffffffffffffffff1614611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90614d61565b60405180910390fd5b60648183856117129190615187565b61171c9190615187565b60ff161461175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690614ea1565b60405180910390fd5b82600e60146101000a81548160ff021916908360ff16021790555081600e60156101000a81548160ff021916908360ff16021790555080600e60166101000a81548160ff021916908360ff1602179055507f8c420f9dfa0c9ce57a520f1a0808c3a3f11bc720613ef82d4c52095749ba2b318383836040516117e393929190615010565b60405180910390a1505050565b6117f8612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611816612185565b73ffffffffffffffffffffffffffffffffffffffff161461186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390614d61565b60405180910390fd5b80600e60176101000a81548160ff021916908360ff16021790555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6118b2612f7f565b73ffffffffffffffffffffffffffffffffffffffff166118d0612185565b73ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90614d61565b60405180910390fd5b806012908051906020019061193c929190613e7d565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68160405161196c9190614b1f565b60405180910390a150565b600f6020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff166119af82611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90614e21565b60405180910390fd5b6010600083815260200190815260200160002060009054906101000a900460ff16611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614de1565b60405180910390fd5b3460116000848152602001908152602001600020541015611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290614f41565b60405180910390fd5b81600f6000838152602001908152602001600020819055507fe8b6c222311acdcfb38b74b9fbe783ed3c1ea1b725bb82a0a1c76a82c6ffb4d28183604051611b04929190614fcc565b60405180910390a15050565b601460009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390614ce1565b60405180910390fd5b80915050919050565b60075481565b600a60009054906101000a900460ff1681565b60128054611bfb90615340565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2790615340565b8015611c745780601f10611c4957610100808354040283529160200191611c74565b820191906000526020600020905b815481529060010190602001808311611c5757829003601f168201915b505050505081565b600b543414611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614d01565b60405180910390fd5b601460009054906101000a900460ff16611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690614ee1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611d2f83611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614e21565b60405180910390fd5b600e60179054906101000a900460ff1660ff1681511115611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290614f21565b60405180910390fd5b7f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b8282604051611e0c929190614f9c565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614cc1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60169054906101000a900460ff1681565b611eeb612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611f09612185565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690614d61565b60405180910390fd5b80601460006101000a81548160ff0219169083151502179055507f83bbab4027fa9736c47ba53472f66ce0a0564aa42d70db3e3e3c11b2eb793d1981604051611fa89190614b04565b60405180910390a150565b611fbb612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611fd9612185565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690614d61565b60405180910390fd5b612039600061337a565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120e45750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061213c5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614f61565b60405180910390fd5b61218361343e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121b6612f7f565b73ffffffffffffffffffffffffffffffffffffffff166121d4612185565b73ffffffffffffffffffffffffffffffffffffffff161461222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190614d61565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1354f2ed7ad63d510fe05b011c0f4585cc0503e5f2a9cf0ac0b2e7dc80127d5d8160405161229a9190614a9d565b60405180910390a150565b6060600280546122b490615340565b80601f01602080910402602001604051908101604052809291908181526020018280546122e090615340565b801561232d5780601f106123025761010080835404028352916020019161232d565b820191906000526020600020905b81548152906001019060200180831161231057829003601f168201915b5050505050905090565b600e60159054906101000a900460ff1681565b60085481565b600e60179054906101000a900460ff1681565b61236b612f7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090614c21565b60405180910390fd5b80600660006123e6612f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612493612f7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124d89190614b04565b60405180910390a35050565b6124f56124ef612f7f565b83613040565b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614e61565b60405180910390fd5b6125408484848461372d565b50505050565b61254e612f7f565b73ffffffffffffffffffffffffffffffffffffffff1661256c612185565b73ffffffffffffffffffffffffffffffffffffffff16146125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614d61565b60405180910390fd5b6010600083815260200190815260200160002060009054906101000a900460ff16612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990614de1565b60405180910390fd5b8060116000848152602001908152602001600020819055507f0de32425bf4e0574a7c52f3fe4f82fe171dfce59235a2f29ce86928ac105e398828260405161266b929190614fcc565b60405180910390a15050565b606061268282612f13565b6126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614da1565b60405180910390fd5b6000601280546126d090615340565b9050116126ec5760405180602001604052806000815250612735565b601261270a600f600085815260200190815260200160002054613789565b61271384613789565b60405160200161272593929190614a4c565b6040516020818303038152906040525b9050919050565b612744612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612762612185565b73ffffffffffffffffffffffffffffffffffffffff16146127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90614d61565b60405180910390fd5b6013548110156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614ec1565b60405180910390fd5b806009819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07816040516128339190614f81565b60405180910390a150565b612846612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612864612185565b73ffffffffffffffffffffffffffffffffffffffff16146128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614d61565b60405180910390fd5b600081101580156128e957506010600082815260200190815260200160002060009054906101000a900460ff16155b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90614e41565b60405180910390fd5b60016010600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0fbf9d62c56adf188a275d5f7a102eef44f9a934c1625f86996a96f005efa9cf816040516129839190614f81565b60405180910390a150565b612996612f7f565b73ffffffffffffffffffffffffffffffffffffffff166129b4612185565b73ffffffffffffffffffffffffffffffffffffffff1614612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0190614d61565b60405180910390fd5b60004711612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490614c81565b60405180910390fd5b6000612a57612185565b73ffffffffffffffffffffffffffffffffffffffff1647604051612a7a90614a88565b60006040518083038185875af1925050503d8060008114612ab7576040519150601f19603f3d011682016040523d82523d6000602084013e612abc565b606091505b5050905080612b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af790614f01565b60405180910390fd5b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612beb612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612c09612185565b73ffffffffffffffffffffffffffffffffffffffff1614612c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5690614d61565b60405180910390fd5b612c6881613936565b7feb406359d1b1dd8a51732372198628a3b9612506b952f48ade079733b1f823a881604051612c979190614f81565b60405180910390a150565b612caa612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612cc8612185565b73ffffffffffffffffffffffffffffffffffffffff1614612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1590614d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8590614b61565b60405180910390fd5b612d978161337a565b50565b600a60009054906101000a900460ff16612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de090614dc1565b60405180910390fd5b600854811115612e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2590614bc1565b60405180910390fd5b612e4381600754613a4590919063ffffffff16565b341015612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614e81565b60405180910390fd5b612e8e81613936565b50565b60116020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ffa83611b23565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061304b82612f13565b61308a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308190614c61565b60405180910390fd5b600061309583611b23565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061310457508373ffffffffffffffffffffffffffffffffffffffff166130ec84610dce565b73ffffffffffffffffffffffffffffffffffffffff16145b8061311557506131148185612b4f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661313e82611b23565b73ffffffffffffffffffffffffffffffffffffffff1614613194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318b90614d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90614c01565b60405180910390fd5b61320f838383613a5b565b61321a600082612f87565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461326a9190615249565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132c19190615131565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60004711613481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347890614b81565b60405180910390fd5b60004790506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134f960646134eb600e60149054906101000a900460ff1660ff1686613a4590919063ffffffff16565b613a6090919063ffffffff16565b60405161350590614a88565b60006040518083038185875af1925050503d8060008114613542576040519150601f19603f3d011682016040523d82523d6000602084013e613547565b606091505b505090506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135be60646135b0600e60159054906101000a900460ff1660ff1687613a4590919063ffffffff16565b613a6090919063ffffffff16565b6040516135ca90614a88565b60006040518083038185875af1925050503d8060008114613607576040519150601f19603f3d011682016040523d82523d6000602084013e61360c565b606091505b505090506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136836064613675600e60169054906101000a900460ff1660ff1688613a4590919063ffffffff16565b613a6090919063ffffffff16565b60405161368f90614a88565b60006040518083038185875af1925050503d80600081146136cc576040519150601f19603f3d011682016040523d82523d6000602084013e6136d1565b606091505b505090508280156136df5750815b80156136e85750805b613727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161371e90614c41565b60405180910390fd5b50505050565b61373884848461311e565b61374484848484613a76565b613783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377a90614b41565b60405180910390fd5b50505050565b606060008214156137d1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613931565b600082905060005b600082146138035780806137ec906153a3565b915050600a826137fc91906151be565b91506137d9565b60008167ffffffffffffffff811115613845577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138775781602001600182028036833780820191505090505b5090505b6000851461392a576001826138909190615249565b9150600a8561389f91906153ec565b60306138ab9190615131565b60f81b8183815181106138e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561392391906151be565b945061387b565b8093505050505b919050565b60095461394e82601354613c0d90919063ffffffff16565b111561398f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398690614be1565b60405180910390fd5b6000601354905060005b82811015613a40576001826139ae9190615131565b91506139c66001601354613c0d90919063ffffffff16565b6013819055506139d63383613c23565b813373ffffffffffffffffffffffffffffffffffffffff167fe9dfdf06889ab0fdb6f4d1785ca5bd6c44a5f7844270a776b2cb00b4bbba4926613a1885612677565b604051613a259190614b1f565b60405180910390a38080613a38906153a3565b915050613999565b505050565b60008183613a5391906151ef565b905092915050565b505050565b60008183613a6e91906151be565b905092915050565b6000613a978473ffffffffffffffffffffffffffffffffffffffff16613c41565b15613c00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613ac0612f7f565b8786866040518563ffffffff1660e01b8152600401613ae29493929190614ab8565b602060405180830381600087803b158015613afc57600080fd5b505af1925050508015613b2d57506040513d601f19601f82011682018060405250810190613b2a9190614267565b60015b613bb0573d8060008114613b5d576040519150601f19603f3d011682016040523d82523d6000602084013e613b62565b606091505b50600081511415613ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9f90614b41565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c05565b600190505b949350505050565b60008183613c1b9190615131565b905092915050565b613c3d828260405180602001604052806000815250613c54565b5050565b600080823b905060008111915050919050565b613c5e8383613caf565b613c6b6000848484613a76565b613caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca190614b41565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1690614d21565b60405180910390fd5b613d2881612f13565b15613d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5f90614ba1565b60405180910390fd5b613d7460008383613a5b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dc49190615131565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e8990615340565b90600052602060002090601f016020900481019282613eab5760008555613ef2565b82601f10613ec457805160ff1916838001178555613ef2565b82800160010185558215613ef2579182015b82811115613ef1578251825591602001919060010190613ed6565b5b509050613eff9190613f03565b5090565b5b80821115613f1c576000816000905550600101613f04565b5090565b6000613f33613f2e8461506c565b615047565b905082815260208101848484011115613f4b57600080fd5b613f568482856152fe565b509392505050565b6000613f71613f6c8461509d565b615047565b905082815260208101848484011115613f8957600080fd5b613f948482856152fe565b509392505050565b600081359050613fab81615ce8565b92915050565b600081359050613fc081615cff565b92915050565b600081359050613fd581615d16565b92915050565b600081519050613fea81615d16565b92915050565b600082601f83011261400157600080fd5b8135614011848260208601613f20565b91505092915050565b600082601f83011261402b57600080fd5b813561403b848260208601613f5e565b91505092915050565b60008135905061405381615d2d565b92915050565b60008135905061406881615d44565b92915050565b60006020828403121561408057600080fd5b600061408e84828501613f9c565b91505092915050565b600080604083850312156140aa57600080fd5b60006140b885828601613f9c565b92505060206140c985828601613f9c565b9150509250929050565b6000806000606084860312156140e857600080fd5b60006140f686828701613f9c565b935050602061410786828701613f9c565b925050604061411886828701614044565b9150509250925092565b6000806000806080858703121561413857600080fd5b600061414687828801613f9c565b945050602061415787828801613f9c565b935050604061416887828801614044565b925050606085013567ffffffffffffffff81111561418557600080fd5b61419187828801613ff0565b91505092959194509250565b600080604083850312156141b057600080fd5b60006141be85828601613f9c565b92505060206141cf85828601613fb1565b9150509250929050565b600080604083850312156141ec57600080fd5b60006141fa85828601613f9c565b925050602061420b85828601614044565b9150509250929050565b60006020828403121561422757600080fd5b600061423584828501613fb1565b91505092915050565b60006020828403121561425057600080fd5b600061425e84828501613fc6565b91505092915050565b60006020828403121561427957600080fd5b600061428784828501613fdb565b91505092915050565b6000602082840312156142a257600080fd5b600082013567ffffffffffffffff8111156142bc57600080fd5b6142c88482850161401a565b91505092915050565b6000602082840312156142e357600080fd5b60006142f184828501614044565b91505092915050565b6000806040838503121561430d57600080fd5b600061431b85828601614044565b925050602083013567ffffffffffffffff81111561433857600080fd5b6143448582860161401a565b9150509250929050565b6000806040838503121561436157600080fd5b600061436f85828601614044565b925050602061438085828601614044565b9150509250929050565b60006020828403121561439c57600080fd5b60006143aa84828501614059565b91505092915050565b6000806000606084860312156143c857600080fd5b60006143d686828701614059565b93505060206143e786828701614059565b92505060406143f886828701614059565b9150509250925092565b61440b8161527d565b82525050565b61441a8161528f565b82525050565b600061442b826150e3565b61443581856150f9565b935061444581856020860161530d565b61444e816154d9565b840191505092915050565b6000614464826150ee565b61446e8185615115565b935061447e81856020860161530d565b614487816154d9565b840191505092915050565b600061449d826150ee565b6144a78185615126565b93506144b781856020860161530d565b80840191505092915050565b600081546144d081615340565b6144da8186615126565b945060018216600081146144f5576001811461450657614539565b60ff19831686528186019350614539565b61450f856150ce565b60005b8381101561453157815481890152600182019150602081019050614512565b838801955050505b50505092915050565b600061454f603283615115565b915061455a826154ea565b604082019050919050565b6000614572602683615115565b915061457d82615539565b604082019050919050565b6000614595601783615115565b91506145a082615588565b602082019050919050565b60006145b8601c83615115565b91506145c3826155b1565b602082019050919050565b60006145db602483615115565b91506145e6826155da565b604082019050919050565b60006145fe601783615115565b915061460982615629565b602082019050919050565b6000614621602483615115565b915061462c82615652565b604082019050919050565b6000614644601983615115565b915061464f826156a1565b602082019050919050565b6000614667601283615115565b9150614672826156ca565b602082019050919050565b600061468a602c83615115565b9150614695826156f3565b604082019050919050565b60006146ad601b83615115565b91506146b882615742565b602082019050919050565b60006146d0603883615115565b91506146db8261576b565b604082019050919050565b60006146f3602a83615115565b91506146fe826157ba565b604082019050919050565b6000614716602983615115565b915061472182615809565b604082019050919050565b6000614739601583615115565b915061474482615858565b602082019050919050565b600061475c602083615115565b915061476782615881565b602082019050919050565b600061477f602c83615115565b915061478a826158aa565b604082019050919050565b60006147a2602083615115565b91506147ad826158f9565b602082019050919050565b60006147c5602983615115565b91506147d082615922565b604082019050919050565b60006147e8602f83615115565b91506147f382615971565b604082019050919050565b600061480b601383615115565b9150614816826159c0565b602082019050919050565b600061482e601583615115565b9150614839826159e9565b602082019050919050565b6000614851602183615115565b915061485c82615a12565b604082019050919050565b6000614874602283615115565b915061487f82615a61565b604082019050919050565b6000614897601183615115565b91506148a282615ab0565b602082019050919050565b60006148ba60008361510a565b91506148c582615ad9565b600082019050919050565b60006148dd603183615115565b91506148e882615adc565b604082019050919050565b6000614900601583615115565b915061490b82615b2b565b602082019050919050565b6000614923602083615115565b915061492e82615b54565b602082019050919050565b6000614946603183615115565b915061495182615b7d565b604082019050919050565b6000614969601383615115565b915061497482615bcc565b602082019050919050565b600061498c601083615115565b915061499782615bf5565b602082019050919050565b60006149af601e83615115565b91506149ba82615c1e565b602082019050919050565b60006149d2600183615126565b91506149dd82615c47565b600182019050919050565b60006149f5601283615115565b9150614a0082615c70565b602082019050919050565b6000614a18602883615115565b9150614a2382615c99565b604082019050919050565b614a37816152e7565b82525050565b614a46816152f1565b82525050565b6000614a5882866144c3565b9150614a648285614492565b9150614a6f826149c5565b9150614a7b8284614492565b9150819050949350505050565b6000614a93826148ad565b9150819050919050565b6000602082019050614ab26000830184614402565b92915050565b6000608082019050614acd6000830187614402565b614ada6020830186614402565b614ae76040830185614a2e565b8181036060830152614af98184614420565b905095945050505050565b6000602082019050614b196000830184614411565b92915050565b60006020820190508181036000830152614b398184614459565b905092915050565b60006020820190508181036000830152614b5a81614542565b9050919050565b60006020820190508181036000830152614b7a81614565565b9050919050565b60006020820190508181036000830152614b9a81614588565b9050919050565b60006020820190508181036000830152614bba816145ab565b9050919050565b60006020820190508181036000830152614bda816145ce565b9050919050565b60006020820190508181036000830152614bfa816145f1565b9050919050565b60006020820190508181036000830152614c1a81614614565b9050919050565b60006020820190508181036000830152614c3a81614637565b9050919050565b60006020820190508181036000830152614c5a8161465a565b9050919050565b60006020820190508181036000830152614c7a8161467d565b9050919050565b60006020820190508181036000830152614c9a816146a0565b9050919050565b60006020820190508181036000830152614cba816146c3565b9050919050565b60006020820190508181036000830152614cda816146e6565b9050919050565b60006020820190508181036000830152614cfa81614709565b9050919050565b60006020820190508181036000830152614d1a8161472c565b9050919050565b60006020820190508181036000830152614d3a8161474f565b9050919050565b60006020820190508181036000830152614d5a81614772565b9050919050565b60006020820190508181036000830152614d7a81614795565b9050919050565b60006020820190508181036000830152614d9a816147b8565b9050919050565b60006020820190508181036000830152614dba816147db565b9050919050565b60006020820190508181036000830152614dda816147fe565b9050919050565b60006020820190508181036000830152614dfa81614821565b9050919050565b60006020820190508181036000830152614e1a81614844565b9050919050565b60006020820190508181036000830152614e3a81614867565b9050919050565b60006020820190508181036000830152614e5a8161488a565b9050919050565b60006020820190508181036000830152614e7a816148d0565b9050919050565b60006020820190508181036000830152614e9a816148f3565b9050919050565b60006020820190508181036000830152614eba81614916565b9050919050565b60006020820190508181036000830152614eda81614939565b9050919050565b60006020820190508181036000830152614efa8161495c565b9050919050565b60006020820190508181036000830152614f1a8161497f565b9050919050565b60006020820190508181036000830152614f3a816149a2565b9050919050565b60006020820190508181036000830152614f5a816149e8565b9050919050565b60006020820190508181036000830152614f7a81614a0b565b9050919050565b6000602082019050614f966000830184614a2e565b92915050565b6000604082019050614fb16000830185614a2e565b8181036020830152614fc38184614459565b90509392505050565b6000604082019050614fe16000830185614a2e565b614fee6020830184614a2e565b9392505050565b600060208201905061500a6000830184614a3d565b92915050565b60006060820190506150256000830186614a3d565b6150326020830185614a3d565b61503f6040830184614a3d565b949350505050565b6000615051615062565b905061505d8282615372565b919050565b6000604051905090565b600067ffffffffffffffff821115615087576150866154aa565b5b615090826154d9565b9050602081019050919050565b600067ffffffffffffffff8211156150b8576150b76154aa565b5b6150c1826154d9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061513c826152e7565b9150615147836152e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561517c5761517b61541d565b5b828201905092915050565b6000615192826152f1565b915061519d836152f1565b92508260ff038211156151b3576151b261541d565b5b828201905092915050565b60006151c9826152e7565b91506151d4836152e7565b9250826151e4576151e361544c565b5b828204905092915050565b60006151fa826152e7565b9150615205836152e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561523e5761523d61541d565b5b828202905092915050565b6000615254826152e7565b915061525f836152e7565b9250828210156152725761527161541d565b5b828203905092915050565b6000615288826152c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561532b578082015181840152602081019050615310565b8381111561533a576000848401525b50505050565b6000600282049050600182168061535857607f821691505b6020821081141561536c5761536b61547b565b5b50919050565b61537b826154d9565b810181811067ffffffffffffffff8211171561539a576153996154aa565b5b80604052505050565b60006153ae826152e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153e1576153e061541d565b5b600182019050919050565b60006153f7826152e7565b9150615402836152e7565b9250826154125761541161544c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f2077697468647261772e000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f2066756e647320696e20736d61727420436f6e74726163742e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e636f727265637420707269636520706169642e0000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f5374796c65206973206e6f7420616c6c6f7765642e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e6572206f66204e46542063616e206368616e6765206e616d60008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207374796c652049642e000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f53686172657320617265206e6f7420616464696e6720757020746f203130302e600082015250565b7f56616c75652073686f756c6420626520677265617465722063757272656e746c60008201527f79206d696e7465642063616e696e65732e000000000000000000000000000000602082015250565b7f4e616d696e672069732064697361626c65642e00000000000000000000000000600082015250565b7f5769746864726177204661696c65642e00000000000000000000000000000000600082015250565b7f4e616d6520657863656564732063686172616374657273206c696d69742e0000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f507269636520697320696e636f72726563740000000000000000000000000000600082015250565b7f4f6e6c7920736861726520686f6c646572732063616e2063616c6c207468697360008201527f206d6574686f642e000000000000000000000000000000000000000000000000602082015250565b615cf18161527d565b8114615cfc57600080fd5b50565b615d088161528f565b8114615d1357600080fd5b50565b615d1f8161529b565b8114615d2a57600080fd5b50565b615d36816152e7565b8114615d4157600080fd5b50565b615d4d816152f1565b8114615d5857600080fd5b5056fea2646970667358221220ea4be84e4197e9a49d1c54855f1182a6c88769c4aebf11d6784645d3c5122ab964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f626f2e63616e696e6563617274656c2e646f672f6d657461646174612f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c80636c0360eb116101ab578063a22cb465116100f7578063e11dc47311610095578063f08b5fae1161006f578063f08b5fae14610b9c578063f2fde38b14610bc5578063f75cad5114610bee578063ff16d1df14610c0a57610335565b8063e11dc47314610b09578063e7adeccc14610b34578063e985e9c514610b5f57610335565b8063c87b56dd116100d1578063c87b56dd14610a63578063d44e357314610aa0578063d511519714610ac9578063db2e21bc14610af257610335565b8063a22cb465146109e8578063b88d4fde14610a11578063bc37681e14610a3a57610335565b8063853828b61161016457806395d89b411161013e57806395d89b411461093c57806398ba541214610967578063996517cf146109925780639a13a7ec146109bd57610335565b8063853828b6146108d15780638da5cb5b146108e85780639225de641461091357610335565b80636c0360eb146107e25780636f5286d71461080d57806370a0823114610829578063710b469a14610866578063712ad5cc14610891578063715018a6146108ba57610335565b806334259b5c1161028557806355f804b3116102235780635c0c370f116101fd5780635c0c370f146107245780636352211e1461074f5780636817c76c1461078c57806368428a1b146107b757610335565b806355f804b3146106a257806359af2ba1146106cb5780635a409fd71461070857610335565b806342842e0e1161025f57806342842e0e146105ea578063475fad22146106135780635325fafd1461063c578063555dc7091461066557610335565b806334259b5c1461056d578063387c4167146105965780633fd17366146105c157610335565b806316afd7be116102f257806321822fed116102cc57806321822fed146104db57806323b872dd146105045780632cd295641461052d5780633100a5351461055657610335565b806316afd7be1461045c57806318160ddd1461048557806319d1997a146104b057610335565b806301ffc9a71461033a578063051c0db41461037757806306fdde03146103a2578063081812fc146103cd578063095ea7b31461040a578063128cf3f814610433575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c919061423e565b610c47565b60405161036e9190614b04565b60405180910390f35b34801561038357600080fd5b5061038c610d29565b6040516103999190614ff5565b60405180910390f35b3480156103ae57600080fd5b506103b7610d3c565b6040516103c49190614b1f565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef91906142d1565b610dce565b6040516104019190614a9d565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906141d9565b610e53565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061406e565b610f6b565b005b34801561046857600080fd5b50610483600480360381019061047e91906142d1565b61106b565b005b34801561049157600080fd5b5061049a6111b9565b6040516104a79190614f81565b60405180910390f35b3480156104bc57600080fd5b506104c56111bf565b6040516104d29190614f81565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd919061406e565b6111c5565b005b34801561051057600080fd5b5061052b600480360381019061052691906140d3565b6112bc565b005b34801561053957600080fd5b50610554600480360381019061054f91906142d1565b61131c565b005b34801561056257600080fd5b5061056b6113d9565b005b34801561057957600080fd5b50610594600480360381019061058f91906142d1565b6114c7565b005b3480156105a257600080fd5b506105ab611584565b6040516105b89190614a9d565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e391906142d1565b6115aa565b005b3480156105f657600080fd5b50610611600480360381019061060c91906140d3565b611667565b005b34801561061f57600080fd5b5061063a600480360381019061063591906143b3565b611687565b005b34801561064857600080fd5b50610663600480360381019061065e919061438a565b6117f0565b005b34801561067157600080fd5b5061068c600480360381019061068791906142d1565b61188a565b6040516106999190614b04565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190614290565b6118aa565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906142d1565b611977565b6040516106ff9190614f81565b60405180910390f35b610722600480360381019061071d919061434e565b61198f565b005b34801561073057600080fd5b50610739611b10565b6040516107469190614b04565b60405180910390f35b34801561075b57600080fd5b50610776600480360381019061077191906142d1565b611b23565b6040516107839190614a9d565b60405180910390f35b34801561079857600080fd5b506107a1611bd5565b6040516107ae9190614f81565b60405180910390f35b3480156107c357600080fd5b506107cc611bdb565b6040516107d99190614b04565b60405180910390f35b3480156107ee57600080fd5b506107f7611bee565b6040516108049190614b1f565b60405180910390f35b610827600480360381019061082291906142fa565b611c7c565b005b34801561083557600080fd5b50610850600480360381019061084b919061406e565b611e18565b60405161085d9190614f81565b60405180910390f35b34801561087257600080fd5b5061087b611ed0565b6040516108889190614ff5565b60405180910390f35b34801561089d57600080fd5b506108b860048036038101906108b39190614215565b611ee3565b005b3480156108c657600080fd5b506108cf611fb3565b005b3480156108dd57600080fd5b506108e661203b565b005b3480156108f457600080fd5b506108fd612185565b60405161090a9190614a9d565b60405180910390f35b34801561091f57600080fd5b5061093a6004803603810190610935919061406e565b6121ae565b005b34801561094857600080fd5b506109516122a5565b60405161095e9190614b1f565b60405180910390f35b34801561097357600080fd5b5061097c612337565b6040516109899190614ff5565b60405180910390f35b34801561099e57600080fd5b506109a761234a565b6040516109b49190614f81565b60405180910390f35b3480156109c957600080fd5b506109d2612350565b6040516109df9190614ff5565b60405180910390f35b3480156109f457600080fd5b50610a0f6004803603810190610a0a919061419d565b612363565b005b348015610a1d57600080fd5b50610a386004803603810190610a339190614122565b6124e4565b005b348015610a4657600080fd5b50610a616004803603810190610a5c919061434e565b612546565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a8591906142d1565b612677565b604051610a979190614b1f565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac291906142d1565b61273c565b005b348015610ad557600080fd5b50610af06004803603810190610aeb91906142d1565b61283e565b005b348015610afe57600080fd5b50610b0761298e565b005b348015610b1557600080fd5b50610b1e612b03565b604051610b2b9190614a9d565b60405180910390f35b348015610b4057600080fd5b50610b49612b29565b604051610b569190614a9d565b60405180910390f35b348015610b6b57600080fd5b50610b866004803603810190610b819190614097565b612b4f565b604051610b939190614b04565b60405180910390f35b348015610ba857600080fd5b50610bc36004803603810190610bbe91906142d1565b612be3565b005b348015610bd157600080fd5b50610bec6004803603810190610be7919061406e565b612ca2565b005b610c086004803603810190610c0391906142d1565b612d9a565b005b348015610c1657600080fd5b50610c316004803603810190610c2c91906142d1565b612e91565b604051610c3e9190614f81565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d1257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d225750610d2182612ea9565b5b9050919050565b600e60149054906101000a900460ff1681565b606060018054610d4b90615340565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7790615340565b8015610dc45780601f10610d9957610100808354040283529160200191610dc4565b820191906000526020600020905b815481529060010190602001808311610da757829003601f168201915b5050505050905090565b6000610dd982612f13565b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90614d41565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5e82611b23565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614e01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eee612f7f565b73ffffffffffffffffffffffffffffffffffffffff161480610f1d5750610f1c81610f17612f7f565b612b4f565b5b610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614ca1565b60405180910390fd5b610f668383612f87565b505050565b610f73612f7f565b73ffffffffffffffffffffffffffffffffffffffff16610f91612185565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90614d61565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061103181612ca2565b7f9539f0adf432f6612656f7ec15ddf8a7e5835132bd4a474f39954885dbfc4554816040516110609190614a9d565b60405180910390a150565b611073612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611091612185565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614d61565b60405180910390fd5b60008111801561111457506010600082815260200190815260200160002060009054906101000a900460ff165b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614e41565b60405180910390fd5b60006010600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f68377694da626e57ab4efe5b346f62cb4c2a7dc3d84bf0b17a09717742362cdc816040516111ae9190614f81565b60405180910390a150565b60135481565b60095481565b6111cd612f7f565b73ffffffffffffffffffffffffffffffffffffffff166111eb612185565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890614d61565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcfe8d0199cafb54be527f2e63b41b75a9ecf2d411b91b457f3ac20e38fbb9215816040516112b19190614a9d565b60405180910390a150565b6112cd6112c7612f7f565b82613040565b61130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390614e61565b60405180910390fd5b61131783838361311e565b505050565b611324612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611342612185565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90614d61565b60405180910390fd5b80600b819055507f4c9664b26dac29ad37dc5d246f6d23b260bd682a0179c9dd803e6643fc39ab96816040516113ce9190614f81565b60405180910390a150565b6113e1612f7f565b73ffffffffffffffffffffffffffffffffffffffff166113ff612185565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614d61565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602600a60009054906101000a900460ff166040516114bd9190614b04565b60405180910390a1565b6114cf612f7f565b73ffffffffffffffffffffffffffffffffffffffff166114ed612185565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614d61565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab816040516115799190614f81565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115b2612f7f565b73ffffffffffffffffffffffffffffffffffffffff166115d0612185565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90614d61565b60405180910390fd5b806007819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f8160405161165c9190614f81565b60405180910390a150565b611682838383604051806020016040528060008152506124e4565b505050565b61168f612f7f565b73ffffffffffffffffffffffffffffffffffffffff166116ad612185565b73ffffffffffffffffffffffffffffffffffffffff1614611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90614d61565b60405180910390fd5b60648183856117129190615187565b61171c9190615187565b60ff161461175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690614ea1565b60405180910390fd5b82600e60146101000a81548160ff021916908360ff16021790555081600e60156101000a81548160ff021916908360ff16021790555080600e60166101000a81548160ff021916908360ff1602179055507f8c420f9dfa0c9ce57a520f1a0808c3a3f11bc720613ef82d4c52095749ba2b318383836040516117e393929190615010565b60405180910390a1505050565b6117f8612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611816612185565b73ffffffffffffffffffffffffffffffffffffffff161461186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390614d61565b60405180910390fd5b80600e60176101000a81548160ff021916908360ff16021790555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6118b2612f7f565b73ffffffffffffffffffffffffffffffffffffffff166118d0612185565b73ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90614d61565b60405180910390fd5b806012908051906020019061193c929190613e7d565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68160405161196c9190614b1f565b60405180910390a150565b600f6020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff166119af82611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90614e21565b60405180910390fd5b6010600083815260200190815260200160002060009054906101000a900460ff16611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614de1565b60405180910390fd5b3460116000848152602001908152602001600020541015611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290614f41565b60405180910390fd5b81600f6000838152602001908152602001600020819055507fe8b6c222311acdcfb38b74b9fbe783ed3c1ea1b725bb82a0a1c76a82c6ffb4d28183604051611b04929190614fcc565b60405180910390a15050565b601460009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390614ce1565b60405180910390fd5b80915050919050565b60075481565b600a60009054906101000a900460ff1681565b60128054611bfb90615340565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2790615340565b8015611c745780601f10611c4957610100808354040283529160200191611c74565b820191906000526020600020905b815481529060010190602001808311611c5757829003601f168201915b505050505081565b600b543414611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614d01565b60405180910390fd5b601460009054906101000a900460ff16611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690614ee1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611d2f83611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614e21565b60405180910390fd5b600e60179054906101000a900460ff1660ff1681511115611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290614f21565b60405180910390fd5b7f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b8282604051611e0c929190614f9c565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614cc1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60169054906101000a900460ff1681565b611eeb612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611f09612185565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690614d61565b60405180910390fd5b80601460006101000a81548160ff0219169083151502179055507f83bbab4027fa9736c47ba53472f66ce0a0564aa42d70db3e3e3c11b2eb793d1981604051611fa89190614b04565b60405180910390a150565b611fbb612f7f565b73ffffffffffffffffffffffffffffffffffffffff16611fd9612185565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690614d61565b60405180910390fd5b612039600061337a565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120e45750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061213c5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614f61565b60405180910390fd5b61218361343e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121b6612f7f565b73ffffffffffffffffffffffffffffffffffffffff166121d4612185565b73ffffffffffffffffffffffffffffffffffffffff161461222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190614d61565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1354f2ed7ad63d510fe05b011c0f4585cc0503e5f2a9cf0ac0b2e7dc80127d5d8160405161229a9190614a9d565b60405180910390a150565b6060600280546122b490615340565b80601f01602080910402602001604051908101604052809291908181526020018280546122e090615340565b801561232d5780601f106123025761010080835404028352916020019161232d565b820191906000526020600020905b81548152906001019060200180831161231057829003601f168201915b5050505050905090565b600e60159054906101000a900460ff1681565b60085481565b600e60179054906101000a900460ff1681565b61236b612f7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090614c21565b60405180910390fd5b80600660006123e6612f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612493612f7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124d89190614b04565b60405180910390a35050565b6124f56124ef612f7f565b83613040565b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614e61565b60405180910390fd5b6125408484848461372d565b50505050565b61254e612f7f565b73ffffffffffffffffffffffffffffffffffffffff1661256c612185565b73ffffffffffffffffffffffffffffffffffffffff16146125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614d61565b60405180910390fd5b6010600083815260200190815260200160002060009054906101000a900460ff16612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990614de1565b60405180910390fd5b8060116000848152602001908152602001600020819055507f0de32425bf4e0574a7c52f3fe4f82fe171dfce59235a2f29ce86928ac105e398828260405161266b929190614fcc565b60405180910390a15050565b606061268282612f13565b6126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614da1565b60405180910390fd5b6000601280546126d090615340565b9050116126ec5760405180602001604052806000815250612735565b601261270a600f600085815260200190815260200160002054613789565b61271384613789565b60405160200161272593929190614a4c565b6040516020818303038152906040525b9050919050565b612744612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612762612185565b73ffffffffffffffffffffffffffffffffffffffff16146127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90614d61565b60405180910390fd5b6013548110156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614ec1565b60405180910390fd5b806009819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07816040516128339190614f81565b60405180910390a150565b612846612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612864612185565b73ffffffffffffffffffffffffffffffffffffffff16146128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614d61565b60405180910390fd5b600081101580156128e957506010600082815260200190815260200160002060009054906101000a900460ff16155b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90614e41565b60405180910390fd5b60016010600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0fbf9d62c56adf188a275d5f7a102eef44f9a934c1625f86996a96f005efa9cf816040516129839190614f81565b60405180910390a150565b612996612f7f565b73ffffffffffffffffffffffffffffffffffffffff166129b4612185565b73ffffffffffffffffffffffffffffffffffffffff1614612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0190614d61565b60405180910390fd5b60004711612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490614c81565b60405180910390fd5b6000612a57612185565b73ffffffffffffffffffffffffffffffffffffffff1647604051612a7a90614a88565b60006040518083038185875af1925050503d8060008114612ab7576040519150601f19603f3d011682016040523d82523d6000602084013e612abc565b606091505b5050905080612b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af790614f01565b60405180910390fd5b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612beb612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612c09612185565b73ffffffffffffffffffffffffffffffffffffffff1614612c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5690614d61565b60405180910390fd5b612c6881613936565b7feb406359d1b1dd8a51732372198628a3b9612506b952f48ade079733b1f823a881604051612c979190614f81565b60405180910390a150565b612caa612f7f565b73ffffffffffffffffffffffffffffffffffffffff16612cc8612185565b73ffffffffffffffffffffffffffffffffffffffff1614612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1590614d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8590614b61565b60405180910390fd5b612d978161337a565b50565b600a60009054906101000a900460ff16612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de090614dc1565b60405180910390fd5b600854811115612e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2590614bc1565b60405180910390fd5b612e4381600754613a4590919063ffffffff16565b341015612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614e81565b60405180910390fd5b612e8e81613936565b50565b60116020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ffa83611b23565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061304b82612f13565b61308a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308190614c61565b60405180910390fd5b600061309583611b23565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061310457508373ffffffffffffffffffffffffffffffffffffffff166130ec84610dce565b73ffffffffffffffffffffffffffffffffffffffff16145b8061311557506131148185612b4f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661313e82611b23565b73ffffffffffffffffffffffffffffffffffffffff1614613194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318b90614d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90614c01565b60405180910390fd5b61320f838383613a5b565b61321a600082612f87565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461326a9190615249565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132c19190615131565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60004711613481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347890614b81565b60405180910390fd5b60004790506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134f960646134eb600e60149054906101000a900460ff1660ff1686613a4590919063ffffffff16565b613a6090919063ffffffff16565b60405161350590614a88565b60006040518083038185875af1925050503d8060008114613542576040519150601f19603f3d011682016040523d82523d6000602084013e613547565b606091505b505090506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135be60646135b0600e60159054906101000a900460ff1660ff1687613a4590919063ffffffff16565b613a6090919063ffffffff16565b6040516135ca90614a88565b60006040518083038185875af1925050503d8060008114613607576040519150601f19603f3d011682016040523d82523d6000602084013e61360c565b606091505b505090506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136836064613675600e60169054906101000a900460ff1660ff1688613a4590919063ffffffff16565b613a6090919063ffffffff16565b60405161368f90614a88565b60006040518083038185875af1925050503d80600081146136cc576040519150601f19603f3d011682016040523d82523d6000602084013e6136d1565b606091505b505090508280156136df5750815b80156136e85750805b613727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161371e90614c41565b60405180910390fd5b50505050565b61373884848461311e565b61374484848484613a76565b613783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377a90614b41565b60405180910390fd5b50505050565b606060008214156137d1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613931565b600082905060005b600082146138035780806137ec906153a3565b915050600a826137fc91906151be565b91506137d9565b60008167ffffffffffffffff811115613845577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138775781602001600182028036833780820191505090505b5090505b6000851461392a576001826138909190615249565b9150600a8561389f91906153ec565b60306138ab9190615131565b60f81b8183815181106138e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561392391906151be565b945061387b565b8093505050505b919050565b60095461394e82601354613c0d90919063ffffffff16565b111561398f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398690614be1565b60405180910390fd5b6000601354905060005b82811015613a40576001826139ae9190615131565b91506139c66001601354613c0d90919063ffffffff16565b6013819055506139d63383613c23565b813373ffffffffffffffffffffffffffffffffffffffff167fe9dfdf06889ab0fdb6f4d1785ca5bd6c44a5f7844270a776b2cb00b4bbba4926613a1885612677565b604051613a259190614b1f565b60405180910390a38080613a38906153a3565b915050613999565b505050565b60008183613a5391906151ef565b905092915050565b505050565b60008183613a6e91906151be565b905092915050565b6000613a978473ffffffffffffffffffffffffffffffffffffffff16613c41565b15613c00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613ac0612f7f565b8786866040518563ffffffff1660e01b8152600401613ae29493929190614ab8565b602060405180830381600087803b158015613afc57600080fd5b505af1925050508015613b2d57506040513d601f19601f82011682018060405250810190613b2a9190614267565b60015b613bb0573d8060008114613b5d576040519150601f19603f3d011682016040523d82523d6000602084013e613b62565b606091505b50600081511415613ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9f90614b41565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c05565b600190505b949350505050565b60008183613c1b9190615131565b905092915050565b613c3d828260405180602001604052806000815250613c54565b5050565b600080823b905060008111915050919050565b613c5e8383613caf565b613c6b6000848484613a76565b613caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca190614b41565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1690614d21565b60405180910390fd5b613d2881612f13565b15613d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5f90614ba1565b60405180910390fd5b613d7460008383613a5b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dc49190615131565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e8990615340565b90600052602060002090601f016020900481019282613eab5760008555613ef2565b82601f10613ec457805160ff1916838001178555613ef2565b82800160010185558215613ef2579182015b82811115613ef1578251825591602001919060010190613ed6565b5b509050613eff9190613f03565b5090565b5b80821115613f1c576000816000905550600101613f04565b5090565b6000613f33613f2e8461506c565b615047565b905082815260208101848484011115613f4b57600080fd5b613f568482856152fe565b509392505050565b6000613f71613f6c8461509d565b615047565b905082815260208101848484011115613f8957600080fd5b613f948482856152fe565b509392505050565b600081359050613fab81615ce8565b92915050565b600081359050613fc081615cff565b92915050565b600081359050613fd581615d16565b92915050565b600081519050613fea81615d16565b92915050565b600082601f83011261400157600080fd5b8135614011848260208601613f20565b91505092915050565b600082601f83011261402b57600080fd5b813561403b848260208601613f5e565b91505092915050565b60008135905061405381615d2d565b92915050565b60008135905061406881615d44565b92915050565b60006020828403121561408057600080fd5b600061408e84828501613f9c565b91505092915050565b600080604083850312156140aa57600080fd5b60006140b885828601613f9c565b92505060206140c985828601613f9c565b9150509250929050565b6000806000606084860312156140e857600080fd5b60006140f686828701613f9c565b935050602061410786828701613f9c565b925050604061411886828701614044565b9150509250925092565b6000806000806080858703121561413857600080fd5b600061414687828801613f9c565b945050602061415787828801613f9c565b935050604061416887828801614044565b925050606085013567ffffffffffffffff81111561418557600080fd5b61419187828801613ff0565b91505092959194509250565b600080604083850312156141b057600080fd5b60006141be85828601613f9c565b92505060206141cf85828601613fb1565b9150509250929050565b600080604083850312156141ec57600080fd5b60006141fa85828601613f9c565b925050602061420b85828601614044565b9150509250929050565b60006020828403121561422757600080fd5b600061423584828501613fb1565b91505092915050565b60006020828403121561425057600080fd5b600061425e84828501613fc6565b91505092915050565b60006020828403121561427957600080fd5b600061428784828501613fdb565b91505092915050565b6000602082840312156142a257600080fd5b600082013567ffffffffffffffff8111156142bc57600080fd5b6142c88482850161401a565b91505092915050565b6000602082840312156142e357600080fd5b60006142f184828501614044565b91505092915050565b6000806040838503121561430d57600080fd5b600061431b85828601614044565b925050602083013567ffffffffffffffff81111561433857600080fd5b6143448582860161401a565b9150509250929050565b6000806040838503121561436157600080fd5b600061436f85828601614044565b925050602061438085828601614044565b9150509250929050565b60006020828403121561439c57600080fd5b60006143aa84828501614059565b91505092915050565b6000806000606084860312156143c857600080fd5b60006143d686828701614059565b93505060206143e786828701614059565b92505060406143f886828701614059565b9150509250925092565b61440b8161527d565b82525050565b61441a8161528f565b82525050565b600061442b826150e3565b61443581856150f9565b935061444581856020860161530d565b61444e816154d9565b840191505092915050565b6000614464826150ee565b61446e8185615115565b935061447e81856020860161530d565b614487816154d9565b840191505092915050565b600061449d826150ee565b6144a78185615126565b93506144b781856020860161530d565b80840191505092915050565b600081546144d081615340565b6144da8186615126565b945060018216600081146144f5576001811461450657614539565b60ff19831686528186019350614539565b61450f856150ce565b60005b8381101561453157815481890152600182019150602081019050614512565b838801955050505b50505092915050565b600061454f603283615115565b915061455a826154ea565b604082019050919050565b6000614572602683615115565b915061457d82615539565b604082019050919050565b6000614595601783615115565b91506145a082615588565b602082019050919050565b60006145b8601c83615115565b91506145c3826155b1565b602082019050919050565b60006145db602483615115565b91506145e6826155da565b604082019050919050565b60006145fe601783615115565b915061460982615629565b602082019050919050565b6000614621602483615115565b915061462c82615652565b604082019050919050565b6000614644601983615115565b915061464f826156a1565b602082019050919050565b6000614667601283615115565b9150614672826156ca565b602082019050919050565b600061468a602c83615115565b9150614695826156f3565b604082019050919050565b60006146ad601b83615115565b91506146b882615742565b602082019050919050565b60006146d0603883615115565b91506146db8261576b565b604082019050919050565b60006146f3602a83615115565b91506146fe826157ba565b604082019050919050565b6000614716602983615115565b915061472182615809565b604082019050919050565b6000614739601583615115565b915061474482615858565b602082019050919050565b600061475c602083615115565b915061476782615881565b602082019050919050565b600061477f602c83615115565b915061478a826158aa565b604082019050919050565b60006147a2602083615115565b91506147ad826158f9565b602082019050919050565b60006147c5602983615115565b91506147d082615922565b604082019050919050565b60006147e8602f83615115565b91506147f382615971565b604082019050919050565b600061480b601383615115565b9150614816826159c0565b602082019050919050565b600061482e601583615115565b9150614839826159e9565b602082019050919050565b6000614851602183615115565b915061485c82615a12565b604082019050919050565b6000614874602283615115565b915061487f82615a61565b604082019050919050565b6000614897601183615115565b91506148a282615ab0565b602082019050919050565b60006148ba60008361510a565b91506148c582615ad9565b600082019050919050565b60006148dd603183615115565b91506148e882615adc565b604082019050919050565b6000614900601583615115565b915061490b82615b2b565b602082019050919050565b6000614923602083615115565b915061492e82615b54565b602082019050919050565b6000614946603183615115565b915061495182615b7d565b604082019050919050565b6000614969601383615115565b915061497482615bcc565b602082019050919050565b600061498c601083615115565b915061499782615bf5565b602082019050919050565b60006149af601e83615115565b91506149ba82615c1e565b602082019050919050565b60006149d2600183615126565b91506149dd82615c47565b600182019050919050565b60006149f5601283615115565b9150614a0082615c70565b602082019050919050565b6000614a18602883615115565b9150614a2382615c99565b604082019050919050565b614a37816152e7565b82525050565b614a46816152f1565b82525050565b6000614a5882866144c3565b9150614a648285614492565b9150614a6f826149c5565b9150614a7b8284614492565b9150819050949350505050565b6000614a93826148ad565b9150819050919050565b6000602082019050614ab26000830184614402565b92915050565b6000608082019050614acd6000830187614402565b614ada6020830186614402565b614ae76040830185614a2e565b8181036060830152614af98184614420565b905095945050505050565b6000602082019050614b196000830184614411565b92915050565b60006020820190508181036000830152614b398184614459565b905092915050565b60006020820190508181036000830152614b5a81614542565b9050919050565b60006020820190508181036000830152614b7a81614565565b9050919050565b60006020820190508181036000830152614b9a81614588565b9050919050565b60006020820190508181036000830152614bba816145ab565b9050919050565b60006020820190508181036000830152614bda816145ce565b9050919050565b60006020820190508181036000830152614bfa816145f1565b9050919050565b60006020820190508181036000830152614c1a81614614565b9050919050565b60006020820190508181036000830152614c3a81614637565b9050919050565b60006020820190508181036000830152614c5a8161465a565b9050919050565b60006020820190508181036000830152614c7a8161467d565b9050919050565b60006020820190508181036000830152614c9a816146a0565b9050919050565b60006020820190508181036000830152614cba816146c3565b9050919050565b60006020820190508181036000830152614cda816146e6565b9050919050565b60006020820190508181036000830152614cfa81614709565b9050919050565b60006020820190508181036000830152614d1a8161472c565b9050919050565b60006020820190508181036000830152614d3a8161474f565b9050919050565b60006020820190508181036000830152614d5a81614772565b9050919050565b60006020820190508181036000830152614d7a81614795565b9050919050565b60006020820190508181036000830152614d9a816147b8565b9050919050565b60006020820190508181036000830152614dba816147db565b9050919050565b60006020820190508181036000830152614dda816147fe565b9050919050565b60006020820190508181036000830152614dfa81614821565b9050919050565b60006020820190508181036000830152614e1a81614844565b9050919050565b60006020820190508181036000830152614e3a81614867565b9050919050565b60006020820190508181036000830152614e5a8161488a565b9050919050565b60006020820190508181036000830152614e7a816148d0565b9050919050565b60006020820190508181036000830152614e9a816148f3565b9050919050565b60006020820190508181036000830152614eba81614916565b9050919050565b60006020820190508181036000830152614eda81614939565b9050919050565b60006020820190508181036000830152614efa8161495c565b9050919050565b60006020820190508181036000830152614f1a8161497f565b9050919050565b60006020820190508181036000830152614f3a816149a2565b9050919050565b60006020820190508181036000830152614f5a816149e8565b9050919050565b60006020820190508181036000830152614f7a81614a0b565b9050919050565b6000602082019050614f966000830184614a2e565b92915050565b6000604082019050614fb16000830185614a2e565b8181036020830152614fc38184614459565b90509392505050565b6000604082019050614fe16000830185614a2e565b614fee6020830184614a2e565b9392505050565b600060208201905061500a6000830184614a3d565b92915050565b60006060820190506150256000830186614a3d565b6150326020830185614a3d565b61503f6040830184614a3d565b949350505050565b6000615051615062565b905061505d8282615372565b919050565b6000604051905090565b600067ffffffffffffffff821115615087576150866154aa565b5b615090826154d9565b9050602081019050919050565b600067ffffffffffffffff8211156150b8576150b76154aa565b5b6150c1826154d9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061513c826152e7565b9150615147836152e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561517c5761517b61541d565b5b828201905092915050565b6000615192826152f1565b915061519d836152f1565b92508260ff038211156151b3576151b261541d565b5b828201905092915050565b60006151c9826152e7565b91506151d4836152e7565b9250826151e4576151e361544c565b5b828204905092915050565b60006151fa826152e7565b9150615205836152e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561523e5761523d61541d565b5b828202905092915050565b6000615254826152e7565b915061525f836152e7565b9250828210156152725761527161541d565b5b828203905092915050565b6000615288826152c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561532b578082015181840152602081019050615310565b8381111561533a576000848401525b50505050565b6000600282049050600182168061535857607f821691505b6020821081141561536c5761536b61547b565b5b50919050565b61537b826154d9565b810181811067ffffffffffffffff8211171561539a576153996154aa565b5b80604052505050565b60006153ae826152e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153e1576153e061541d565b5b600182019050919050565b60006153f7826152e7565b9150615402836152e7565b9250826154125761541161544c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f2077697468647261772e000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f2066756e647320696e20736d61727420436f6e74726163742e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e636f727265637420707269636520706169642e0000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f5374796c65206973206e6f7420616c6c6f7765642e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e6572206f66204e46542063616e206368616e6765206e616d60008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207374796c652049642e000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f53686172657320617265206e6f7420616464696e6720757020746f203130302e600082015250565b7f56616c75652073686f756c6420626520677265617465722063757272656e746c60008201527f79206d696e7465642063616e696e65732e000000000000000000000000000000602082015250565b7f4e616d696e672069732064697361626c65642e00000000000000000000000000600082015250565b7f5769746864726177204661696c65642e00000000000000000000000000000000600082015250565b7f4e616d6520657863656564732063686172616374657273206c696d69742e0000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f507269636520697320696e636f72726563740000000000000000000000000000600082015250565b7f4f6e6c7920736861726520686f6c646572732063616e2063616c6c207468697360008201527f206d6574686f642e000000000000000000000000000000000000000000000000602082015250565b615cf18161527d565b8114615cfc57600080fd5b50565b615d088161528f565b8114615d1357600080fd5b50565b615d1f8161529b565b8114615d2a57600080fd5b50565b615d36816152e7565b8114615d4157600080fd5b50565b615d4d816152f1565b8114615d5857600080fd5b5056fea2646970667358221220ea4be84e4197e9a49d1c54855f1182a6c88769c4aebf11d6784645d3c5122ab964736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f626f2e63616e696e6563617274656c2e646f672f6d657461646174612f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenSupplyLimit (uint256): 10000
Arg [1] : _baseURI (string): https://bo.caninecartel.dog/metadata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [3] : 68747470733a2f2f626f2e63616e696e6563617274656c2e646f672f6d657461
Arg [4] : 646174612f000000000000000000000000000000000000000000000000000000


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.