ETH Price: $3,337.06 (-0.79%)
Gas: 5.41 Gwei

Token

LYNCCrafter ()
 

Overview

Max Total Supply

121

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x4e22da880aae99bbf4ca0ea0cd25762c7360de9c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LYNCCrafter

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

  /**
   * LYNC Network
   * https://lync.network
   *
   * Additional details for contract and wallet information:
   * https://lync.network/tracking/
   *
   * The cryptocurrency network designed for passive token rewards for its community.
   */

pragma solidity ^0.7.0;

import "./ERC1155.sol";

contract LYNCCrafter is ERC1155 {

    address public owner;
    address public rewardContract;
    uint256 public cardID = 1;
    uint256 public cardCountETH = 9950;
    uint256 public cardCountLYNC = 9975;

    //Card statistics
    struct CardStats {
        string collectionName;
        uint256 cardType;
        uint256 boostAmount;
        uint256 redeemInitial;
        uint256 redeemLeft;
        uint256 redeemInterval;
        uint256 useLastTimeStamp;
        uint256 tokenReward;
        uint256 percentageReward;
    }

    //Events
    event BulkCardCrafted(address indexed _to, uint256 cardID, uint256 _amountOfCards, uint256 _tokenReward, uint256 _percentageReward);
    event CollectionCardCrafted(address indexed _to, uint256 cardID, uint256 _redeemInitial, uint256 _redeemInterval, uint256 _tokenReward, uint256 _percentageReward);
    event BoosterCardCrafted(address indexed _to, uint256 cardID, uint256 _amountOfCards, uint256 _boostAmount);
    event BulkBoosterCardIncreased(address indexed _to, uint256 _amountOfCards, uint256 _cardID);
    event RewardCardCrafted(address indexed _to, uint256 _cardCounter);
    event CardStatsUpdated(uint256 _cardID);
    event BoosterCardApplied(uint256 _cardID, uint256 _newRedeemTotal);
    event CardBurned(uint256 _cardID, uint256 _amount);
    event CardBurnedByOwner(address indexed _cardholder, uint256 _cardID, uint256 _amount);
    event RewardContractAddressUpdated(address indexed _previousRewardAddress, address indexed _newRewardAddress);
    event OwnershipTransferred(address indexed _previousOwner, address indexed _newOwner);
    event OwnershipRenounced(address indexed _previousOwner, address indexed _newOwner);

    //Mappings
    mapping(uint256 => CardStats) public cards;
    mapping(string => mapping(uint256 => uint256)) public collections;

    //Constructor
    constructor(string memory _uri) ERC1155(_uri) {
        owner = msg.sender;
    }

    //Craft a destructable / bulk card
    function craftBulkCard(address _to, uint256 _amountOfCards, uint256 _tokenReward, uint256 _percentageReward) public onlyOwner {

        //Craft and add stats
        _mint(_to, cardID, _amountOfCards, "");
        cards[cardID].cardType = 1;
        cards[cardID].tokenReward = _tokenReward;
        cards[cardID].percentageReward = _percentageReward;
        emit BulkCardCrafted(_to, cardID,  _amountOfCards, _tokenReward, _percentageReward);

        //Update cardID
        cardID += 1;
    }

    //Craft a collection card
    function craftCollectionCard(address _to, string memory _collectionName, uint256 _amountOfCards, uint256 _redeemInitial, uint256 _redeemInterval, uint256 _tokenReward, uint256 _percentageReward) public onlyOwner {

        //Make sure collection name is unique
        require(collections[_collectionName][0] == 0, "This collection name aready exists!");

        //Record the size of the collection
        collections[_collectionName][0] = _amountOfCards;

        //Loop to create multiple cards
        for (uint256 i = 1; i <= _amountOfCards; i++) {

            //Add this card into the collection
            collections[_collectionName][i] = cardID;

            //Mint the card and add stats to card
            _mint(_to, cardID, 1, "");
            cards[cardID].collectionName = _collectionName;
            cards[cardID].cardType = 2;
            cards[cardID].redeemInitial = _redeemInitial;
            cards[cardID].redeemLeft = _redeemInitial;
            cards[cardID].redeemInterval = _redeemInterval;
            cards[cardID].tokenReward = _tokenReward;
            cards[cardID].percentageReward = _percentageReward;
            emit CollectionCardCrafted(_to, cardID, _redeemInitial, _redeemInterval, _tokenReward, _percentageReward);

            //Update the cardID
            cardID += 1;
        }
    }

    //Craft a booster card
    function craftBoosterCard(address _to, uint256 _amountOfCards, uint256 _boostAmount) public onlyOwner {
        _mint(_to, cardID, _amountOfCards, "");
        cards[cardID].cardType = 3;
        cards[cardID].boostAmount = _boostAmount;
        emit BoosterCardCrafted(_to, cardID, _amountOfCards, _boostAmount);

        //Update the cardID
        cardID += 1;
    }

    //Increase a destructable / booster card quantity
    function increaseBulkBoosterCard(address _to, uint256 _amountOfCards, uint256 _cardID) public onlyOwner {

        //Check card type and cardID count
        require(cards[_cardID].cardType != 2, "Cannot increase a collection / unique card");
        require(_cardID > 0 && _cardID < cardID, "Card ID has not been crafted yet");

        //Increase cards
        _mint(_to, _cardID, _amountOfCards, "");
        emit BulkBoosterCardIncreased(_to, _amountOfCards, _cardID);
    }

    //Craft a reward card
    function craftRewardCard(address _to, uint256 _cardID, string memory _collectionName) public onlyRewardContract {

        //Set counters
        uint256 _cardCounter;

        if(_cardID < 3) {
            _cardCounter = cardCountETH;
            cardCountETH += 1;
        } else {
            _cardCounter = cardCountLYNC;
            cardCountLYNC += 1;
        }

        //Increase the size of the collection
        collections[_collectionName][0] += 1;

        //Crafter the card and add stats
        _mint(_to, _cardCounter, 1, "");
        cards[_cardCounter].collectionName = _collectionName;
        cards[_cardCounter].cardType = 2;
        cards[_cardCounter].redeemInitial = 6;
        cards[_cardCounter].redeemLeft = 6;
        cards[_cardCounter].redeemInterval = 28;
        cards[_cardCounter].tokenReward = 400;
        cards[_cardCounter].percentageReward = 4;
        emit RewardCardCrafted(_to, _cardCounter);
    }

    //Update collection / unique card redeem count and timestamp
    function updateCardStats(uint256 _cardID) public onlyRewardContract {
        cards[_cardID].redeemLeft -= 1;
        cards[_cardID].useLastTimeStamp = block.timestamp;
        emit CardStatsUpdated(_cardID);
    }

    //Apply booster card to collection / unique card
    function applyCardBooster(uint256 _cardID, uint256 _newRedeemTotal) public onlyRewardContract {
        cards[_cardID].redeemLeft += _newRedeemTotal;
        emit BoosterCardApplied(_cardID, _newRedeemTotal);
    }

    //Burn card
    function burnCard(address _cardholder, uint256 _cardID, uint256 _amount) public onlyRewardContract {
        _burn(_cardholder, _cardID, _amount);
        emit CardBurned(_cardID, _amount);
    }

    //Owner burn card overide
    function ownerBurnCard(address _cardholder, uint256 _cardID, uint256 _amount) public onlyOwner {
        _burn(_cardholder, _cardID, _amount);
        emit CardBurnedByOwner(_cardholder, _cardID, _amount);
    }

    //Update the reward contract address
    function updateRewardContractAddress(address _newRewardContractAddress) public onlyOwner {
        require(_newRewardContractAddress != address(0), "New reward contract address cannot be a zero address");
        emit RewardContractAddressUpdated(rewardContract, _newRewardContractAddress);
        rewardContract = _newRewardContractAddress;
    }

    //Transfer ownership to new owner
    function transferOwnership(address _newOwner) public onlyOwner {
        require(_newOwner != address(0), "New owner cannot be a zero address");
        emit OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }

    //Remove owner from the contract
    function renounceOwnership() public onlyOwner {
        emit OwnershipRenounced(owner, address(0));
        owner = address(0);
    }

    //Modifiers
    modifier onlyOwner() {
        require(owner == msg.sender, "Only the owner of the crafter contract can call this function");
        _;
    }

    modifier onlyRewardContract() {
        require(rewardContract == msg.sender, "Only the reward contract address can call this function");
        _;
    }
}

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

pragma solidity ^0.7.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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

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

pragma solidity ^0.7.0;

import "./IERC1155.sol";
import "./IERC1155MetadataURI.sol";
import "./IERC1155Receiver.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./safemath.sol";
import "./Address.sol";

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

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

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

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

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

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

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

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

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

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

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

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

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] = _balances[id][account].add(amount);
        emit TransferSingle(operator, address(0), account, id, amount);

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        emit TransferSingle(operator, account, address(0), id, amount);
    }

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

        address operator = _msgSender();

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

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.7.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

pragma solidity ^0.7.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.7.0;

import "./IERC1155.sol";

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

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

pragma solidity ^0.7.0;

import "./IERC165.sol";

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

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

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

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

pragma solidity ^0.7.0;

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

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

pragma solidity ^0.7.0;

import "./IERC1155.sol";

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

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

pragma solidity ^0.7.0;

import "./IERC165.sol";

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

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

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

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

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_cardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newRedeemTotal","type":"uint256"}],"name":"BoosterCardApplied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"cardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_boostAmount","type":"uint256"}],"name":"BoosterCardCrafted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_cardID","type":"uint256"}],"name":"BulkBoosterCardIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"cardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokenReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_percentageReward","type":"uint256"}],"name":"BulkCardCrafted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_cardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"CardBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_cardholder","type":"address"},{"indexed":false,"internalType":"uint256","name":"_cardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"CardBurnedByOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_cardID","type":"uint256"}],"name":"CardStatsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"cardID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_redeemInitial","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_redeemInterval","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokenReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_percentageReward","type":"uint256"}],"name":"CollectionCardCrafted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_cardCounter","type":"uint256"}],"name":"RewardCardCrafted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_previousRewardAddress","type":"address"},{"indexed":true,"internalType":"address","name":"_newRewardAddress","type":"address"}],"name":"RewardContractAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"_cardID","type":"uint256"},{"internalType":"uint256","name":"_newRedeemTotal","type":"uint256"}],"name":"applyCardBooster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_cardholder","type":"address"},{"internalType":"uint256","name":"_cardID","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cardCountETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cardCountLYNC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cardID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cards","outputs":[{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"uint256","name":"cardType","type":"uint256"},{"internalType":"uint256","name":"boostAmount","type":"uint256"},{"internalType":"uint256","name":"redeemInitial","type":"uint256"},{"internalType":"uint256","name":"redeemLeft","type":"uint256"},{"internalType":"uint256","name":"redeemInterval","type":"uint256"},{"internalType":"uint256","name":"useLastTimeStamp","type":"uint256"},{"internalType":"uint256","name":"tokenReward","type":"uint256"},{"internalType":"uint256","name":"percentageReward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"internalType":"uint256","name":"_boostAmount","type":"uint256"}],"name":"craftBoosterCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"internalType":"uint256","name":"_tokenReward","type":"uint256"},{"internalType":"uint256","name":"_percentageReward","type":"uint256"}],"name":"craftBulkCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_collectionName","type":"string"},{"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"internalType":"uint256","name":"_redeemInitial","type":"uint256"},{"internalType":"uint256","name":"_redeemInterval","type":"uint256"},{"internalType":"uint256","name":"_tokenReward","type":"uint256"},{"internalType":"uint256","name":"_percentageReward","type":"uint256"}],"name":"craftCollectionCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_cardID","type":"uint256"},{"internalType":"string","name":"_collectionName","type":"string"}],"name":"craftRewardCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amountOfCards","type":"uint256"},{"internalType":"uint256","name":"_cardID","type":"uint256"}],"name":"increaseBulkBoosterCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_cardholder","type":"address"},{"internalType":"uint256","name":"_cardID","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerBurnCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cardID","type":"uint256"}],"name":"updateCardStats","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRewardContractAddress","type":"address"}],"name":"updateRewardContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260016006556126de6007556126f76008553480156200002257600080fd5b50604051620048c6380380620048c6833981810160405260208110156200004857600080fd5b81019080805160405193929190846401000000008211156200006957600080fd5b838201915060208201858111156200008057600080fd5b82518660018202830111640100000000821117156200009e57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000d4578082015181840152602081019050620000b7565b50505050905090810190601f168015620001025780820380516001836020036101000a031916815260200191505b5060405250505080620001226301ffc9a760e01b620001ac60201b60201c565b6200013381620002b560201b60201c565b6200014b63d9b67a2660e01b620001ac60201b60201c565b62000163630e89341c60e01b620001ac60201b60201c565b5033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000377565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b8060039080519060200190620002cd929190620002d1565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031457805160ff191683800117855562000345565b8280016001018555821562000345579182015b828111156200034457825182559160200191906001019062000327565b5b50905062000354919062000358565b5090565b5b808211156200037357600081600090555060010162000359565b5090565b61453f80620003876000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c80636447586e116100f9578063964d6acb11610097578063e1407fe811610071578063e1407fe814610dad578063e985e9c514610e0f578063f242432a14610e89578063f2fde38b14610f98576101a8565b8063964d6acb14610ce7578063a22cb46514610d3f578063b7efb86c14610d8f576101a8565b8063715018a6116100d3578063715018a614610abd57806375ca2e3a14610ac75780638da5cb5b14610bd45780638dc1076814610c08576101a8565b80636447586e14610a335780636e7a9d5314610a515780636ea69d6214610a89576101a8565b80632eb2c2d6116101665780633e22d884116101405780633e22d884146106b65780633e3466911461079b5780634e1273f41461087457806359a6486514610a15576101a8565b80632eb2c2d6146103e35780633552513c146106065780633cc3e56f1461065e576101a8565b8062fdd58e146101ad57806301ffc9a71461020f5780630e89341c1461027257806311d98b181461031957806311f02f64146103715780632984d7831461039f575b600080fd5b6101f9600480360360408110156101c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdc565b6040518082815260200191505060405180910390f35b61025a6004803603602081101561022557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506110bc565b60405180821515815260200191505060405180910390f35b61029e6004803603602081101561028857600080fd5b8101908080359060200190929190505050611123565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102de5780820151818401526020810190506102c3565b50505050905090810190601f16801561030b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61036f6004803603606081101561032f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506111c7565b005b61039d6004803603602081101561038757600080fd5b81019080803590602001909291905050506112d3565b005b6103e1600480360360208110156103b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f3565b005b610604600480360360a08110156103f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561045657600080fd5b82018360208201111561046857600080fd5b8035906020019184602083028401116401000000008311171561048a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104ea57600080fd5b8201836020820111156104fc57600080fd5b8035906020019184602083028401116401000000008311171561051e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561057e57600080fd5b82018360208201111561059057600080fd5b803590602001918460018302840111640100000000831117156105b257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115df565b005b61065c6004803603606081101561061c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611a6a565b005b6106b46004803603606081101561067457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611b5f565b005b610799600480360360608110156106cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561071357600080fd5b82018360208201111561072557600080fd5b8035906020019184600183028401116401000000008311171561074757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611d6e565b005b61085e600480360360408110156107b157600080fd5b81019080803590602001906401000000008111156107ce57600080fd5b8201836020820111156107e057600080fd5b8035906020019184600183028401116401000000008311171561080257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919050505061201e565b6040518082815260200191505060405180910390f35b6109be6004803603604081101561088a57600080fd5b81019080803590602001906401000000008111156108a757600080fd5b8201836020820111156108b957600080fd5b803590602001918460208302840111640100000000831117156108db57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561093b57600080fd5b82018360208201111561094d57600080fd5b8035906020019184602083028401116401000000008311171561096f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612059565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a015780820151818401526020810190506109e6565b505050509050019250505060405180910390f35b610a1d61216b565b6040518082815260200191505060405180910390f35b610a3b612171565b6040518082815260200191505060405180910390f35b610a8760048036036040811015610a6757600080fd5b810190808035906020019092919080359060200190929190505050612177565b005b610a91612284565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ac56122aa565b005b610bd2600480360360e0811015610add57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610b1a57600080fd5b820183602082011115610b2c57600080fd5b80359060200191846001830284011164010000000083111715610b4e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050612411565b005b610bdc61282a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c3460048036036020811015610c1e57600080fd5b8101908080359060200190929190505050612850565b60405180806020018a815260200189815260200188815260200187815260200186815260200185815260200184815260200183815260200182810382528b818151815260200191508051906020019080838360005b83811015610ca4578082015181840152602081019050610c89565b50505050905090810190601f168015610cd15780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390f35b610d3d60048036036060811015610cfd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612936565b005b610d8d60048036036040811015610d5557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612aaa565b005b610d97612c43565b6040518082815260200191505060405180910390f35b610e0d60048036036080811015610dc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050612c49565b005b610e7160048036036040811015610e2557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612de3565b60405180821515815260200191505060405180910390f35b610f96600480360360a0811015610e9f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610f1057600080fd5b820183602082011115610f2257600080fd5b80359060200191846001830284011164010000000083111715610f4457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e77565b005b610fda60048036036020811015610fae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ec565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614270602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111bb5780601f10611190576101008083540402835291602001916111bb565b820191906000526020600020905b81548152906001019060200180831161119e57829003601f168201915b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b6112788383836133d8565b8273ffffffffffffffffffffffffffffffffffffffff167f3fa936619526cdd73cec4812b56898d62898caee3a9d8c2e72baf17431cb91aa8383604051808381526020018281526020019250505060405180910390a2505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b600160096000838152602001908152602001600020600401600082825403925050819055504260096000838152602001908152602001600020600601819055507f6a696e2fdcf05045678524cdd2790e9ec28c19c309c8038dac744addf3e8c5a9816040518082815260200191505060405180910390a150565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018061423c6034913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1e9d232a92ca44822b1cd8642e3525420cfa91fe3ea3d59a94f7bc81b31e8b1d60405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8151835114611639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806144626028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143426025913960400191505060405180910390fd5b6116c76135f4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061170d575061170c856117076135f4565b612de3565b5b611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806143676032913960400191505060405180910390fd5b600061176c6135f4565b905061177c8187878787876135fc565b60005b845181101561194d57600085828151811061179657fe5b6020026020010151905060008583815181106117ae57fe5b60200260200101519050611835816040518060600160405280602a81526020016143bc602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136049092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118ec816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c490919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061177f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156119fd5780820151818401526020810190506119e2565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611a3f578082015181840152602081019050611a24565b5050505090500194505050505060405180910390a4611a6281878787878761374c565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b611b1b8383836133d8565b7f3b372d070de82538590c3d1264f2650d3040a277eab1d89bcc6b694dea21f8508282604051808381526020018281526020019250505060405180910390a1505050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600260096000838152602001908152602001600020600101541415611c75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806143e6602a913960400191505060405180910390fd5b600081118015611c86575060065481105b611cf8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4361726420494420686173206e6f74206265656e20637261667465642079657481525060200191505060405180910390fd5b611d1383828460405180602001604052806000815250613adb565b8273ffffffffffffffffffffffffffffffffffffffff167f36b50875869be42e16fb544e3cfdfe1de105baa426b42e6b7771c95161b09c178383604051808381526020018281526020019250505060405180910390a2505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b60006003831015611e3a5760075490506001600760008282540192505081905550611e51565b600854905060016008600082825401925050819055505b6001600a836040518082805190602001908083835b60208310611e895780518252602082019150602081019050602083039250611e66565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020600080815260200190815260200160002060008282540192505081905550611ef68482600160405180602001604052806000815250613adb565b81600960008381526020019081526020016000206000019080519060200190611f2092919061406e565b50600260096000838152602001908152602001600020600101819055506006600960008381526020019081526020016000206003018190555060066009600083815260200190815260200160002060040181905550601c60096000838152602001908152602001600020600501819055506101906009600083815260200190815260200160002060070181905550600460096000838152602001908152602001600020600801819055508373ffffffffffffffffffffffffffffffffffffffff167f8927dc82ffb6d2524d25e56148764f33469e024da95efb6a076e7dc38c7e2f7a826040518082815260200191505060405180910390a250505050565b600a82805160208101820180518482526020830160208501208183528095505050505050602052806000526040600020600091509150505481565b606081518351146120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806144396029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156120cf57600080fd5b506040519080825280602002602001820160405280156120fe5781602001602082028036833780820191505090505b50905060005b84518110156121605761213d85828151811061211c57fe5b602002602001015185838151811061213057fe5b6020026020010151610fdc565b82828151811061214957fe5b602002602001018181525050806001019050612104565b508091505092915050565b60075481565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b8060096000848152602001908152602001600020600401600082825401925050819055507fdb84f89c1f7e1b223b9bcf7bd86ae47d46a2b45e617121f3235cdfb136385c718282604051808381526020018281526020019250505060405180910390a15050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb48f42c7a4b7d66b43c8fccc1aafdac7c8ca6d024c15bb1d427d547f0002438060405160405180910390a36000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b6000600a876040518082805190602001908083835b602083106124ef57805182526020820191506020810190506020830392506124cc565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390206000808152602001908152602001600020541461258a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061429b6023913960400191505060405180910390fd5b84600a876040518082805190602001908083835b602083106125c1578051825260208201915060208101905060208303925061259e565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390206000808152602001908152602001600020819055506000600190505b85811161282057600654600a886040518082805190602001908083835b60208310612650578051825260208201915060208101905060208303925061262d565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390206000838152602001908152602001600020819055506126b688600654600160405180602001604052806000815250613adb565b8660096000600654815260200190815260200160002060000190805190602001906126e292919061406e565b50600260096000600654815260200190815260200160002060010181905550846009600060065481526020019081526020016000206003018190555084600960006006548152602001908152602001600020600401819055508360096000600654815260200190815260200160002060050181905550826009600060065481526020019081526020016000206007018190555081600960006006548152602001908152602001600020600801819055508773ffffffffffffffffffffffffffffffffffffffff167f3222e098f1957cdf5d6e88e86a4244e8732908a5468ab3acb118582c213384a560065487878787604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a260016006600082825401925050819055508080600101915050612610565b5050505050505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009602052806000526040600020600091509050806000018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128fc5780601f106128d1576101008083540402835291602001916128fc565b820191906000526020600020905b8154815290600101906020018083116128df57829003601f168201915b5050505050908060010154908060020154908060030154908060040154908060050154908060060154908060070154908060080154905089565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b6129f9836006548460405180602001604052806000815250613adb565b60036009600060065481526020019081526020016000206001018190555080600960006006548152602001908152602001600020600201819055508273ffffffffffffffffffffffffffffffffffffffff167f54ae3a9297336c5673e77483d2b622a5ba97b3fb3db25924d2f8aa047d5db907600654848460405180848152602001838152602001828152602001935050505060405180910390a26001600660008282540192505081905550505050565b8173ffffffffffffffffffffffffffffffffffffffff16612ac96135f4565b73ffffffffffffffffffffffffffffffffffffffff161415612b36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806144106029913960400191505060405180910390fd5b8060026000612b436135f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612bf06135f4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60065481565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b612d0c846006548560405180602001604052806000815250613adb565b600160096000600654815260200190815260200160002060010181905550816009600060065481526020019081526020016000206007018190555080600960006006548152602001908152602001600020600801819055508373ffffffffffffffffffffffffffffffffffffffff167f2f7018aaeaddd6c7def82c610feb59813ddd32e7ebefa253e977e12331e058e86006548585856040518085815260200184815260200183815260200182815260200194505050505060405180910390a2600160066000828254019250508190555050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612efd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143426025913960400191505060405180910390fd5b612f056135f4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612f4b5750612f4a85612f456135f4565b612de3565b5b612fa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142e26029913960400191505060405180910390fd5b6000612faa6135f4565b9050612fca818787612fbb88613cde565b612fc488613cde565b876135fc565b613047836040518060600160405280602a81526020016143bc602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136049092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130fe836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c490919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46131e4818787878787613d4e565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144ab6022913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561345e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143996023913960400191505060405180910390fd5b60006134686135f4565b90506134988185600061347a87613cde565b61348387613cde565b604051806020016040528060008152506135fc565b613515826040518060600160405280602481526020016142be602491396001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136049092919063ffffffff16565b6001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b600033905090565b505050505050565b60008383111582906136b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561367657808201518184015260208101905061365b565b50505050905090810190601f1680156136a35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61376b8473ffffffffffffffffffffffffffffffffffffffff1661405b565b15613ad3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015613823578082015181840152602081019050613808565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561386557808201518184015260208101905061384a565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156138a4578082015181840152602081019050613889565b50505050905090810190601f1680156138d15780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156138f657600080fd5b505af192505050801561392a57506040513d602081101561391657600080fd5b810190808051906020019092919050505060015b613a3457613936614129565b8061394157506139e3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139a857808201518184015260208101905061398d565b50505050905090810190601f1680156139d55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806141e06034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142146028913960400191505060405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613b61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061448a6021913960400191505060405180910390fd5b6000613b6b6135f4565b9050613b8c81600087613b7d88613cde565b613b8688613cde565b876135fc565b613bef836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c490919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4613cd781600087878787613d4e565b5050505050565b606080600167ffffffffffffffff81118015613cf957600080fd5b50604051908082528060200260200182016040528015613d285781602001602082028036833780820191505090505b5090508281600081518110613d3957fe5b60200260200101818152505080915050919050565b613d6d8473ffffffffffffffffffffffffffffffffffffffff1661405b565b15614053578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613e26578082015181840152602081019050613e0b565b50505050905090810190601f168015613e535780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015613e7657600080fd5b505af1925050508015613eaa57506040513d6020811015613e9657600080fd5b810190808051906020019092919050505060015b613fb457613eb6614129565b80613ec15750613f63565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f28578082015181840152602081019050613f0d565b50505050905090810190601f168015613f555780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806141e06034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142146028913960400191505060405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106140af57805160ff19168380011785556140dd565b828001600101855582156140dd579182015b828111156140dc5782518255916020019190600101906140c1565b5b5090506140ea91906140ee565b5090565b5b808211156141075760008160009055506001016140ef565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015614139576141dc565b60046000803e61414a60005161411c565b6308c379a0811461415b57506141dc565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715614187575050506141dc565b808201805167ffffffffffffffff8111156141a65750505050506141dc565b8060208301013d85018111156141c1575050505050506141dc565b6141ca8261410b565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e734e65772072657761726420636f6e747261637420616464726573732063616e6e6f742062652061207a65726f2061646472657373455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573735468697320636f6c6c656374696f6e206e616d65206172656164792065786973747321455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644f6e6c79207468652072657761726420636f6e747261637420616464726573732063616e2063616c6c20746869732066756e6374696f6e455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e7366657243616e6e6f7420696e637265617365206120636f6c6c656374696f6e202f20756e697175652063617264455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f20616464726573734e6577206f776e65722063616e6e6f742062652061207a65726f20616464726573734f6e6c7920746865206f776e6572206f6620746865206372616674657220636f6e74726163742063616e2063616c6c20746869732066756e6374696f6ea2646970667358221220b2f3226f64544324c73d5393498542ef090e117e4f0f78e5a01f78da435ef3d364736f6c634300070000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6170692e6c796e632e6e6574776f726b2f6170692f746f6b656e2f30787b69647d0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a85760003560e01c80636447586e116100f9578063964d6acb11610097578063e1407fe811610071578063e1407fe814610dad578063e985e9c514610e0f578063f242432a14610e89578063f2fde38b14610f98576101a8565b8063964d6acb14610ce7578063a22cb46514610d3f578063b7efb86c14610d8f576101a8565b8063715018a6116100d3578063715018a614610abd57806375ca2e3a14610ac75780638da5cb5b14610bd45780638dc1076814610c08576101a8565b80636447586e14610a335780636e7a9d5314610a515780636ea69d6214610a89576101a8565b80632eb2c2d6116101665780633e22d884116101405780633e22d884146106b65780633e3466911461079b5780634e1273f41461087457806359a6486514610a15576101a8565b80632eb2c2d6146103e35780633552513c146106065780633cc3e56f1461065e576101a8565b8062fdd58e146101ad57806301ffc9a71461020f5780630e89341c1461027257806311d98b181461031957806311f02f64146103715780632984d7831461039f575b600080fd5b6101f9600480360360408110156101c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdc565b6040518082815260200191505060405180910390f35b61025a6004803603602081101561022557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506110bc565b60405180821515815260200191505060405180910390f35b61029e6004803603602081101561028857600080fd5b8101908080359060200190929190505050611123565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102de5780820151818401526020810190506102c3565b50505050905090810190601f16801561030b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61036f6004803603606081101561032f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506111c7565b005b61039d6004803603602081101561038757600080fd5b81019080803590602001909291905050506112d3565b005b6103e1600480360360208110156103b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f3565b005b610604600480360360a08110156103f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561045657600080fd5b82018360208201111561046857600080fd5b8035906020019184602083028401116401000000008311171561048a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104ea57600080fd5b8201836020820111156104fc57600080fd5b8035906020019184602083028401116401000000008311171561051e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561057e57600080fd5b82018360208201111561059057600080fd5b803590602001918460018302840111640100000000831117156105b257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115df565b005b61065c6004803603606081101561061c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611a6a565b005b6106b46004803603606081101561067457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611b5f565b005b610799600480360360608110156106cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561071357600080fd5b82018360208201111561072557600080fd5b8035906020019184600183028401116401000000008311171561074757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611d6e565b005b61085e600480360360408110156107b157600080fd5b81019080803590602001906401000000008111156107ce57600080fd5b8201836020820111156107e057600080fd5b8035906020019184600183028401116401000000008311171561080257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919050505061201e565b6040518082815260200191505060405180910390f35b6109be6004803603604081101561088a57600080fd5b81019080803590602001906401000000008111156108a757600080fd5b8201836020820111156108b957600080fd5b803590602001918460208302840111640100000000831117156108db57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561093b57600080fd5b82018360208201111561094d57600080fd5b8035906020019184602083028401116401000000008311171561096f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612059565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a015780820151818401526020810190506109e6565b505050509050019250505060405180910390f35b610a1d61216b565b6040518082815260200191505060405180910390f35b610a3b612171565b6040518082815260200191505060405180910390f35b610a8760048036036040811015610a6757600080fd5b810190808035906020019092919080359060200190929190505050612177565b005b610a91612284565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ac56122aa565b005b610bd2600480360360e0811015610add57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610b1a57600080fd5b820183602082011115610b2c57600080fd5b80359060200191846001830284011164010000000083111715610b4e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050612411565b005b610bdc61282a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c3460048036036020811015610c1e57600080fd5b8101908080359060200190929190505050612850565b60405180806020018a815260200189815260200188815260200187815260200186815260200185815260200184815260200183815260200182810382528b818151815260200191508051906020019080838360005b83811015610ca4578082015181840152602081019050610c89565b50505050905090810190601f168015610cd15780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390f35b610d3d60048036036060811015610cfd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612936565b005b610d8d60048036036040811015610d5557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612aaa565b005b610d97612c43565b6040518082815260200191505060405180910390f35b610e0d60048036036080811015610dc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050612c49565b005b610e7160048036036040811015610e2557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612de3565b60405180821515815260200191505060405180910390f35b610f96600480360360a0811015610e9f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610f1057600080fd5b820183602082011115610f2257600080fd5b80359060200191846001830284011164010000000083111715610f4457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e77565b005b610fda60048036036020811015610fae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ec565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614270602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111bb5780601f10611190576101008083540402835291602001916111bb565b820191906000526020600020905b81548152906001019060200180831161119e57829003601f168201915b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b6112788383836133d8565b8273ffffffffffffffffffffffffffffffffffffffff167f3fa936619526cdd73cec4812b56898d62898caee3a9d8c2e72baf17431cb91aa8383604051808381526020018281526020019250505060405180910390a2505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b600160096000838152602001908152602001600020600401600082825403925050819055504260096000838152602001908152602001600020600601819055507f6a696e2fdcf05045678524cdd2790e9ec28c19c309c8038dac744addf3e8c5a9816040518082815260200191505060405180910390a150565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018061423c6034913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1e9d232a92ca44822b1cd8642e3525420cfa91fe3ea3d59a94f7bc81b31e8b1d60405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8151835114611639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806144626028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143426025913960400191505060405180910390fd5b6116c76135f4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061170d575061170c856117076135f4565b612de3565b5b611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806143676032913960400191505060405180910390fd5b600061176c6135f4565b905061177c8187878787876135fc565b60005b845181101561194d57600085828151811061179657fe5b6020026020010151905060008583815181106117ae57fe5b60200260200101519050611835816040518060600160405280602a81526020016143bc602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136049092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118ec816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c490919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061177f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156119fd5780820151818401526020810190506119e2565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611a3f578082015181840152602081019050611a24565b5050505090500194505050505060405180910390a4611a6281878787878761374c565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b611b1b8383836133d8565b7f3b372d070de82538590c3d1264f2650d3040a277eab1d89bcc6b694dea21f8508282604051808381526020018281526020019250505060405180910390a1505050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600260096000838152602001908152602001600020600101541415611c75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806143e6602a913960400191505060405180910390fd5b600081118015611c86575060065481105b611cf8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4361726420494420686173206e6f74206265656e20637261667465642079657481525060200191505060405180910390fd5b611d1383828460405180602001604052806000815250613adb565b8273ffffffffffffffffffffffffffffffffffffffff167f36b50875869be42e16fb544e3cfdfe1de105baa426b42e6b7771c95161b09c178383604051808381526020018281526020019250505060405180910390a2505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b60006003831015611e3a5760075490506001600760008282540192505081905550611e51565b600854905060016008600082825401925050819055505b6001600a836040518082805190602001908083835b60208310611e895780518252602082019150602081019050602083039250611e66565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020600080815260200190815260200160002060008282540192505081905550611ef68482600160405180602001604052806000815250613adb565b81600960008381526020019081526020016000206000019080519060200190611f2092919061406e565b50600260096000838152602001908152602001600020600101819055506006600960008381526020019081526020016000206003018190555060066009600083815260200190815260200160002060040181905550601c60096000838152602001908152602001600020600501819055506101906009600083815260200190815260200160002060070181905550600460096000838152602001908152602001600020600801819055508373ffffffffffffffffffffffffffffffffffffffff167f8927dc82ffb6d2524d25e56148764f33469e024da95efb6a076e7dc38c7e2f7a826040518082815260200191505060405180910390a250505050565b600a82805160208101820180518482526020830160208501208183528095505050505050602052806000526040600020600091509150505481565b606081518351146120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806144396029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156120cf57600080fd5b506040519080825280602002602001820160405280156120fe5781602001602082028036833780820191505090505b50905060005b84518110156121605761213d85828151811061211c57fe5b602002602001015185838151811061213057fe5b6020026020010151610fdc565b82828151811061214957fe5b602002602001018181525050806001019050612104565b508091505092915050565b60075481565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061430b6037913960400191505060405180910390fd5b8060096000848152602001908152602001600020600401600082825401925050819055507fdb84f89c1f7e1b223b9bcf7bd86ae47d46a2b45e617121f3235cdfb136385c718282604051808381526020018281526020019250505060405180910390a15050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb48f42c7a4b7d66b43c8fccc1aafdac7c8ca6d024c15bb1d427d547f0002438060405160405180910390a36000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b6000600a876040518082805190602001908083835b602083106124ef57805182526020820191506020810190506020830392506124cc565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390206000808152602001908152602001600020541461258a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061429b6023913960400191505060405180910390fd5b84600a876040518082805190602001908083835b602083106125c1578051825260208201915060208101905060208303925061259e565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390206000808152602001908152602001600020819055506000600190505b85811161282057600654600a886040518082805190602001908083835b60208310612650578051825260208201915060208101905060208303925061262d565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390206000838152602001908152602001600020819055506126b688600654600160405180602001604052806000815250613adb565b8660096000600654815260200190815260200160002060000190805190602001906126e292919061406e565b50600260096000600654815260200190815260200160002060010181905550846009600060065481526020019081526020016000206003018190555084600960006006548152602001908152602001600020600401819055508360096000600654815260200190815260200160002060050181905550826009600060065481526020019081526020016000206007018190555081600960006006548152602001908152602001600020600801819055508773ffffffffffffffffffffffffffffffffffffffff167f3222e098f1957cdf5d6e88e86a4244e8732908a5468ab3acb118582c213384a560065487878787604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a260016006600082825401925050819055508080600101915050612610565b5050505050505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009602052806000526040600020600091509050806000018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128fc5780601f106128d1576101008083540402835291602001916128fc565b820191906000526020600020905b8154815290600101906020018083116128df57829003601f168201915b5050505050908060010154908060020154908060030154908060040154908060050154908060060154908060070154908060080154905089565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b6129f9836006548460405180602001604052806000815250613adb565b60036009600060065481526020019081526020016000206001018190555080600960006006548152602001908152602001600020600201819055508273ffffffffffffffffffffffffffffffffffffffff167f54ae3a9297336c5673e77483d2b622a5ba97b3fb3db25924d2f8aa047d5db907600654848460405180848152602001838152602001828152602001935050505060405180910390a26001600660008282540192505081905550505050565b8173ffffffffffffffffffffffffffffffffffffffff16612ac96135f4565b73ffffffffffffffffffffffffffffffffffffffff161415612b36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806144106029913960400191505060405180910390fd5b8060026000612b436135f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612bf06135f4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60065481565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b612d0c846006548560405180602001604052806000815250613adb565b600160096000600654815260200190815260200160002060010181905550816009600060065481526020019081526020016000206007018190555080600960006006548152602001908152602001600020600801819055508373ffffffffffffffffffffffffffffffffffffffff167f2f7018aaeaddd6c7def82c610feb59813ddd32e7ebefa253e977e12331e058e86006548585856040518085815260200184815260200183815260200182815260200194505050505060405180910390a2600160066000828254019250508190555050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612efd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143426025913960400191505060405180910390fd5b612f056135f4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612f4b5750612f4a85612f456135f4565b612de3565b5b612fa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142e26029913960400191505060405180910390fd5b6000612faa6135f4565b9050612fca818787612fbb88613cde565b612fc488613cde565b876135fc565b613047836040518060600160405280602a81526020016143bc602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136049092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130fe836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c490919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46131e4818787878787613d4e565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806144cd603d913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144ab6022913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561345e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143996023913960400191505060405180910390fd5b60006134686135f4565b90506134988185600061347a87613cde565b61348387613cde565b604051806020016040528060008152506135fc565b613515826040518060600160405280602481526020016142be602491396001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136049092919063ffffffff16565b6001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b600033905090565b505050505050565b60008383111582906136b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561367657808201518184015260208101905061365b565b50505050905090810190601f1680156136a35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61376b8473ffffffffffffffffffffffffffffffffffffffff1661405b565b15613ad3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015613823578082015181840152602081019050613808565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561386557808201518184015260208101905061384a565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156138a4578082015181840152602081019050613889565b50505050905090810190601f1680156138d15780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156138f657600080fd5b505af192505050801561392a57506040513d602081101561391657600080fd5b810190808051906020019092919050505060015b613a3457613936614129565b8061394157506139e3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139a857808201518184015260208101905061398d565b50505050905090810190601f1680156139d55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806141e06034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142146028913960400191505060405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613b61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061448a6021913960400191505060405180910390fd5b6000613b6b6135f4565b9050613b8c81600087613b7d88613cde565b613b8688613cde565b876135fc565b613bef836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c490919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4613cd781600087878787613d4e565b5050505050565b606080600167ffffffffffffffff81118015613cf957600080fd5b50604051908082528060200260200182016040528015613d285781602001602082028036833780820191505090505b5090508281600081518110613d3957fe5b60200260200101818152505080915050919050565b613d6d8473ffffffffffffffffffffffffffffffffffffffff1661405b565b15614053578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613e26578082015181840152602081019050613e0b565b50505050905090810190601f168015613e535780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015613e7657600080fd5b505af1925050508015613eaa57506040513d6020811015613e9657600080fd5b810190808051906020019092919050505060015b613fb457613eb6614129565b80613ec15750613f63565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f28578082015181840152602081019050613f0d565b50505050905090810190601f168015613f555780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806141e06034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142146028913960400191505060405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106140af57805160ff19168380011785556140dd565b828001600101855582156140dd579182015b828111156140dc5782518255916020019190600101906140c1565b5b5090506140ea91906140ee565b5090565b5b808211156141075760008160009055506001016140ef565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015614139576141dc565b60046000803e61414a60005161411c565b6308c379a0811461415b57506141dc565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715614187575050506141dc565b808201805167ffffffffffffffff8111156141a65750505050506141dc565b8060208301013d85018111156141c1575050505050506141dc565b6141ca8261410b565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e734e65772072657761726420636f6e747261637420616464726573732063616e6e6f742062652061207a65726f2061646472657373455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573735468697320636f6c6c656374696f6e206e616d65206172656164792065786973747321455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644f6e6c79207468652072657761726420636f6e747261637420616464726573732063616e2063616c6c20746869732066756e6374696f6e455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e7366657243616e6e6f7420696e637265617365206120636f6c6c656374696f6e202f20756e697175652063617264455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f20616464726573734e6577206f776e65722063616e6e6f742062652061207a65726f20616464726573734f6e6c7920746865206f776e6572206f6620746865206372616674657220636f6e74726163742063616e2063616c6c20746869732066756e6374696f6ea2646970667358221220b2f3226f64544324c73d5393498542ef090e117e4f0f78e5a01f78da435ef3d364736f6c63430007000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6170692e6c796e632e6e6574776f726b2f6170692f746f6b656e2f30787b69647d0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://api.lync.network/api/token/0x{id}

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [2] : 68747470733a2f2f6170692e6c796e632e6e6574776f726b2f6170692f746f6b
Arg [3] : 656e2f30787b69647d0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

349:8146:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2999:231:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;982:150:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2741:107:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:214:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6319:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7342:352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5642:1220:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6841:198:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4756:487;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5278:967;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2150:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3396:549:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485:34:10;;;:::i;:::-;;;;;;;;;;;;;;;;;;;526:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6599:217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;417:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8021:136;;;:::i;:::-;;2921:1359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;390:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2101:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4316:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4018:311:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;453:25:10;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2374:508;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4401:168:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4641:924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7741:234:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2999:231:2;3085:7;3132:1;3113:21;;:7;:21;;;;3105:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200:9;:13;3210:2;3200:13;;;;;;;;;;;:22;3214:7;3200:22;;;;;;;;;;;;;;;;3193:29;;2999:231;;;;:::o;982:150:3:-;1067:4;1091:20;:33;1112:11;1091:33;;;;;;;;;;;;;;;;;;;;;;;;;;;1084:40;;982:150;;;:::o;2741:107:2:-;2803:13;2836:4;2829:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2741:107;;;:::o;7078:214:10:-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7184:36:::1;7190:11;7203:7;7212;7184:5;:36::i;:::-;7254:11;7236:48;;;7267:7;7276;7236:48;;;;;;;;;;;;;;;;;;;;;;;;7078:214:::0;;;:::o;6319:218::-;8402:10;8384:28;;:14;;;;;;;;;;;:28;;;8376:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6427:1:::1;6398:5;:14;6404:7;6398:14;;;;;;;;;;;:25;;;:30;;;;;;;;;;;6473:15;6439:5;:14;6445:7;6439:14;;;;;;;;;;;:31;;:49;;;;6504:25;6521:7;6504:25;;;;;;;;;;;;;;;;;;6319:218:::0;:::o;7342:352::-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7487:1:::1;7450:39;;:25;:39;;;;7442:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7607:25;7562:71;;7591:14;;;;;;;;;;;7562:71;;;;;;;;;;;;7661:25;7644:14;;:42;;;;;;;;;;;;;;;;;;7342:352:::0;:::o;5642:1220:2:-;5907:7;:14;5893:3;:10;:28;5885:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1;5985:16;;:2;:16;;;;5977:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6084:12;:10;:12::i;:::-;6076:20;;:4;:20;;;:60;;;;6100:36;6117:4;6123:12;:10;:12::i;:::-;6100:16;:36::i;:::-;6076:60;6054:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6227:16;6246:12;:10;:12::i;:::-;6227:31;;6271:60;6292:8;6302:4;6308:2;6312:3;6317:7;6326:4;6271:20;:60::i;:::-;6349:9;6344:358;6368:3;:10;6364:1;:14;6344:358;;;6400:10;6413:3;6417:1;6413:6;;;;;;;;;;;;;;6400:19;;6434:14;6451:7;6459:1;6451:10;;;;;;;;;;;;;;6434:27;;6500:126;6542:6;6500:126;;;;;;;;;;;;;;;;;:9;:13;6510:2;6500:13;;;;;;;;;;;:19;6514:4;6500:19;;;;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;6478:9;:13;6488:2;6478:13;;;;;;;;;;;:19;6492:4;6478:19;;;;;;;;;;;;;;;:148;;;;6661:29;6683:6;6661:9;:13;6671:2;6661:13;;;;;;;;;;;:17;6675:2;6661:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;6641:9;:13;6651:2;6641:13;;;;;;;;;;;:17;6655:2;6641:17;;;;;;;;;;;;;;;:49;;;;6344:358;;6380:3;;;;;6344:358;;;;6749:2;6719:47;;6743:4;6719:47;;6733:8;6719:47;;;6753:3;6758:7;6719:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6779:75;6815:8;6825:4;6831:2;6835:3;6840:7;6849:4;6779:35;:75::i;:::-;5642:1220;;;;;;:::o;6841:198:10:-;8402:10;8384:28;;:14;;;;;;;;;;;:28;;;8376:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6951:36:::1;6957:11;6970:7;6979;6951:5;:36::i;:::-;7003:28;7014:7;7023;7003:28;;;;;;;;;;;;;;;;;;;;;;;;6841:198:::0;;;:::o;4756:487::-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:1:::1;4925:5;:14;4931:7;4925:14;;;;;;;;;;;:23;;;:28;;4917:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5029:1;5019:7;:11;:31;;;;;5044:6;;5034:7;:16;5019:31;5011:76;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;5126:39;5132:3;5137:7;5146:14;5126:39;;;;;;;;;;;::::0;:5:::1;:39::i;:::-;5206:3;5181:54;;;5211:14;5227:7;5181:54;;;;;;;;;;;;;;;;;;;;;;;;4756:487:::0;;;:::o;5278:967::-;8402:10;8384:28;;:14;;;;;;;;;;;:28;;;8376:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5427:20:::1;5473:1;5463:7;:11;5460:196;;;5506:12;;5491:27;;5549:1;5533:12;;:17;;;;;;;;;;;5460:196;;;5598:13;;5583:28;;5643:1;5626:13;;:18;;;;;;;;;;;5460:196;5750:1;5715:11;5727:15;5715:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;5744:1:::0;5715:31:::1;;;;;;;;;;;;:36;;;;;;;;;;;5806:31;5812:3;5817:12;5831:1;5806:31;;;;;;;;;;;::::0;:5:::1;:31::i;:::-;5885:15;5848:5;:19;5854:12;5848:19;;;;;;;;;;;:34;;:52;;;;;;;;;;;;:::i;:::-;;5942:1;5911:5;:19;5917:12;5911:19;;;;;;;;;;;:28;;:32;;;;5990:1;5954:5;:19;5960:12;5954:19;;;;;;;;;;;:33;;:37;;;;6035:1;6002:5;:19;6008:12;6002:19;;;;;;;;;;;:30;;:34;;;;6084:2;6047:5;:19;6053:12;6047:19;;;;;;;;;;;:34;;:39;;;;6131:3;6097:5;:19;6103:12;6097:19;;;;;;;;;;;:31;;:37;;;;6184:1;6145:5;:19;6151:12;6145:19;;;;;;;;;;;:36;;:40;;;;6219:3;6201:36;;;6224:12;6201:36;;;;;;;;;;;;;;;;;;8483:1;5278:967:::0;;;:::o;2150:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3396:549:2:-;3577:16;3638:3;:10;3619:8;:15;:29;3611:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3707:30;3754:8;:15;3740:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3707:63;;3788:9;3783:122;3807:8;:15;3803:1;:19;3783:122;;;3863:30;3873:8;3882:1;3873:11;;;;;;;;;;;;;;3886:3;3890:1;3886:6;;;;;;;;;;;;;;3863:9;:30::i;:::-;3844:13;3858:1;3844:16;;;;;;;;;;;;;:49;;;;;3824:3;;;;;3783:122;;;;3924:13;3917:20;;;3396:549;;;;:::o;485:34:10:-;;;;:::o;526:35::-;;;;:::o;6599:217::-;8402:10;8384:28;;:14;;;;;;;;;;;:28;;;8376:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6733:15:::1;6704:5;:14;6710:7;6704:14;;;;;;;;;;;:25;;;:44;;;;;;;;;;;6764;6783:7;6792:15;6764:44;;;;;;;;;;;;;;;;;;;;;;;;6599:217:::0;;:::o;417:29::-;;;;;;;;;;;;;:::o;8021:136::-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8117:1:::1;8083:37;;8102:5;;;;;;;;;;;8083:37;;;;;;;;;;;;8147:1;8131:5;;:18;;;;;;;;;;;;;;;;;;8021:136::o:0;2921:1359::-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3236:1:::1;3201:11;3213:15;3201:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;3230:1:::0;3201:31:::1;;;;;;;;;;;;:36;3193:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3369:14;3335:11;3347:15;3335:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;3364:1:::0;3335:31:::1;;;;;;;;;;;:48;;;;3442:9;3454:1;3442:13;;3437:836;3462:14;3457:1;:19;3437:836;;3583:6;;3549:11;3561:15;3549:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;3578:1;3549:31;;;;;;;;;;;:40;;;;3657:25;3663:3;3668:6;;3676:1;3657:25;;;;;;;;;;;::::0;:5:::1;:25::i;:::-;3728:15;3697:5;:13;3703:6;;3697:13;;;;;;;;;;;:28;;:46;;;;;;;;;;;;:::i;:::-;;3783:1;3758:5;:13;3764:6;;3758:13;;;;;;;;;;;:22;;:26;;;;3829:14;3799:5;:13;3805:6;;3799:13;;;;;;;;;;;:27;;:44;;;;3885:14;3858:5;:13;3864:6;;3858:13;;;;;;;;;;;:24;;:41;;;;3945:15;3914:5;:13;3920:6;;3914:13;;;;;;;;;;;:28;;:46;;;;4003:12;3975:5;:13;3981:6;;3975:13;;;;;;;;;;;:25;;:40;;;;4063:17;4030:5;:13;4036:6;;4030:13;;;;;;;;;;;:30;;:50;;;;4122:3;4100:100;;;4127:6;;4135:14;4151:15;4168:12;4182:17;4100:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4260:1;4250:6;;:11;;;;;;;;;;;3478:3;;;;;;;3437:836;;;;2921:1359:::0;;;;;;;:::o;390:20::-;;;;;;;;;;;;;:::o;2101:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4316:377::-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429:38:::1;4435:3;4440:6;;4448:14;4429:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;4503:1;4478:5;:13;4484:6;;4478:13;;;;;;;;;;;:22;;:26;;;;4543:12;4515:5;:13;4521:6;;4515:13;;;;;;;;;;;:25;;:40;;;;4590:3;4571:61;;;4595:6;;4603:14;4619:12;4571:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4684:1;4674:6;;:11;;;;;;;;;;;4316:377:::0;;;:::o;4018:311:2:-;4137:8;4121:24;;:12;:10;:12::i;:::-;:24;;;;4113:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4249:8;4204:18;:32;4223:12;:10;:12::i;:::-;4204:32;;;;;;;;;;;;;;;:42;4237:8;4204:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4302:8;4273:48;;4288:12;:10;:12::i;:::-;4273:48;;;4312:8;4273:48;;;;;;;;;;;;;;;;;;;;4018:311;;:::o;453:25:10:-;;;;:::o;2374:508::-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2544:38:::1;2550:3;2555:6;;2563:14;2544:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;2618:1;2593:5;:13;2599:6;;2593:13;;;;;;;;;;;:22;;:26;;;;2658:12;2630:5;:13;2636:6;;2630:13;;;;;;;;;;;:25;;:40;;;;2714:17;2681:5;:13;2687:6;;2681:13;;;;;;;;;;;:30;;:50;;;;2763:3;2747:78;;;2768:6;;2777:14;2793:12;2807:17;2747:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2873:1;2863:6;;:11;;;;;;;;;;;2374:508:::0;;;;:::o;4401:168:2:-;4500:4;4524:18;:27;4543:7;4524:27;;;;;;;;;;;;;;;:37;4552:8;4524:37;;;;;;;;;;;;;;;;;;;;;;;;;4517:44;;4401:168;;;;:::o;4641:924::-;4881:1;4867:16;;:2;:16;;;;4859:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4966:12;:10;:12::i;:::-;4958:20;;:4;:20;;;:60;;;;4982:36;4999:4;5005:12;:10;:12::i;:::-;4982:16;:36::i;:::-;4958:60;4936:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100:16;5119:12;:10;:12::i;:::-;5100:31;;5144:96;5165:8;5175:4;5181:2;5185:21;5203:2;5185:17;:21::i;:::-;5208:25;5226:6;5208:17;:25::i;:::-;5235:4;5144:20;:96::i;:::-;5275:77;5299:6;5275:77;;;;;;;;;;;;;;;;;:9;:13;5285:2;5275:13;;;;;;;;;;;:19;5289:4;5275:19;;;;;;;;;;;;;;;;:23;;:77;;;;;:::i;:::-;5253:9;:13;5263:2;5253:13;;;;;;;;;;;:19;5267:4;5253:19;;;;;;;;;;;;;;;:99;;;;5383:29;5405:6;5383:9;:13;5393:2;5383:13;;;;;;;;;;;:17;5397:2;5383:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;5363:9;:13;5373:2;5363:13;;;;;;;;;;;:17;5377:2;5363:17;;;;;;;;;;;;;;;:49;;;;5461:2;5430:46;;5455:4;5430:46;;5445:8;5430:46;;;5465:2;5469:6;5430:46;;;;;;;;;;;;;;;;;;;;;;;;5489:68;5520:8;5530:4;5536:2;5540;5544:6;5552:4;5489:30;:68::i;:::-;4641:924;;;;;;:::o;7741:234:10:-;8231:10;8222:19;;:5;;;;;;;;;;;:19;;;8214:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7844:1:::1;7823:23;;:9;:23;;;;7815:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7929:9;7901:38;;7922:5;;;;;;;;;;;7901:38;;;;;;;;;;;;7958:9;7950:5;;:17;;;;;;;;;;;;;;;;;;7741:234:::0;:::o;10108:551:2:-;10223:1;10204:21;;:7;:21;;;;10196:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10278:16;10297:12;:10;:12::i;:::-;10278:31;;10322:105;10343:8;10353:7;10370:1;10374:21;10392:2;10374:17;:21::i;:::-;10397:25;10415:6;10397:17;:25::i;:::-;10322:105;;;;;;;;;;;;:20;:105::i;:::-;10465:111;10506:6;10465:111;;;;;;;;;;;;;;;;;:9;:13;10475:2;10465:13;;;;;;;;;;;:22;10479:7;10465:22;;;;;;;;;;;;;;;;:26;;:111;;;;;:::i;:::-;10440:9;:13;10450:2;10440:13;;;;;;;;;;;:22;10454:7;10440:22;;;;;;;;;;;;;;;:136;;;;10636:1;10594:57;;10619:7;10594:57;;10609:8;10594:57;;;10640:2;10644:6;10594:57;;;;;;;;;;;;;;;;;;;;;;;;10108:551;;;;:::o;613:106:1:-;666:15;701:10;694:17;;613:106;:::o;12539:245:2:-;;;;;;;:::o;1781:192:11:-;1867:7;1900:1;1895;:6;;1903:12;1887:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1927:9;1943:1;1939;:5;1927:17;;1964:1;1957:8;;;1781:192;;;;;:::o;894:181::-;952:7;972:9;988:1;984;:5;972:17;;1013:1;1008;:6;;1000:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066:1;1059:8;;;894:181;;;;:::o;13562:799:2:-;13816:15;:2;:13;;;:15::i;:::-;13812:542;;;13869:2;13852:43;;;13896:8;13906:4;13912:3;13917:7;13926:4;13852:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13848:495;;;;:::i;:::-;;;;;;;;14216:6;14209:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13848:495;14265:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13848:495;13993:52;;;13981:64;;;:8;:64;;;;13977:163;;14070:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13977:163;13932:223;13812:542;13562:799;;;;;;:::o;8195:583::-;8329:1;8310:21;;:7;:21;;;;8302:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8382:16;8401:12;:10;:12::i;:::-;8382:31;;8426:107;8447:8;8465:1;8469:7;8478:21;8496:2;8478:17;:21::i;:::-;8501:25;8519:6;8501:17;:25::i;:::-;8528:4;8426:20;:107::i;:::-;8571:34;8598:6;8571:9;:13;8581:2;8571:13;;;;;;;;;;;:22;8585:7;8571:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;8546:9;:13;8556:2;8546:13;;;;;;;;;;;:22;8560:7;8546:22;;;;;;;;;;;;;;;:59;;;;8658:7;8621:57;;8654:1;8621:57;;8636:8;8621:57;;;8667:2;8671:6;8621:57;;;;;;;;;;;;;;;;;;;;;;;;8691:79;8722:8;8740:1;8744:7;8753:2;8757:6;8765:4;8691:30;:79::i;:::-;8195:583;;;;;:::o;14369:198::-;14435:16;14464:22;14503:1;14489:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14464:41;;14527:7;14516:5;14522:1;14516:8;;;;;;;;;;;;;:18;;;;;14554:5;14547:12;;;14369:198;;;:::o;12792:762::-;13021:15;:2;:13;;;:15::i;:::-;13017:530;;;13074:2;13057:38;;;13096:8;13106:4;13112:2;13116:6;13124:4;13057:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13053:483;;;;:::i;:::-;;;;;;;;13409:6;13402:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13053:483;13458:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13053:483;13191:47;;;13179:59;;;:8;:59;;;;13175:158;;13263:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13175:158;13130:218;13017:530;12792:762;;;;;;:::o;743:422:0:-;803:4;1011:12;1122:7;1110:20;1102:28;;1156:1;1149:4;:8;1142:15;;;743:422;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;5:97::-;;93:2;89:7;84:2;77:5;73:14;69:28;59:38;;53:49;;;:::o;110:106::-;;200:5;195:3;191:15;169:37;;163:53;;;:::o;224:739::-;;297:4;279:16;276:26;273:2;;;305:5;;273:2;339:1;336;333;318:23;357:34;388:1;382:8;357:34;:::i;:::-;414:10;409:3;406:19;396:2;;429:5;;;396:2;460;454:9;514:1;496:16;492:24;489:1;483:4;468:49;543:4;537:11;624:16;617:4;609:6;605:17;602:39;576:18;568:6;565:30;556:91;553:2;;;655:5;;;;;553:2;693:6;687:4;683:17;725:3;719:10;748:18;740:6;737:30;734:2;;;770:5;;;;;;;734:2;814:6;807:4;802:3;798:14;794:27;847:16;841:4;837:27;832:3;829:36;826:2;;;868:5;;;;;;;;826:2;912:29;934:6;912:29;:::i;:::-;905:4;900:3;896:14;892:50;888:2;881:62;955:3;948:10;;267:696;;;;;;;;:::o

Swarm Source

ipfs://b2f3226f64544324c73d5393498542ef090e117e4f0f78e5a01f78da435ef3d3
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.