ETH Price: $1,557.91 (-13.91%)

Contract

0x9ff70d528830E47154224dC5c185e4D052d0fb99
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...192097192024-02-12 4:59:47419 days ago1707713987IN
0x9ff70d52...052d0fb99
0 ETH0.0004966520.45686018
Set Approval For...187854412023-12-14 16:03:11479 days ago1702569791IN
0x9ff70d52...052d0fb99
0 ETH0.0011414447.01545039
Transfer From177634842023-07-24 14:13:35622 days ago1690208015IN
0x9ff70d52...052d0fb99
0 ETH0.0026716249.00262824
Transfer From173282382023-05-24 9:44:47683 days ago1684921487IN
0x9ff70d52...052d0fb99
0 ETH0.0016597530.44310638
Set Approval For...173258872023-05-24 1:48:23683 days ago1684892903IN
0x9ff70d52...052d0fb99
0 ETH0.0013955330.21295037
Claim173258572023-05-24 1:42:11683 days ago1684892531IN
0x9ff70d52...052d0fb99
0 ETH0.0040057330.30541761
Set Approval For...173247122023-05-23 21:51:23684 days ago1684878683IN
0x9ff70d52...052d0fb99
0 ETH0.0026069456.43961744
Set Approval For...172874492023-05-18 15:52:59689 days ago1684425179IN
0x9ff70d52...052d0fb99
0 ETH0.003916184.78248034
Claim172874072023-05-18 15:44:35689 days ago1684424675IN
0x9ff70d52...052d0fb99
0 ETH0.01410495106.64566872
Set Approval For...172653572023-05-15 13:04:35692 days ago1684155875IN
0x9ff70d52...052d0fb99
0 ETH0.0024793853.67791892
Claim172523742023-05-13 16:56:47694 days ago1683997007IN
0x9ff70d52...052d0fb99
0 ETH0.0039875335.5
Set Approval For...172447002023-05-12 14:23:35695 days ago1683901415IN
0x9ff70d52...052d0fb99
0 ETH0.0042203791.36991707
Claim172446792023-05-12 14:19:11695 days ago1683901151IN
0x9ff70d52...052d0fb99
0 ETH0.0092187869.73942891
Set Approval For...172422302023-05-12 6:01:35695 days ago1683871295IN
0x9ff70d52...052d0fb99
0 ETH0.0028321861.3159445
Safe Transfer Fr...172417092023-05-12 4:15:11695 days ago1683864911IN
0x9ff70d52...052d0fb99
0 ETH0.001612163.8177705
Safe Transfer Fr...172417092023-05-12 4:15:11695 days ago1683864911IN
0x9ff70d52...052d0fb99
0 ETH0.0036833763.8177705
Safe Transfer Fr...172408132023-05-12 1:13:23695 days ago1683854003IN
0x9ff70d52...052d0fb99
0 ETH0.0049726186.15507032
Set Approval For...172367512023-05-11 11:15:11696 days ago1683803711IN
0x9ff70d52...052d0fb99
0 ETH0.003960185.73512584
Set Approval For...172367392023-05-11 11:12:47696 days ago1683803567IN
0x9ff70d52...052d0fb99
0 ETH0.0040929388.61080536
Claim172243122023-05-09 17:16:11698 days ago1683652571IN
0x9ff70d52...052d0fb99
0 ETH0.01214236108.08296703
Set Root172236832023-05-09 15:07:59698 days ago1683644879IN
0x9ff70d52...052d0fb99
0 ETH0.00426124146.67663142
Set Approval For...172106642023-05-07 19:13:47700 days ago1683486827IN
0x9ff70d52...052d0fb99
0 ETH0.00526346113.95244215
Claim172105662023-05-07 18:53:47700 days ago1683485627IN
0x9ff70d52...052d0fb99
0 ETH0.01654645125.11309318
Set Approval For...171868882023-05-04 11:04:11703 days ago1683198251IN
0x9ff70d52...052d0fb99
0 ETH0.0034631674.97650691
Safe Transfer Fr...171747982023-05-02 18:15:23705 days ago1683051323IN
0x9ff70d52...052d0fb99
0 ETH0.0056605498.07413736
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BadTrip

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-26
*/

// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// ============ Imports ============

/// @notice Modern, minimalist, and gas efficient ERC-721 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 indexed id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*//////////////////////////////////////////////////////////////
                         METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 id) public view virtual returns (string memory);

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) internal _ownerOf;

    mapping(address => uint256) internal _balanceOf;

    function ownerOf(uint256 id) public view virtual returns (address owner) {
        require((owner = _ownerOf[id]) != address(0), "NOT_MINTED");
    }

    function balanceOf(address owner) public view virtual returns (uint256) {
        require(owner != address(0), "ZERO_ADDRESS");

        return _balanceOf[owner];
    }

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) public getApproved;

    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
    }

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 id) public virtual {
        address owner = _ownerOf[id];

        require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED");

        getApproved[id] = spender;

        emit Approval(owner, spender, id);
    }

    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        require(from == _ownerOf[id], "WRONG_FROM");

        require(to != address(0), "INVALID_RECIPIENT");

        require(
            msg.sender == from || isApprovedForAll[from][msg.sender] || msg.sender == getApproved[id],
            "NOT_AUTHORIZED"
        );

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _balanceOf[from]--;

            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

        delete getApproved[id];

        emit Transfer(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 id) internal virtual {
        require(to != address(0), "INVALID_RECIPIENT");

        require(_ownerOf[id] == address(0), "ALREADY_MINTED");

        // Counter overflow is incredibly unrealistic.
        unchecked {
            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

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

    function _burn(uint256 id) internal virtual {
        address owner = _ownerOf[id];

        require(owner != address(0), "NOT_MINTED");

        // Ownership check above ensures no underflow.
        unchecked {
            _balanceOf[owner]--;
        }

        delete _ownerOf[id];

        delete getApproved[id];

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

    /*//////////////////////////////////////////////////////////////
                        INTERNAL SAFE MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    function _safeMint(address to, uint256 id) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _safeMint(
        address to,
        uint256 id,
        bytes memory data
    ) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }
}

/// @notice A generic interface for a contract which properly accepts ERC721 tokens.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721TokenReceiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721TokenReceiver.onERC721Received.selector;
    }
}
 // Solmate: ERC20

// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
 // OZ: MerkleProof

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

/// @title BadTrip
contract BadTrip is ERC721, Ownable {

  uint256 public tokenId;

  enum Team {
    Dark,Light,Dithers
  }
  mapping (uint256 => Team) public team;
  /// ============ Immutable storage ============

  /// @notice ERC20-claimee inclusion root
  bytes32 public merkleRoot;

  /// ============ Mutable storage ============

  /// @notice Mapping of addresses who have claimed tokens
  mapping(address => bool) public hasClaimed;

  /// ============ Errors ============

  /// @notice Thrown if address has already claimed
  error AlreadyClaimed();
  /// @notice Thrown if address/amount are not part of Merkle tree
  error NotInMerkle();

  /// ============ Constructor ============

  /// @notice Creates a new BadTrip contract
  /// @param _name of token
  /// @param _symbol of token
  /// @param _merkleRoot of claimees
  constructor(
    string memory _name,
    string memory _symbol,
    bytes32 _merkleRoot
  ) ERC721(_name, _symbol) {
    merkleRoot = _merkleRoot; // Update root
    tokenId = 1;
  }

  /// ============ Events ============

  /// @notice Emitted after a successful token claim
  /// @param to recipient of claim
  /// @param amount of tokens claimed
  event Claim(address indexed to, uint256 amount);

  event JoinedTeam(uint256 indexed tokenId, Team team);

  /// ============ Functions ============

  /// @notice Allows claiming tokens if address is part of merkle tree
  /// @param to address of claimee
  /// @param amount of tokens owed to claimee
  /// @param proof merkle proof to prove address and amount are in tree
  function claim(address to, uint256 amount, bytes32[] calldata proof) external {
    // Throw if address has already claimed tokens
    if (hasClaimed[to]) revert AlreadyClaimed();

    // Verify merkle proof, or revert if not in tree
    bytes32 leaf = keccak256(abi.encodePacked(to, amount));
    bool isValidLeaf = MerkleProof.verify(proof, merkleRoot, leaf);
    if (!isValidLeaf) revert NotInMerkle();

    // Set address to claimed
    hasClaimed[to] = true;

    // Mint tokens to address
    for (uint256 i = 0; i < amount; i++) {
      uint256 tokenId = tokenId++;

      if (tokenId % 3 == 0 ) {
        team[tokenId] = Team.Dithers;
      } else if (tokenId % 2 == 1) {
        team[tokenId] = Team.Light;
      } else {
        team[tokenId] = Team.Dark;
      }
      emit JoinedTeam(tokenId, team[tokenId]);
      _mint(to, tokenId);
    }

    // Emit claim event
    emit Claim(to, amount);
  }

  function setRoot(bytes32 newRoot) external onlyOwner {
    merkleRoot = newRoot;
  }

  function changeTeam(uint256 tokenId, uint8 newTeam) external {
    require(ownerOf(tokenId) == msg.sender && team[tokenId] == Team.Dithers, "only Dithers can change team");
    require(newTeam == 1 || newTeam == 0, "must choose Team Light or Dark");
    team[tokenId] = (newTeam == 1) ? Team.Light : Team.Dark;
    emit JoinedTeam(tokenId, team[tokenId]);
  }

  function tokenURI(uint256 tokenId) public view override returns(string memory) {
    ownerOf(tokenId);

    Team team = team[tokenId];
    string memory teamName = unicode"ḋ̵̞̲͖͙̥̈́͒̈́̽̏̍̒́͑̓͆̎̔́͊͐̈́̉̆̔̀͋̈́͐̓͛́̅͘͝ỉ̶̢̪̫̳͖͖̭͚̤͚͓̣̗̼̘̟͔͈̝̪̣̗̩͕̰͓̔̌͐̿͂̇̌̔̑̈́͂̏͒̄́̋͋̀͂́́̓̏̊̅̊͆̒̈̆̈́̓̇̉͑͛̚̕̚̚̚͘̚͝͝͠͠͠ť̴̢̨̛̛̟̭̰͔̰͍̞͇̘̞̙̘̏̎͛͂̓̄̾̉̋͂͛̄̎̐̌̌̓̈́͊͌͂̉̈͊̇̉͑̔̎̆̽̓̏̈́̊͆̀͒̽͘̕͜͝͝͝͠h̸̡͖͖̬̺̘̥̪̖̺̼̩̬̮̫̠͕̻͕̯͖̉͊̉͛̌̎͒̓̋̓̈͒̑̅̚̚͠͝͝ͅȩ̵̟͖͉̩͕͙̰̫̘̹̣̜̭͕̼̝̱̝͕̙̪̳̥̤̦̳̩͓̳͙̯̮̪̦̳͎̗͖͗̈́͌͜ŗ̵̡̢̡̧̧̡̢̛̮͖̮̼̯̣̣͍̥̠̩̬͍͇̮͈̳̜̪͙͙͕̟̝͙͈̪̪̣̺͚̩͔͈̩͔̉͋́̈́̈́̂̏̆ͅͅs̷̢̡͍̻͓̋͐̃͐̔͌̊̆͛̉̉̀̽̔̐̿͋̽̆͗̊͊͌̓̈͛͛͘͝";
    if (team == Team.Light) {
      teamName = "Light";
    } else if (team == Team.Dark) {
      teamName = "Dark";
    }
    string memory manifestName = unicode"B̷̤͍̬̝̝͐͋ͅä̸̛͇̮̫̬̙͈̜̲́̉̓͐̀̆̑̿̊͆͜ḑ̵͙̺̝͈̇̅̅̔͐̀͐́̂̽̅̈́ͅT̵̲͎̤͎̮̓̈́͛̚͜r̴̖̝͙͕̜̺̱̗̄̍̌̀͜į̷̡̧͔̖͖̘̫̦̺͉͔̤͆͛̈̐̓͌̂̈́̿͌͊̄̿̄͝ͅp̵̛̛̜̦͂̎̀̿̓͂̾̈́͛͝";
    string memory description = unicode"ổ̷̧̢̲̞̥̠̣͈͈̈̂̃̄͜ͅņ̴̢̮̦̦̭̬̺̻̙̜͂̋̍̄ȩ̵̢̞̜̫̓̈̏̍̓̄͂͒̐́̿̊̃͠ ̴̫̖̺͈̿̈́̌̓̾̒̚b̵̢̻̬͙̱̱͓͕̻̭̤͕͈̽̀̀͑́̀̋̿̅́a̴̜͍͔͉̠͙̐̌d̶̨̨̹̮̜̪̟̣̝̗̫̄̓͛̒́̀̑̆̈́ ̵̨̡̹̫͔̿́̀́̊t̶̛̲̞͇̱̮͛̎̑̀̅͊͛̍͝r̵̛̫̀̄͆̎̾͒̀̈́̉̅̇̒i̴̧̛̭͚̱̖̱̪̅̿͐͌̓͑͗̓͋̕͝͠p̴̛̦̗͆͛͆͠ ̴̡̤͍̗̜̰̳̝̹̳̹͚͕͆̈́͊͆̽́̌ḑ̷̛̘̖̝̲͍̬͚̙̖͔̓̏̀̆͌̏̀͋̍̅͝ȩ̶͈̤͍͈̻̜̎̒͌͝ś̶̨̻̠̹̻̲̲̤͇̜̊ḕ̸̡̛̼̻̗̝̓͐͒͝r̷̛̯̘̫̗̞̉̂̈̏v̴͙̻̤͎̠̤͇̠͓̬͎̙͍̻̠̐͑̎̅͋͌͂̃͋͘̕ė̸͍͕͙̜̩̑̀̊͗̒̐̿̐͘͠s̴̢̩̰̭͖̤̣̺͉̦͔̤̩̊̎̈́̀̍͂͊̍͋͜ ̵̬͖̆͑̄a̸̢̢̧͉̜̯̼̖̎̅̑͋͐̒̃͑̋̂̎̉̋͘ͅͅṋ̴̼͖͚̪̏͗͊͑͗̂̆o̴̙̞̰̪͕̲̓t̷̨̧̧̘͈̰̺̯̹̂̈́̌͋͂̎̌̿̈́̾͋̔̈̂̚h̵̢̟͙̝̩̠̮͎̝̠͋̅̒̆̎͗̓̈́͊̃̀͝ę̵̛͉̘̪̻̗̬̗̖̙͉̹̲̖̋̓͊͐̈́̓̈́̏́͝r̸̺̱̪͍̙̼͕̱͖͊̅͐͑͜ͅ";
    return string.concat(
      'data:application/json,{"name":"' , manifestName, '", "description":"', description, '","animation_url": "ipfs://ipfs/bafybeief2vot5ljxyqpnpu6sb5cabpr2fnmhwyxtyd7yzjdddvlwz2n5wq","attributes":[{"trait_type":"Artist","value":"Chewy Stoll"},{"trait_type":"Team","value":"', teamName,
      '"}]}'
    );
  }

  function setName(string memory newName) public onlyOwner {
    name = newName;
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"NotInMerkle","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"enum BadTrip.Team","name":"team","type":"uint8"}],"name":"JoinedTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"newTeam","type":"uint8"}],"name":"changeTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"string","name":"newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"team","outputs":[{"internalType":"enum BadTrip.Team","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200255f3803806200255f83398101604081905262000034916200019b565b828260006200004483826200029d565b5060016200005382826200029d565b505050620000706200006a6200008060201b60201c565b62000084565b6009555050600160075562000369565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000fe57600080fd5b81516001600160401b03808211156200011b576200011b620000d6565b604051601f8301601f19908116603f01168101908282118183101715620001465762000146620000d6565b816040528381526020925086838588010111156200016357600080fd5b600091505b8382101562000187578582018301518183018401529082019062000168565b600093810190920192909252949350505050565b600080600060608486031215620001b157600080fd5b83516001600160401b0380821115620001c957600080fd5b620001d787838801620000ec565b94506020860151915080821115620001ee57600080fd5b50620001fd86828701620000ec565b925050604084015190509250925092565b600181811c908216806200022357607f821691505b6020821081036200024457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029857600081815260208120601f850160051c81016020861015620002735750805b601f850160051c820191505b8181101562000294578281556001016200027f565b5050505b505050565b81516001600160401b03811115620002b957620002b9620000d6565b620002d181620002ca84546200020e565b846200024a565b602080601f831160018114620003095760008415620002f05750858301515b600019600386901b1c1916600185901b17855562000294565b600085815260208120601f198616915b828110156200033a5788860151825594840194600190910190840162000319565b5085821015620003595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121e680620003796000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610309578063c47f00271461031c578063c87b56dd1461032f578063dab5f34014610342578063e985e9c514610355578063f2fde38b1461038357600080fd5b806370a082311461029f578063715018a6146102b257806373b2e80e146102ba5780638da5cb5b146102dd57806395d89b41146102ee578063a22cb465146102f657600080fd5b8063197ebd5311610115578063197ebd531461021a57806323b872dd1461024a5780632eb4a7ab1461025d5780633d13f8741461026657806342842e0e146102795780636352211e1461028c57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101db5780630a42654e146101f057806317d70f7c14610203575b600080fd5b61017061016b36600461123c565b610396565b60405190151581526020015b60405180910390f35b61018d6103e8565b60405161017c919061127d565b6101c36101a83660046112b0565b6004602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161017c565b6101ee6101e93660046112e0565b610476565b005b6101ee6101fe36600461130a565b61055d565b61020c60075481565b60405190815260200161017c565b61023d6102283660046112b0565b60086020526000908152604090205460ff1681565b60405161017c9190611356565b6101ee61025836600461137e565b6106dc565b61020c60095481565b6101ee6102743660046113ba565b6108a3565b6101ee61028736600461137e565b610af9565b6101c361029a3660046112b0565b610bf1565b61020c6102ad366004611444565b610c48565b6101ee610cab565b6101706102c8366004611444565b600a6020526000908152604090205460ff1681565b6006546001600160a01b03166101c3565b61018d610cbf565b6101ee61030436600461145f565b610ccc565b6101ee610317366004611490565b610d38565b6101ee61032a366004611541565b610e20565b61018d61033d3660046112b0565b610e38565b6101ee6103503660046112b0565b610f54565b6101706103633660046115f2565b600560209081526000928352604080842090915290825290205460ff1681565b6101ee610391366004611444565b610f61565b60006301ffc9a760e01b6001600160e01b0319831614806103c757506380ac58cd60e01b6001600160e01b03198316145b806103e25750635b5e139f60e01b6001600160e01b03198316145b92915050565b600080546103f590611625565b80601f016020809104026020016040519081016040528092919081815260200182805461042190611625565b801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b505050505081565b6000818152600260205260409020546001600160a01b0316338114806104bf57506001600160a01b038116600090815260056020908152604080832033845290915290205460ff165b6105015760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526004602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3361056783610bf1565b6001600160a01b031614801561059f5750600260008381526008602052604090205460ff16600281111561059d5761059d611340565b145b6105eb5760405162461bcd60e51b815260206004820152601c60248201527f6f6e6c7920446974686572732063616e206368616e6765207465616d0000000060448201526064016104f8565b8060ff16600114806105fe575060ff8116155b61064a5760405162461bcd60e51b815260206004820152601e60248201527f6d7573742063686f6f7365205465616d204c69676874206f72204461726b000060448201526064016104f8565b8060ff1660011461065c57600061065f565b60015b6000838152600860205260409020805460ff1916600183600281111561068757610687611340565b02179055506000828152600860205260409081902054905183917fcbacfd927daf74dabcb2fd531bebf0ad1029412c4c47c01f66e1baf4e14d8275916106d09160ff1690611356565b60405180910390a25050565b6000818152600260205260409020546001600160a01b038481169116146107325760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b60448201526064016104f8565b6001600160a01b03821661077c5760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b60448201526064016104f8565b336001600160a01b03841614806107b657506001600160a01b038316600090815260056020908152604080832033845290915290205460ff165b806107d757506000818152600460205260409020546001600160a01b031633145b6108145760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016104f8565b6001600160a01b0380841660008181526003602090815260408083208054600019019055938616808352848320805460010190558583526002825284832080546001600160a01b03199081168317909155600490925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0384166000908152600a602052604090205460ff16156108dd57604051630c8d9eab60e31b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506000610961848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150859050610fda565b9050806109815760405163452c2df160e11b815260040160405180910390fd5b6001600160a01b0386166000908152600a60205260408120805460ff191660011790555b85811015610aad5760078054600091826109be8361165f565b9091555090506109cf600382611686565b6000036109fc57600081815260086020526040902080546002919060ff19166001835b0217905550610a44565b610a07600282611686565b600103610a2d57600081815260086020526040902080546001919060ff191682806109f2565b6000818152600860205260409020805460ff191690555b6000818152600860205260409081902054905182917fcbacfd927daf74dabcb2fd531bebf0ad1029412c4c47c01f66e1baf4e14d827591610a889160ff1690611356565b60405180910390a2610a9a8882610ff0565b5080610aa58161165f565b9150506109a5565b50856001600160a01b03167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d486604051610ae991815260200190565b60405180910390a2505050505050565b610b048383836106dc565b6001600160a01b0382163b1580610bad5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba191906116a8565b6001600160e01b031916145b610bec5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b60448201526064016104f8565b505050565b6000818152600260205260409020546001600160a01b031680610c435760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b60448201526064016104f8565b919050565b60006001600160a01b038216610c8f5760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b60448201526064016104f8565b506001600160a01b031660009081526003602052604090205490565b610cb36110fb565b610cbd6000611155565b565b600180546103f590611625565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d438585856106dc565b6001600160a01b0384163b1580610dda5750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610d8b9033908a908990899089906004016116c5565b6020604051808303816000875af1158015610daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dce91906116a8565b6001600160e01b031916145b610e195760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b60448201526064016104f8565b5050505050565b610e286110fb565b6000610e348282611767565b5050565b6060610e4382610bf1565b50600082815260086020908152604080832054815161030081019092526102de80835260ff90911693926119d19083013990506001826002811115610e8a57610e8a611340565b03610eb15750604080518082019091526005815264131a59da1d60da1b6020820152610ee7565b6000826002811115610ec557610ec5611340565b03610ee757506040805180820190915260048152634461726b60e01b60208201525b600060405180610120016040528060fd81526020016120b460fd9139905060006040518061044001604052806104058152602001611caf61040591399050818184604051602001610f3a93929190611843565b604051602081830303815290604052945050505050919050565b610f5c6110fb565b600955565b610f696110fb565b6001600160a01b038116610fce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104f8565b610fd781611155565b50565b600082610fe785846111a7565b14949350505050565b6001600160a01b03821661103a5760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b60448201526064016104f8565b6000818152600260205260409020546001600160a01b0316156110905760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b60448201526064016104f8565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6006546001600160a01b03163314610cbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104f8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b84518110156111ec576111d8828683815181106111cb576111cb6119ba565b60200260200101516111f4565b9150806111e48161165f565b9150506111ac565b509392505050565b600081831061121057600082815260208490526040902061121f565b60008381526020839052604090205b9392505050565b6001600160e01b031981168114610fd757600080fd5b60006020828403121561124e57600080fd5b813561121f81611226565b60005b8381101561127457818101518382015260200161125c565b50506000910152565b602081526000825180602084015261129c816040850160208701611259565b601f01601f19169190910160400192915050565b6000602082840312156112c257600080fd5b5035919050565b80356001600160a01b0381168114610c4357600080fd5b600080604083850312156112f357600080fd5b6112fc836112c9565b946020939093013593505050565b6000806040838503121561131d57600080fd5b82359150602083013560ff8116811461133557600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061137857634e487b7160e01b600052602160045260246000fd5b91905290565b60008060006060848603121561139357600080fd5b61139c846112c9565b92506113aa602085016112c9565b9150604084013590509250925092565b600080600080606085870312156113d057600080fd5b6113d9856112c9565b935060208501359250604085013567ffffffffffffffff808211156113fd57600080fd5b818701915087601f83011261141157600080fd5b81358181111561142057600080fd5b8860208260051b850101111561143557600080fd5b95989497505060200194505050565b60006020828403121561145657600080fd5b61121f826112c9565b6000806040838503121561147257600080fd5b61147b836112c9565b91506020830135801515811461133557600080fd5b6000806000806000608086880312156114a857600080fd5b6114b1866112c9565b94506114bf602087016112c9565b935060408601359250606086013567ffffffffffffffff808211156114e357600080fd5b818801915088601f8301126114f757600080fd5b81358181111561150657600080fd5b89602082850101111561151857600080fd5b9699959850939650602001949392505050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561155357600080fd5b813567ffffffffffffffff8082111561156b57600080fd5b818401915084601f83011261157f57600080fd5b8135818111156115915761159161152b565b604051601f8201601f19908116603f011681019083821181831017156115b9576115b961152b565b816040528281528760208487010111156115d257600080fd5b826020860160208301376000928101602001929092525095945050505050565b6000806040838503121561160557600080fd5b61160e836112c9565b915061161c602084016112c9565b90509250929050565b600181811c9082168061163957607f821691505b60208210810361165957634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161167f57634e487b7160e01b600052601160045260246000fd5b5060010190565b6000826116a357634e487b7160e01b600052601260045260246000fd5b500690565b6000602082840312156116ba57600080fd5b815161121f81611226565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b601f821115610bec57600081815260208120601f850160051c810160208610156117405750805b601f850160051c820191505b8181101561175f5782815560010161174c565b505050505050565b815167ffffffffffffffff8111156117815761178161152b565b6117958161178f8454611625565b84611719565b602080601f8311600181146117ca57600084156117b25750858301515b600019600386901b1c1916600185901b17855561175f565b600085815260208120601f198616915b828110156117f9578886015182559484019460019091019084016117da565b50858210156118175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008151611839818560208601611259565b9290920192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b226e616d65223a220081526000845161187b81601f850160208901611259565b71111610113232b9b1b934b83a34b7b7111d1160711b601f9184019182015284516118ad816031840160208901611259565b7f222c22616e696d6174696f6e5f75726c223a2022697066733a2f2f697066732f603192909101918201527f62616679626569656632766f74356c6a787971706e707536736235636162707260518201527f32666e6d6877797874796437797a6a646464766c777a326e357771222c22617460718201527f7472696275746573223a5b7b2274726169745f74797065223a2241727469737460918201527f222c2276616c7565223a2243686577792053746f6c6c227d2c7b22747261697460b18201527f5f74797065223a225465616d222c2276616c7565223a2200000000000000000060d18201526119a360e8820185611827565b63227d5d7d60e01b81526004019695505050505050565b634e487b7160e01b600052603260045260246000fdfee1b88bccb5cc9eccb2cd96cd99cca5cc88cc81cd92cc88cc81ccbdcc8fcc8dcc92cc81cd91cc93cd86cc8ecc94cc81cd8acd90cc88cc81cc89cc86cc94cc80cd8bcc88cc81cd90cc93cd9bcc81cc85cd98cd9de1bb89ccb6cca2ccaaccabccb3cd96cd96ccadcd9acca4cd9acd93cca3cc97ccbccc98cc9fcd94cd88cc9dccaacca3cc97cca9cd95ccb0cd93cc94cc8ccd90ccbfcd82cc87cc8ccc94cc91cc88cc81cd82cc8fcd92cc84cc81cc8bcd8bcc80cd82cc81cc81cc93cc8fcc8acc85cc8acd86cc92cc88cc86cc88cc81cc93cc87cc89cd91cd9bcc9acc95cc9acc9acc9acd98cc9acd9dcd9dcda0cda0cda0c5a5ccb4cca2cca8cc9bcc9bcc9fccadccb0cd94ccb0cd8dcc9ecd87cc98cc9ecc99cc98cc8fcc8ecd9bcd82cc93cc84ccbecc89cc8bcd82cd9bcc84cc8ecc90cc8ccc8ccc93cc88cc81cd8acd8ccd82cc89cc88cd8acc87cc89cd91cc94cc8ecc86ccbdcc93cc8fcc88cc81cc8acd86cc80cd92ccbdcd98cc95cd9ccd9dcd9dcd9dcda068ccb8cca1cd96cd96ccacccbacc98cca5ccaacc96ccbaccbccca9ccacccaeccabcca0cd95ccbbcd95ccafcd96cc89cd8acc89cd9bcc8ccc8ecd92cc93cc8bcc93cc88cd92cc91cc85cc9acc9acda0cd9dcd9dcd85c8a9ccb5cc9fcd96cd89cca9cd95cd99ccb0ccabcc98ccb9cca3cc9cccadcd95ccbccc9dccb1cc9dcd95cc99ccaaccb3cca5cca4cca6ccb3cca9cd93ccb3cd99ccafccaeccaacca6ccb3cd8ecc97cd96cd97cc88cc81cd8ccd9cc597ccb5cca1cca2cca1cca7cca7cca1cca2cc9bccaecd96ccaeccbcccafcca3cca3cd8dcca5cca0cca9ccaccd8dcd87ccaecd88ccb3cc9cccaacd99cd99cd95cc9fcc9dcd99cd88ccaaccaacca3ccbacd9acca9cd94cd88cca9cd94cc89cd8bcc81cc88cc81cc88cc81cc82cc8fcc86cd85cd8573ccb7cca2cca1cd8dccbbcd93cc8bcd90cc83cd90cc94cd8ccc8acc86cd9bcc89cc89cc80ccbdcc94cc90ccbfcd8bccbdcc86cd97cc8acd8acd8ccc93cc88cd9bcd9bcd98cd9de1bb95ccb7cca7cca2ccb2cc9ecca5cca0cca3cd88cd88cc88cc82cc83cc84cd9ccd85c586ccb4cca2ccaecca6cca6ccadccacccbaccbbcc99cc9ccd82cc8bcc8dcc84c8a9ccb5cca2cc9ecc9cccabcc93cc88cc8fcc8dcc93cc84cd82cd92cc90cc81ccbfcc8acc83cda020ccb4ccabcc96ccbacd88ccbfcc88cc81cc8ccc93ccbecc92cc9a62ccb5cca2ccbbccaccd99ccb1ccb1cd93cd95ccbbccadcca4cd95cd88ccbdcc80cc80cd91cc81cc80cc8bccbfcc85cc8161ccb4cc9ccd8dcd94cd89cca0cd99cc90cc8c64ccb6cca8cca8ccb9ccaecc9cccaacc9fcca3cc9dcc97ccabcc84cc93cd9bcc92cc81cc80cc91cc86cc88cc8120ccb5cca8cca1ccb9ccabcd94ccbfcc81cc80cc81cc8a74ccb6cc9bccb2cc9ecd87ccb1ccaecd9bcc8ecc91cc80cc85cd8acd9bcc8dcd9d72ccb5cc9bccabcc80cc84cd86cc8eccbecd92cc80cc88cc81cc89cc85cc87cc9269ccb4cca7cc9bccadcd9accb1cc96ccb1ccaacc85ccbfcd90cd8ccc93cd91cd97cc93cd8bcc95cd9dcda070ccb4cc9bcca6cc97cd86cd9bcd86cda020ccb4cca1cca4cd8dcc97cc9cccb0ccb3cc9dccb9ccb3ccb9cd9acd95cd86cc88cc81cd8acd86ccbdcc81cc8ce1b891ccb7cc9bcc98cc96cc9dccb2cd8dccaccd9acc99cc96cd94cc93cc8fcc80cc86cd8ccc8fcc80cd8bcc8dcc85cd9dc8a9ccb6cd88cca4cd8dcd88ccbbcc9ccc8ecc92cd8ccd9dc59bccb6cca8ccbbcca0ccb9ccbbccb2ccb2cca4cd87cc9ccc8ae1b895ccb8cca1cc9bccbcccbbcc97cc9dcc93cd90cd92cd9d72ccb7cc9bccafcc98ccabcc97cc9ecc89cc82cc88cc8f76ccb4cd99ccbbcca4cd8ecca0cca4cd87cca0cd93ccaccd8ecc99cd8dccbbcca0cc90cd91cc8ecc85cd8bcd8ccd82cc83cd8bcd98cc95c497ccb8cd8dcd95cd99cc9ccca9cc91cc80cc8acd97cc92cc90ccbfcc90cd98cda073ccb4cca2cca9ccb0ccadcd96cca4cca3ccbacd89cca6cd94cca4cca9cc8acc8ecc88cc81cc80cc8dcd82cd8acc8dcd8bcd9c20ccb5ccaccd96cc86cd91cc8461ccb8cca2cca2cca7cd89cc9cccafccbccc96cc8ecc85cc91cd8bcd90cc92cc83cd91cc8bcc82cc8ecc89cc8bcd98cd85cd85e1b98bccb4ccbccd96cd9accaacc8fcd97cd8acd91cd97cc82cc866fccb4cc99cc9eccb0ccaacd95ccb2cc9374ccb7cca8cca7cca7cc98cd88ccb0ccbaccafccb9cc82cc88cc81cc8ccd8bcd82cc8ecc8cccbfcc88cc81ccbecd8bcc94cc88cc82cc9a68ccb5cca2cc9fcd99cc9dcca9cca0ccaecd8ecc9dcca0cd8bcc85cc92cc86cc8ecd97cc93cc88cc81cd8acc83cc80cd9dc499ccb5cc9bcd89cc98ccaaccbbcc97ccaccc97cc96cc99cd89ccb9ccb2cc96cc8bcc93cd8acd90cc88cc81cc93cc88cc81cc8fcc81cd9d72ccb8ccbaccb1ccaacd8dcc99ccbccd95ccb1cd96cd8acc85cd90cd91cd9ccd8542ccb7cca4cd8dccaccc9dcc9dcd90cd8bcd85c3a4ccb8cc9bcd87ccaeccabccaccc99cd88cc9cccb2cc81cc89cc93cd90cc80cc86cc91ccbfcc8acd86cd9ce1b891ccb5cd99ccbacc9dcd88cc87cc85cc85cc94cd90cc80cd90cc81cc82ccbdcc85cc88cc81cd8554ccb5ccb2cd8ecca4cd8eccaecc93cc88cc81cd9bcc9acd9c72ccb4cc96cc9dcd99cd95cc9cccbaccb1cc97cc84cc8dcc8ccc80cd9cc4afccb7cca1cca7cd94cc96cd96cc98ccabcca6ccbacd89cd94cca4cd86cd9bcc88cc90cc93cd8ccc82cc88cc81ccbfcd8ccd8acc84ccbfcc84cd9dcd8570ccb5cc9bcc9bcc9ccd82cc8ecc80ccbfcc93cd82ccbecca6cc88cc81cd9bcd9da26469706673582212204f36f87b05c0bdef930f90d906b975d670e29820b492120f1977f7ad889f861064736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001a0bcf40b69faf12cf84940acf2472282282646da65c4e46a35b45c79f10833bf35000000000000000000000000000000000000000000000000000000000000010442ccb7cca4cd8dccaccc9dcc9dcd90cd8bcd85c3a4ccb8cc9bcd87ccaeccabccaccc99cd88cc9cccb2cc81cc89cc93cd90cc80cc86cc91ccbfcc8acd86cd9ce1b891ccb5cd99ccbacc9dcd88cc87cc85cc85cc94cd90cc80cd90cc81cc82ccbdcc85cc88cc81cd8554ccb5ccb2cd8ecca4cd8eccaecc93cc88cc81cd9bcc9acd9c72ccb4cc96cc9dcd99cd95cc9cccbaccb1cc97cc84cc8dcc8ccc80cd9cc4afccb7cca1cca7cd94cc96cd96cc98ccabcca6ccbacd89cd94cca4cd86cd9bcc88cc90cc93cd8ccc82cc88cc81ccbfcd8ccd8acc84ccbfcc84cd9dcd8570ccb5cc9bcc9bcc9ccd82cc8ecc80ccbfcc93cd82ccbecc9770ccb8cc99cca6cc88cc81cd9bcd9d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a4cccb7ccb2cc91cc86cc80cc87cc89cc82cc80cc92cc8ecc95c898ccb7cc9bcd86cd92cc81cc88cc85cd8bcc8fcc91cd97cc9544ccb5cca1ccaccca3cc9cccabcca5cd92cc8dcc81cc8ecd91cc92cd82cc88cc81cc90cc80cd9c000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610309578063c47f00271461031c578063c87b56dd1461032f578063dab5f34014610342578063e985e9c514610355578063f2fde38b1461038357600080fd5b806370a082311461029f578063715018a6146102b257806373b2e80e146102ba5780638da5cb5b146102dd57806395d89b41146102ee578063a22cb465146102f657600080fd5b8063197ebd5311610115578063197ebd531461021a57806323b872dd1461024a5780632eb4a7ab1461025d5780633d13f8741461026657806342842e0e146102795780636352211e1461028c57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101db5780630a42654e146101f057806317d70f7c14610203575b600080fd5b61017061016b36600461123c565b610396565b60405190151581526020015b60405180910390f35b61018d6103e8565b60405161017c919061127d565b6101c36101a83660046112b0565b6004602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161017c565b6101ee6101e93660046112e0565b610476565b005b6101ee6101fe36600461130a565b61055d565b61020c60075481565b60405190815260200161017c565b61023d6102283660046112b0565b60086020526000908152604090205460ff1681565b60405161017c9190611356565b6101ee61025836600461137e565b6106dc565b61020c60095481565b6101ee6102743660046113ba565b6108a3565b6101ee61028736600461137e565b610af9565b6101c361029a3660046112b0565b610bf1565b61020c6102ad366004611444565b610c48565b6101ee610cab565b6101706102c8366004611444565b600a6020526000908152604090205460ff1681565b6006546001600160a01b03166101c3565b61018d610cbf565b6101ee61030436600461145f565b610ccc565b6101ee610317366004611490565b610d38565b6101ee61032a366004611541565b610e20565b61018d61033d3660046112b0565b610e38565b6101ee6103503660046112b0565b610f54565b6101706103633660046115f2565b600560209081526000928352604080842090915290825290205460ff1681565b6101ee610391366004611444565b610f61565b60006301ffc9a760e01b6001600160e01b0319831614806103c757506380ac58cd60e01b6001600160e01b03198316145b806103e25750635b5e139f60e01b6001600160e01b03198316145b92915050565b600080546103f590611625565b80601f016020809104026020016040519081016040528092919081815260200182805461042190611625565b801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b505050505081565b6000818152600260205260409020546001600160a01b0316338114806104bf57506001600160a01b038116600090815260056020908152604080832033845290915290205460ff165b6105015760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526004602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3361056783610bf1565b6001600160a01b031614801561059f5750600260008381526008602052604090205460ff16600281111561059d5761059d611340565b145b6105eb5760405162461bcd60e51b815260206004820152601c60248201527f6f6e6c7920446974686572732063616e206368616e6765207465616d0000000060448201526064016104f8565b8060ff16600114806105fe575060ff8116155b61064a5760405162461bcd60e51b815260206004820152601e60248201527f6d7573742063686f6f7365205465616d204c69676874206f72204461726b000060448201526064016104f8565b8060ff1660011461065c57600061065f565b60015b6000838152600860205260409020805460ff1916600183600281111561068757610687611340565b02179055506000828152600860205260409081902054905183917fcbacfd927daf74dabcb2fd531bebf0ad1029412c4c47c01f66e1baf4e14d8275916106d09160ff1690611356565b60405180910390a25050565b6000818152600260205260409020546001600160a01b038481169116146107325760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b60448201526064016104f8565b6001600160a01b03821661077c5760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b60448201526064016104f8565b336001600160a01b03841614806107b657506001600160a01b038316600090815260056020908152604080832033845290915290205460ff165b806107d757506000818152600460205260409020546001600160a01b031633145b6108145760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016104f8565b6001600160a01b0380841660008181526003602090815260408083208054600019019055938616808352848320805460010190558583526002825284832080546001600160a01b03199081168317909155600490925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0384166000908152600a602052604090205460ff16156108dd57604051630c8d9eab60e31b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506000610961848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150859050610fda565b9050806109815760405163452c2df160e11b815260040160405180910390fd5b6001600160a01b0386166000908152600a60205260408120805460ff191660011790555b85811015610aad5760078054600091826109be8361165f565b9091555090506109cf600382611686565b6000036109fc57600081815260086020526040902080546002919060ff19166001835b0217905550610a44565b610a07600282611686565b600103610a2d57600081815260086020526040902080546001919060ff191682806109f2565b6000818152600860205260409020805460ff191690555b6000818152600860205260409081902054905182917fcbacfd927daf74dabcb2fd531bebf0ad1029412c4c47c01f66e1baf4e14d827591610a889160ff1690611356565b60405180910390a2610a9a8882610ff0565b5080610aa58161165f565b9150506109a5565b50856001600160a01b03167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d486604051610ae991815260200190565b60405180910390a2505050505050565b610b048383836106dc565b6001600160a01b0382163b1580610bad5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba191906116a8565b6001600160e01b031916145b610bec5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b60448201526064016104f8565b505050565b6000818152600260205260409020546001600160a01b031680610c435760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b60448201526064016104f8565b919050565b60006001600160a01b038216610c8f5760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b60448201526064016104f8565b506001600160a01b031660009081526003602052604090205490565b610cb36110fb565b610cbd6000611155565b565b600180546103f590611625565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d438585856106dc565b6001600160a01b0384163b1580610dda5750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610d8b9033908a908990899089906004016116c5565b6020604051808303816000875af1158015610daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dce91906116a8565b6001600160e01b031916145b610e195760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b60448201526064016104f8565b5050505050565b610e286110fb565b6000610e348282611767565b5050565b6060610e4382610bf1565b50600082815260086020908152604080832054815161030081019092526102de80835260ff90911693926119d19083013990506001826002811115610e8a57610e8a611340565b03610eb15750604080518082019091526005815264131a59da1d60da1b6020820152610ee7565b6000826002811115610ec557610ec5611340565b03610ee757506040805180820190915260048152634461726b60e01b60208201525b600060405180610120016040528060fd81526020016120b460fd9139905060006040518061044001604052806104058152602001611caf61040591399050818184604051602001610f3a93929190611843565b604051602081830303815290604052945050505050919050565b610f5c6110fb565b600955565b610f696110fb565b6001600160a01b038116610fce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104f8565b610fd781611155565b50565b600082610fe785846111a7565b14949350505050565b6001600160a01b03821661103a5760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b60448201526064016104f8565b6000818152600260205260409020546001600160a01b0316156110905760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b60448201526064016104f8565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6006546001600160a01b03163314610cbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104f8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b84518110156111ec576111d8828683815181106111cb576111cb6119ba565b60200260200101516111f4565b9150806111e48161165f565b9150506111ac565b509392505050565b600081831061121057600082815260208490526040902061121f565b60008381526020839052604090205b9392505050565b6001600160e01b031981168114610fd757600080fd5b60006020828403121561124e57600080fd5b813561121f81611226565b60005b8381101561127457818101518382015260200161125c565b50506000910152565b602081526000825180602084015261129c816040850160208701611259565b601f01601f19169190910160400192915050565b6000602082840312156112c257600080fd5b5035919050565b80356001600160a01b0381168114610c4357600080fd5b600080604083850312156112f357600080fd5b6112fc836112c9565b946020939093013593505050565b6000806040838503121561131d57600080fd5b82359150602083013560ff8116811461133557600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061137857634e487b7160e01b600052602160045260246000fd5b91905290565b60008060006060848603121561139357600080fd5b61139c846112c9565b92506113aa602085016112c9565b9150604084013590509250925092565b600080600080606085870312156113d057600080fd5b6113d9856112c9565b935060208501359250604085013567ffffffffffffffff808211156113fd57600080fd5b818701915087601f83011261141157600080fd5b81358181111561142057600080fd5b8860208260051b850101111561143557600080fd5b95989497505060200194505050565b60006020828403121561145657600080fd5b61121f826112c9565b6000806040838503121561147257600080fd5b61147b836112c9565b91506020830135801515811461133557600080fd5b6000806000806000608086880312156114a857600080fd5b6114b1866112c9565b94506114bf602087016112c9565b935060408601359250606086013567ffffffffffffffff808211156114e357600080fd5b818801915088601f8301126114f757600080fd5b81358181111561150657600080fd5b89602082850101111561151857600080fd5b9699959850939650602001949392505050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561155357600080fd5b813567ffffffffffffffff8082111561156b57600080fd5b818401915084601f83011261157f57600080fd5b8135818111156115915761159161152b565b604051601f8201601f19908116603f011681019083821181831017156115b9576115b961152b565b816040528281528760208487010111156115d257600080fd5b826020860160208301376000928101602001929092525095945050505050565b6000806040838503121561160557600080fd5b61160e836112c9565b915061161c602084016112c9565b90509250929050565b600181811c9082168061163957607f821691505b60208210810361165957634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161167f57634e487b7160e01b600052601160045260246000fd5b5060010190565b6000826116a357634e487b7160e01b600052601260045260246000fd5b500690565b6000602082840312156116ba57600080fd5b815161121f81611226565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b601f821115610bec57600081815260208120601f850160051c810160208610156117405750805b601f850160051c820191505b8181101561175f5782815560010161174c565b505050505050565b815167ffffffffffffffff8111156117815761178161152b565b6117958161178f8454611625565b84611719565b602080601f8311600181146117ca57600084156117b25750858301515b600019600386901b1c1916600185901b17855561175f565b600085815260208120601f198616915b828110156117f9578886015182559484019460019091019084016117da565b50858210156118175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008151611839818560208601611259565b9290920192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b226e616d65223a220081526000845161187b81601f850160208901611259565b71111610113232b9b1b934b83a34b7b7111d1160711b601f9184019182015284516118ad816031840160208901611259565b7f222c22616e696d6174696f6e5f75726c223a2022697066733a2f2f697066732f603192909101918201527f62616679626569656632766f74356c6a787971706e707536736235636162707260518201527f32666e6d6877797874796437797a6a646464766c777a326e357771222c22617460718201527f7472696275746573223a5b7b2274726169745f74797065223a2241727469737460918201527f222c2276616c7565223a2243686577792053746f6c6c227d2c7b22747261697460b18201527f5f74797065223a225465616d222c2276616c7565223a2200000000000000000060d18201526119a360e8820185611827565b63227d5d7d60e01b81526004019695505050505050565b634e487b7160e01b600052603260045260246000fdfee1b88bccb5cc9eccb2cd96cd99cca5cc88cc81cd92cc88cc81ccbdcc8fcc8dcc92cc81cd91cc93cd86cc8ecc94cc81cd8acd90cc88cc81cc89cc86cc94cc80cd8bcc88cc81cd90cc93cd9bcc81cc85cd98cd9de1bb89ccb6cca2ccaaccabccb3cd96cd96ccadcd9acca4cd9acd93cca3cc97ccbccc98cc9fcd94cd88cc9dccaacca3cc97cca9cd95ccb0cd93cc94cc8ccd90ccbfcd82cc87cc8ccc94cc91cc88cc81cd82cc8fcd92cc84cc81cc8bcd8bcc80cd82cc81cc81cc93cc8fcc8acc85cc8acd86cc92cc88cc86cc88cc81cc93cc87cc89cd91cd9bcc9acc95cc9acc9acc9acd98cc9acd9dcd9dcda0cda0cda0c5a5ccb4cca2cca8cc9bcc9bcc9fccadccb0cd94ccb0cd8dcc9ecd87cc98cc9ecc99cc98cc8fcc8ecd9bcd82cc93cc84ccbecc89cc8bcd82cd9bcc84cc8ecc90cc8ccc8ccc93cc88cc81cd8acd8ccd82cc89cc88cd8acc87cc89cd91cc94cc8ecc86ccbdcc93cc8fcc88cc81cc8acd86cc80cd92ccbdcd98cc95cd9ccd9dcd9dcd9dcda068ccb8cca1cd96cd96ccacccbacc98cca5ccaacc96ccbaccbccca9ccacccaeccabcca0cd95ccbbcd95ccafcd96cc89cd8acc89cd9bcc8ccc8ecd92cc93cc8bcc93cc88cd92cc91cc85cc9acc9acda0cd9dcd9dcd85c8a9ccb5cc9fcd96cd89cca9cd95cd99ccb0ccabcc98ccb9cca3cc9cccadcd95ccbccc9dccb1cc9dcd95cc99ccaaccb3cca5cca4cca6ccb3cca9cd93ccb3cd99ccafccaeccaacca6ccb3cd8ecc97cd96cd97cc88cc81cd8ccd9cc597ccb5cca1cca2cca1cca7cca7cca1cca2cc9bccaecd96ccaeccbcccafcca3cca3cd8dcca5cca0cca9ccaccd8dcd87ccaecd88ccb3cc9cccaacd99cd99cd95cc9fcc9dcd99cd88ccaaccaacca3ccbacd9acca9cd94cd88cca9cd94cc89cd8bcc81cc88cc81cc88cc81cc82cc8fcc86cd85cd8573ccb7cca2cca1cd8dccbbcd93cc8bcd90cc83cd90cc94cd8ccc8acc86cd9bcc89cc89cc80ccbdcc94cc90ccbfcd8bccbdcc86cd97cc8acd8acd8ccc93cc88cd9bcd9bcd98cd9de1bb95ccb7cca7cca2ccb2cc9ecca5cca0cca3cd88cd88cc88cc82cc83cc84cd9ccd85c586ccb4cca2ccaecca6cca6ccadccacccbaccbbcc99cc9ccd82cc8bcc8dcc84c8a9ccb5cca2cc9ecc9cccabcc93cc88cc8fcc8dcc93cc84cd82cd92cc90cc81ccbfcc8acc83cda020ccb4ccabcc96ccbacd88ccbfcc88cc81cc8ccc93ccbecc92cc9a62ccb5cca2ccbbccaccd99ccb1ccb1cd93cd95ccbbccadcca4cd95cd88ccbdcc80cc80cd91cc81cc80cc8bccbfcc85cc8161ccb4cc9ccd8dcd94cd89cca0cd99cc90cc8c64ccb6cca8cca8ccb9ccaecc9cccaacc9fcca3cc9dcc97ccabcc84cc93cd9bcc92cc81cc80cc91cc86cc88cc8120ccb5cca8cca1ccb9ccabcd94ccbfcc81cc80cc81cc8a74ccb6cc9bccb2cc9ecd87ccb1ccaecd9bcc8ecc91cc80cc85cd8acd9bcc8dcd9d72ccb5cc9bccabcc80cc84cd86cc8eccbecd92cc80cc88cc81cc89cc85cc87cc9269ccb4cca7cc9bccadcd9accb1cc96ccb1ccaacc85ccbfcd90cd8ccc93cd91cd97cc93cd8bcc95cd9dcda070ccb4cc9bcca6cc97cd86cd9bcd86cda020ccb4cca1cca4cd8dcc97cc9cccb0ccb3cc9dccb9ccb3ccb9cd9acd95cd86cc88cc81cd8acd86ccbdcc81cc8ce1b891ccb7cc9bcc98cc96cc9dccb2cd8dccaccd9acc99cc96cd94cc93cc8fcc80cc86cd8ccc8fcc80cd8bcc8dcc85cd9dc8a9ccb6cd88cca4cd8dcd88ccbbcc9ccc8ecc92cd8ccd9dc59bccb6cca8ccbbcca0ccb9ccbbccb2ccb2cca4cd87cc9ccc8ae1b895ccb8cca1cc9bccbcccbbcc97cc9dcc93cd90cd92cd9d72ccb7cc9bccafcc98ccabcc97cc9ecc89cc82cc88cc8f76ccb4cd99ccbbcca4cd8ecca0cca4cd87cca0cd93ccaccd8ecc99cd8dccbbcca0cc90cd91cc8ecc85cd8bcd8ccd82cc83cd8bcd98cc95c497ccb8cd8dcd95cd99cc9ccca9cc91cc80cc8acd97cc92cc90ccbfcc90cd98cda073ccb4cca2cca9ccb0ccadcd96cca4cca3ccbacd89cca6cd94cca4cca9cc8acc8ecc88cc81cc80cc8dcd82cd8acc8dcd8bcd9c20ccb5ccaccd96cc86cd91cc8461ccb8cca2cca2cca7cd89cc9cccafccbccc96cc8ecc85cc91cd8bcd90cc92cc83cd91cc8bcc82cc8ecc89cc8bcd98cd85cd85e1b98bccb4ccbccd96cd9accaacc8fcd97cd8acd91cd97cc82cc866fccb4cc99cc9eccb0ccaacd95ccb2cc9374ccb7cca8cca7cca7cc98cd88ccb0ccbaccafccb9cc82cc88cc81cc8ccd8bcd82cc8ecc8cccbfcc88cc81ccbecd8bcc94cc88cc82cc9a68ccb5cca2cc9fcd99cc9dcca9cca0ccaecd8ecc9dcca0cd8bcc85cc92cc86cc8ecd97cc93cc88cc81cd8acc83cc80cd9dc499ccb5cc9bcd89cc98ccaaccbbcc97ccaccc97cc96cc99cd89ccb9ccb2cc96cc8bcc93cd8acd90cc88cc81cc93cc88cc81cc8fcc81cd9d72ccb8ccbaccb1ccaacd8dcc99ccbccd95ccb1cd96cd8acc85cd90cd91cd9ccd8542ccb7cca4cd8dccaccc9dcc9dcd90cd8bcd85c3a4ccb8cc9bcd87ccaeccabccaccc99cd88cc9cccb2cc81cc89cc93cd90cc80cc86cc91ccbfcc8acd86cd9ce1b891ccb5cd99ccbacc9dcd88cc87cc85cc85cc94cd90cc80cd90cc81cc82ccbdcc85cc88cc81cd8554ccb5ccb2cd8ecca4cd8eccaecc93cc88cc81cd9bcc9acd9c72ccb4cc96cc9dcd99cd95cc9cccbaccb1cc97cc84cc8dcc8ccc80cd9cc4afccb7cca1cca7cd94cc96cd96cc98ccabcca6ccbacd89cd94cca4cd86cd9bcc88cc90cc93cd8ccc82cc88cc81ccbfcd8ccd8acc84ccbfcc84cd9dcd8570ccb5cc9bcc9bcc9ccd82cc8ecc80ccbfcc93cd82ccbecca6cc88cc81cd9bcd9da26469706673582212204f36f87b05c0bdef930f90d906b975d670e29820b492120f1977f7ad889f861064736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001a0bcf40b69faf12cf84940acf2472282282646da65c4e46a35b45c79f10833bf35000000000000000000000000000000000000000000000000000000000000010442ccb7cca4cd8dccaccc9dcc9dcd90cd8bcd85c3a4ccb8cc9bcd87ccaeccabccaccc99cd88cc9cccb2cc81cc89cc93cd90cc80cc86cc91ccbfcc8acd86cd9ce1b891ccb5cd99ccbacc9dcd88cc87cc85cc85cc94cd90cc80cd90cc81cc82ccbdcc85cc88cc81cd8554ccb5ccb2cd8ecca4cd8eccaecc93cc88cc81cd9bcc9acd9c72ccb4cc96cc9dcd99cd95cc9cccbaccb1cc97cc84cc8dcc8ccc80cd9cc4afccb7cca1cca7cd94cc96cd96cc98ccabcca6ccbacd89cd94cca4cd86cd9bcc88cc90cc93cd8ccc82cc88cc81ccbfcd8ccd8acc84ccbfcc84cd9dcd8570ccb5cc9bcc9bcc9ccd82cc8ecc80ccbfcc93cd82ccbecc9770ccb8cc99cca6cc88cc81cd9bcd9d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a4cccb7ccb2cc91cc86cc80cc87cc89cc82cc80cc92cc8ecc95c898ccb7cc9bcd86cd92cc81cc88cc85cd8bcc8fcc91cd97cc9544ccb5cca1ccaccca3cc9cccabcca5cd92cc8dcc81cc8ecd91cc92cd82cc88cc81cc90cc80cd9c000000000000

-----Decoded View---------------
Arg [0] : _name (string): B̷̤͍̬̝̝͐͋ͅä̸̛͇̮̫̬̙͈̜̲́̉̓͐̀̆̑̿̊͆͜ḑ̵͙̺̝͈̇̅̅̔͐̀͐́̂̽̅̈́ͅT̵̲͎̤͎̮̓̈́͛̚͜r̴̖̝͙͕̜̺̱̗̄̍̌̀͜į̷̡̧͔̖͖̘̫̦̺͉͔̤͆͛̈̐̓͌̂̈́̿͌͊̄̿̄͝ͅp̵̛̛̜̗͂̎̀̿̓͂̾p̸̙̦̈́͛͝
Arg [1] : _symbol (string): L̷̲̑̆̀̇̉̂̀̒̎̕Ș̷̛͆͒́̈̅͋̏̑͗̕D̵̡̬̣̜̫̥͒̍́̎͑̒͂̈́̐̀͜
Arg [2] : _merkleRoot (bytes32): 0xbcf40b69faf12cf84940acf2472282282646da65c4e46a35b45c79f10833bf35

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : bcf40b69faf12cf84940acf2472282282646da65c4e46a35b45c79f10833bf35
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000104
Arg [4] : 42ccb7cca4cd8dccaccc9dcc9dcd90cd8bcd85c3a4ccb8cc9bcd87ccaeccabcc
Arg [5] : accc99cd88cc9cccb2cc81cc89cc93cd90cc80cc86cc91ccbfcc8acd86cd9ce1
Arg [6] : b891ccb5cd99ccbacc9dcd88cc87cc85cc85cc94cd90cc80cd90cc81cc82ccbd
Arg [7] : cc85cc88cc81cd8554ccb5ccb2cd8ecca4cd8eccaecc93cc88cc81cd9bcc9acd
Arg [8] : 9c72ccb4cc96cc9dcd99cd95cc9cccbaccb1cc97cc84cc8dcc8ccc80cd9cc4af
Arg [9] : ccb7cca1cca7cd94cc96cd96cc98ccabcca6ccbacd89cd94cca4cd86cd9bcc88
Arg [10] : cc90cc93cd8ccc82cc88cc81ccbfcd8ccd8acc84ccbfcc84cd9dcd8570ccb5cc
Arg [11] : 9bcc9bcc9ccd82cc8ecc80ccbfcc93cd82ccbecc9770ccb8cc99cca6cc88cc81
Arg [12] : cd9bcd9d00000000000000000000000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [14] : 4cccb7ccb2cc91cc86cc80cc87cc89cc82cc80cc92cc8ecc95c898ccb7cc9bcd
Arg [15] : 86cd92cc81cc88cc85cd8bcc8fcc91cd97cc9544ccb5cca1ccaccca3cc9cccab
Arg [16] : cca5cd92cc8dcc81cc8ecd91cc92cd82cc88cc81cc90cc80cd9c000000000000


Deployed Bytecode Sourcemap

20674:5860:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900:340;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;4900:340:0;;;;;;;;960:18;;;:::i;:::-;;;;;;;:::i;1933:46::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1933:46:0;;;;;;-1:-1:-1;;;;;1597:32:1;;;1579:51;;1567:2;1552:18;1933:46:0;1433:203:1;2559:290:0;;;;;;:::i;:::-;;:::i;:::-;;23317:364;;;;;;:::i;:::-;;:::i;20717:22::-;;;;;;;;;2566:25:1;;;2554:2;2539:18;20717:22:0;2420:177:1;20790:37:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;3072:768::-;;;;;;:::i;:::-;;:::i;20929:25::-;;;;;;22281:938;;;;;;:::i;:::-;;:::i;3848:409::-;;;;;;:::i;:::-;;:::i;1402:151::-;;;;;;:::i;:::-;;:::i;1561:172::-;;;;;;:::i;:::-;;:::i;19837:103::-;;;:::i;21072:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19196:87;19269:6;;-1:-1:-1;;;;;19269:6:0;19196:87;;987:20;;;:::i;2857:207::-;;;;;;:::i;:::-;;:::i;4265:441::-;;;;;;:::i;:::-;;:::i;26447:84::-;;;;;;:::i;:::-;;:::i;23687:2754::-;;;;;;:::i;:::-;;:::i;23225:86::-;;;;;;:::i;:::-;;:::i;1988:68::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;20095:201;;;;;;:::i;:::-;;:::i;4900:340::-;4976:4;-1:-1:-1;;;;;;;;;5013:25:0;;;;:101;;-1:-1:-1;;;;;;;;;;5089:25:0;;;5013:101;:177;;;-1:-1:-1;;;;;;;;;;5165:25:0;;;5013:177;4993:197;4900:340;-1:-1:-1;;4900:340:0:o;960:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2559:290::-;2631:13;2647:12;;;:8;:12;;;;;;-1:-1:-1;;;;;2647:12:0;2680:10;:19;;;:58;;-1:-1:-1;;;;;;2703:23:0;;;;;;:16;:23;;;;;;;;2727:10;2703:35;;;;;;;;;;2680:58;2672:85;;;;-1:-1:-1;;;2672:85:0;;7805:2:1;2672:85:0;;;7787:21:1;7844:2;7824:18;;;7817:30;-1:-1:-1;;;7863:18:1;;;7856:44;7917:18;;2672:85:0;;;;;;;;;2770:15;;;;:11;:15;;;;;;:25;;-1:-1:-1;;;;;;2770:25:0;-1:-1:-1;;;;;2770:25:0;;;;;;;;;2813:28;;2770:15;;2813:28;;;;;;;2620:229;2559:290;;:::o;23317:364::-;23413:10;23393:16;23401:7;23393;:16::i;:::-;-1:-1:-1;;;;;23393:30:0;;:63;;;;-1:-1:-1;23444:12:0;23427:13;;;;:4;:13;;;;;;;;:29;;;;;;;;:::i;:::-;;23393:63;23385:104;;;;-1:-1:-1;;;23385:104:0;;8148:2:1;23385:104:0;;;8130:21:1;8187:2;8167:18;;;8160:30;8226;8206:18;;;8199:58;8274:18;;23385:104:0;7946:352:1;23385:104:0;23504:7;:12;;23515:1;23504:12;:28;;;-1:-1:-1;23520:12:0;;;;23504:28;23496:71;;;;-1:-1:-1;;;23496:71:0;;8505:2:1;23496:71:0;;;8487:21:1;8544:2;8524:18;;;8517:30;8583:32;8563:18;;;8556:60;8633:18;;23496:71:0;8303:354:1;23496:71:0;23591:7;:12;;23602:1;23591:12;23590:39;;23620:9;23590:39;;;23607:10;23590:39;23574:13;;;;:4;:13;;;;;:55;;-1:-1:-1;;23574:55:0;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;23661:13:0;;;;:4;:13;;;;;;;;23641:34;;23652:7;;23641:34;;;;23661:13;;;23641:34;:::i;:::-;;;;;;;;23317:364;;:::o;3072:768::-;3208:12;;;;:8;:12;;;;;;-1:-1:-1;;;;;3200:20:0;;;3208:12;;3200:20;3192:43;;;;-1:-1:-1;;;3192:43:0;;8864:2:1;3192:43:0;;;8846:21:1;8903:2;8883:18;;;8876:30;-1:-1:-1;;;8922:18:1;;;8915:40;8972:18;;3192:43:0;8662:334:1;3192:43:0;-1:-1:-1;;;;;3256:16:0;;3248:46;;;;-1:-1:-1;;;3248:46:0;;9203:2:1;3248:46:0;;;9185:21:1;9242:2;9222:18;;;9215:30;-1:-1:-1;;;9261:18:1;;;9254:47;9318:18;;3248:46:0;9001:341:1;3248:46:0;3329:10;-1:-1:-1;;;;;3329:18:0;;;;:56;;-1:-1:-1;;;;;;3351:22:0;;;;;;:16;:22;;;;;;;;3374:10;3351:34;;;;;;;;;;3329:56;:89;;;-1:-1:-1;3403:15:0;;;;:11;:15;;;;;;-1:-1:-1;;;;;3403:15:0;3389:10;:29;3329:89;3307:153;;;;-1:-1:-1;;;3307:153:0;;7805:2:1;3307:153:0;;;7787:21:1;7844:2;7824:18;;;7817:30;-1:-1:-1;;;7863:18:1;;;7856:44;7917:18;;3307:153:0;7603:338:1;3307:153:0;-1:-1:-1;;;;;3665:16:0;;;;;;;:10;:16;;;;;;;;:18;;-1:-1:-1;;3665:18:0;;;3700:14;;;;;;;;;:16;;3665:18;3700:16;;;3740:12;;;:8;:12;;;;;:17;;-1:-1:-1;;;;;;3740:17:0;;;;;;;;3777:11;:15;;;;;;3770:22;;;;;;;;3810;;3749:2;;3700:14;3665:16;3810:22;;;3072:768;;;:::o;22281:938::-;-1:-1:-1;;;;;22422:14:0;;;;;;:10;:14;;;;;;;;22418:43;;;22445:16;;-1:-1:-1;;;22445:16:0;;;;;;;;;;;22418:43;22549:28;;-1:-1:-1;;9524:2:1;9520:15;;;9516:53;22549:28:0;;;9504:66:1;9586:12;;;9579:28;;;22524:12:0;;9623::1;;22549:28:0;;;;;;;;;;;;22539:39;;;;;;22524:54;;22585:16;22604:43;22623:5;;22604:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22630:10:0;;;-1:-1:-1;22642:4:0;;-1:-1:-1;22604:18:0;:43::i;:::-;22585:62;;22659:11;22654:38;;22679:13;;-1:-1:-1;;;22679:13:0;;;;;;;;;;;22654:38;-1:-1:-1;;;;;22732:14:0;;;;;;:10;:14;;;;;:21;;-1:-1:-1;;22732:21:0;22749:4;22732:21;;;22793:365;22817:6;22813:1;:10;22793:365;;;22857:7;:9;;22839:15;;;22857:9;;;:::i;:::-;;;;-1:-1:-1;22839:27:0;-1:-1:-1;22881:11:0;22891:1;22839:27;22881:11;:::i;:::-;22896:1;22881:16;22877:199;;22911:13;;;;:4;:13;;;;;:28;;22927:12;;22911:13;-1:-1:-1;;22911:28:0;;22927:12;22911:28;;;;;;22877:199;;;22959:11;22969:1;22959:7;:11;:::i;:::-;22974:1;22959:16;22955:121;;22988:13;;;;:4;:13;;;;;:26;;23004:10;;22988:13;-1:-1:-1;;22988:26:0;23004:10;;22988:26;;22955:121;23057:9;23041:13;;;:4;:13;;;;;:25;;-1:-1:-1;;23041:25:0;;;22955:121;23109:13;;;;:4;:13;;;;;;;;23089:34;;23100:7;;23089:34;;;;23109:13;;;23089:34;:::i;:::-;;;;;;;;23132:18;23138:2;23142:7;23132:5;:18::i;:::-;-1:-1:-1;22825:3:0;;;;:::i;:::-;;;;22793:365;;;;23202:2;-1:-1:-1;;;;;23196:17:0;;23206:6;23196:17;;;;2566:25:1;;2554:2;2539:18;;2420:177;23196:17:0;;;;;;;;22359:860;;22281:938;;;;:::o;3848:409::-;3972:26;3985:4;3991:2;3995;3972:12;:26::i;:::-;-1:-1:-1;;;;;4033:14:0;;;:19;;:172;;-1:-1:-1;4073:66:0;;-1:-1:-1;;;4073:66:0;;;4114:10;4073:66;;;10402:34:1;-1:-1:-1;;;;;10472:15:1;;;10452:18;;;10445:43;10504:18;;;10497:34;;;10567:3;10547:18;;;10540:31;-1:-1:-1;10587:19:1;;;10580:30;4160:45:0;;4073:40;;;;4160:45;;10627:19:1;;4073:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4073:132:0;;4033:172;4011:238;;;;-1:-1:-1;;;4011:238:0;;11113:2:1;4011:238:0;;;11095:21:1;11152:2;11132:18;;;11125:30;-1:-1:-1;;;11171:18:1;;;11164:46;11227:18;;4011:238:0;10911:340:1;4011:238:0;3848:409;;;:::o;1402:151::-;1460:13;1503:12;;;:8;:12;;;;;;-1:-1:-1;;;;;1503:12:0;;1486:59;;;;-1:-1:-1;;;1486:59:0;;11458:2:1;1486:59:0;;;11440:21:1;11497:2;11477:18;;;11470:30;-1:-1:-1;;;11516:18:1;;;11509:40;11566:18;;1486:59:0;11256:334:1;1486:59:0;1402:151;;;:::o;1561:172::-;1624:7;-1:-1:-1;;;;;1652:19:0;;1644:44;;;;-1:-1:-1;;;1644:44:0;;11797:2:1;1644:44:0;;;11779:21:1;11836:2;11816:18;;;11809:30;-1:-1:-1;;;11855:18:1;;;11848:42;11907:18;;1644:44:0;11595:336:1;1644:44:0;-1:-1:-1;;;;;;1708:17:0;;;;;:10;:17;;;;;;;1561:172::o;19837:103::-;19082:13;:11;:13::i;:::-;19902:30:::1;19929:1;19902:18;:30::i;:::-;19837:103::o:0;987:20::-;;;;;;;:::i;2857:207::-;2960:10;2943:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;2943:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;2943:49:0;;;;;;;;;;3010:46;;540:41:1;;;2943:38:0;;2960:10;3010:46;;513:18:1;3010:46:0;;;;;;;2857:207;;:::o;4265:441::-;4419:26;4432:4;4438:2;4442;4419:12;:26::i;:::-;-1:-1:-1;;;;;4480:14:0;;;:19;;:174;;-1:-1:-1;4520:68:0;;-1:-1:-1;;;4520:68:0;;;4609:45;-1:-1:-1;;;;;4520:40:0;;;4609:45;;4520:68;;4561:10;;4573:4;;4579:2;;4583:4;;;;4520:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4520:134:0;;4480:174;4458:240;;;;-1:-1:-1;;;4458:240:0;;11113:2:1;4458:240:0;;;11095:21:1;11152:2;11132:18;;;11125:30;-1:-1:-1;;;11171:18:1;;;11164:46;11227:18;;4458:240:0;10911:340:1;4458:240:0;4265:441;;;;;:::o;26447:84::-;19082:13;:11;:13::i;:::-;26511:4:::1;:14;26518:7:::0;26511:4;:14:::1;:::i;:::-;;26447:84:::0;:::o;23687:2754::-;23751:13;23773:16;23781:7;23773;:16::i;:::-;-1:-1:-1;23798:9:0;23810:13;;;:4;:13;;;;;;;;;23830:768;;;;;;;;;;;;23810:13;;;;;23798:9;23830:768;;;;;;-1:-1:-1;24617:10:0;24609:4;:18;;;;;;;;:::i;:::-;;24605:122;;-1:-1:-1;24638:18:0;;;;;;;;;;;;-1:-1:-1;;;24638:18:0;;;;24605:122;;;24682:9;24674:4;:17;;;;;;;;:::i;:::-;;24670:57;;-1:-1:-1;24702:17:0;;;;;;;;;;;;-1:-1:-1;;;24702:17:0;;;;24670:57;24733:26;:291;;;;;;;;;;;;;;;;;;;25031:25;:1066;;;;;;;;;;;;;;;;;;;26169:12;26205:11;26405:8;26111:324;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26104:331;;;;;;23687:2754;;;:::o;23225:86::-;19082:13;:11;:13::i;:::-;23285:10:::1;:20:::0;23225:86::o;20095:201::-;19082:13;:11;:13::i;:::-;-1:-1:-1;;;;;20184:22:0;::::1;20176:73;;;::::0;-1:-1:-1;;;20176:73:0;;17097:2:1;20176:73:0::1;::::0;::::1;17079:21:1::0;17136:2;17116:18;;;17109:30;17175:34;17155:18;;;17148:62;-1:-1:-1;;;17226:18:1;;;17219:36;17272:19;;20176:73:0::1;16895:402:1::0;20176:73:0::1;20260:28;20279:8;20260:18;:28::i;:::-;20095:201:::0;:::o;8781:156::-;8872:4;8925;8896:25;8909:5;8916:4;8896:12;:25::i;:::-;:33;;8781:156;-1:-1:-1;;;;8781:156:0:o;5440:384::-;-1:-1:-1;;;;;5515:16:0;;5507:46;;;;-1:-1:-1;;;5507:46:0;;9203:2:1;5507:46:0;;;9185:21:1;9242:2;9222:18;;;9215:30;-1:-1:-1;;;9261:18:1;;;9254:47;9318:18;;5507:46:0;9001:341:1;5507:46:0;5598:1;5574:12;;;:8;:12;;;;;;-1:-1:-1;;;;;5574:12:0;:26;5566:53;;;;-1:-1:-1;;;5566:53:0;;17504:2:1;5566:53:0;;;17486:21:1;17543:2;17523:18;;;17516:30;-1:-1:-1;;;17562:18:1;;;17555:44;17616:18;;5566:53:0;17302:338:1;5566:53:0;-1:-1:-1;;;;;5713:14:0;;;;;;:10;:14;;;;;;;;:16;;;;;;5753:12;;;:8;:12;;;;;;:17;;-1:-1:-1;;;;;;5753:17:0;;;;;5788:28;5762:2;;5713:14;;5788:28;;5713:14;;5788:28;5440:384;;:::o;19361:132::-;19269:6;;-1:-1:-1;;;;;19269:6:0;17985:10;19425:23;19417:68;;;;-1:-1:-1;;;19417:68:0;;17847:2:1;19417:68:0;;;17829:21:1;;;17866:18;;;17859:30;17925:34;17905:18;;;17898:62;17977:18;;19417:68:0;17645:356:1;20456:191:0;20549:6;;;-1:-1:-1;;;;;20566:17:0;;;-1:-1:-1;;;;;;20566:17:0;;;;;;;20599:40;;20549:6;;;20566:17;20549:6;;20599:40;;20530:16;;20599:40;20519:128;20456:191;:::o;9580:296::-;9663:7;9706:4;9663:7;9721:118;9745:5;:12;9741:1;:16;9721:118;;;9794:33;9804:12;9818:5;9824:1;9818:8;;;;;;;;:::i;:::-;;;;;;;9794:9;:33::i;:::-;9779:48;-1:-1:-1;9759:3:0;;;;:::i;:::-;;;;9721:118;;;-1:-1:-1;9856:12:0;9580:296;-1:-1:-1;;;9580:296:0:o;16784:149::-;16847:7;16878:1;16874;:5;:51;;17009:13;17103:15;;;17139:4;17132:15;;;17186:4;17170:21;;16874:51;;;17009:13;17103:15;;;17139:4;17132:15;;;17186:4;17170:21;;16882:20;16867:58;16784:149;-1:-1:-1;;;16784:149:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:396::-;996:2;985:9;978:21;959:4;1028:6;1022:13;1071:6;1066:2;1055:9;1051:18;1044:34;1087:79;1159:6;1154:2;1143:9;1139:18;1134:2;1126:6;1122:15;1087:79;:::i;:::-;1227:2;1206:15;-1:-1:-1;;1202:29:1;1187:45;;;;1234:2;1183:54;;847:396;-1:-1:-1;;847:396:1:o;1248:180::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:52;;;1376:1;1373;1366:12;1328:52;-1:-1:-1;1399:23:1;;1248:180;-1:-1:-1;1248:180:1:o;1641:173::-;1709:20;;-1:-1:-1;;;;;1758:31:1;;1748:42;;1738:70;;1804:1;1801;1794:12;1819:254;1887:6;1895;1948:2;1936:9;1927:7;1923:23;1919:32;1916:52;;;1964:1;1961;1954:12;1916:52;1987:29;2006:9;1987:29;:::i;:::-;1977:39;2063:2;2048:18;;;;2035:32;;-1:-1:-1;;;1819:254:1:o;2078:337::-;2144:6;2152;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2257:9;2244:23;2234:33;;2317:2;2306:9;2302:18;2289:32;2361:4;2354:5;2350:16;2343:5;2340:27;2330:55;;2381:1;2378;2371:12;2330:55;2404:5;2394:15;;;2078:337;;;;;:::o;2602:127::-;2663:10;2658:3;2654:20;2651:1;2644:31;2694:4;2691:1;2684:15;2718:4;2715:1;2708:15;2734:337;2875:2;2860:18;;2908:1;2897:13;;2887:144;;2953:10;2948:3;2944:20;2941:1;2934:31;2988:4;2985:1;2978:15;3016:4;3013:1;3006:15;2887:144;3040:25;;;2734:337;:::o;3076:328::-;3153:6;3161;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;:::-;3299:48;;3394:2;3383:9;3379:18;3366:32;3356:42;;3076:328;;;;;:::o;3591:757::-;3695:6;3703;3711;3719;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3811:29;3830:9;3811:29;:::i;:::-;3801:39;;3887:2;3876:9;3872:18;3859:32;3849:42;;3942:2;3931:9;3927:18;3914:32;3965:18;4006:2;3998:6;3995:14;3992:34;;;4022:1;4019;4012:12;3992:34;4060:6;4049:9;4045:22;4035:32;;4105:7;4098:4;4094:2;4090:13;4086:27;4076:55;;4127:1;4124;4117:12;4076:55;4167:2;4154:16;4193:2;4185:6;4182:14;4179:34;;;4209:1;4206;4199:12;4179:34;4262:7;4257:2;4247:6;4244:1;4240:14;4236:2;4232:23;4228:32;4225:45;4222:65;;;4283:1;4280;4273:12;4222:65;3591:757;;;;-1:-1:-1;;4314:2:1;4306:11;;-1:-1:-1;;;3591:757:1:o;4353:186::-;4412:6;4465:2;4453:9;4444:7;4440:23;4436:32;4433:52;;;4481:1;4478;4471:12;4433:52;4504:29;4523:9;4504:29;:::i;4544:347::-;4609:6;4617;4670:2;4658:9;4649:7;4645:23;4641:32;4638:52;;;4686:1;4683;4676:12;4638:52;4709:29;4728:9;4709:29;:::i;:::-;4699:39;;4788:2;4777:9;4773:18;4760:32;4835:5;4828:13;4821:21;4814:5;4811:32;4801:60;;4857:1;4854;4847:12;4896:808;4993:6;5001;5009;5017;5025;5078:3;5066:9;5057:7;5053:23;5049:33;5046:53;;;5095:1;5092;5085:12;5046:53;5118:29;5137:9;5118:29;:::i;:::-;5108:39;;5166:38;5200:2;5189:9;5185:18;5166:38;:::i;:::-;5156:48;;5251:2;5240:9;5236:18;5223:32;5213:42;;5306:2;5295:9;5291:18;5278:32;5329:18;5370:2;5362:6;5359:14;5356:34;;;5386:1;5383;5376:12;5356:34;5424:6;5413:9;5409:22;5399:32;;5469:7;5462:4;5458:2;5454:13;5450:27;5440:55;;5491:1;5488;5481:12;5440:55;5531:2;5518:16;5557:2;5549:6;5546:14;5543:34;;;5573:1;5570;5563:12;5543:34;5618:7;5613:2;5604:6;5600:2;5596:15;5592:24;5589:37;5586:57;;;5639:1;5636;5629:12;5586:57;4896:808;;;;-1:-1:-1;4896:808:1;;-1:-1:-1;5670:2:1;5662:11;;5692:6;4896:808;-1:-1:-1;;;4896:808:1:o;5709:127::-;5770:10;5765:3;5761:20;5758:1;5751:31;5801:4;5798:1;5791:15;5825:4;5822:1;5815:15;5841:922;5910:6;5963:2;5951:9;5942:7;5938:23;5934:32;5931:52;;;5979:1;5976;5969:12;5931:52;6019:9;6006:23;6048:18;6089:2;6081:6;6078:14;6075:34;;;6105:1;6102;6095:12;6075:34;6143:6;6132:9;6128:22;6118:32;;6188:7;6181:4;6177:2;6173:13;6169:27;6159:55;;6210:1;6207;6200:12;6159:55;6246:2;6233:16;6268:2;6264;6261:10;6258:36;;;6274:18;;:::i;:::-;6349:2;6343:9;6317:2;6403:13;;-1:-1:-1;;6399:22:1;;;6423:2;6395:31;6391:40;6379:53;;;6447:18;;;6467:22;;;6444:46;6441:72;;;6493:18;;:::i;:::-;6533:10;6529:2;6522:22;6568:2;6560:6;6553:18;6608:7;6603:2;6598;6594;6590:11;6586:20;6583:33;6580:53;;;6629:1;6626;6619:12;6580:53;6685:2;6680;6676;6672:11;6667:2;6659:6;6655:15;6642:46;6730:1;6708:15;;;6725:2;6704:24;6697:35;;;;-1:-1:-1;6712:6:1;5841:922;-1:-1:-1;;;;;5841:922:1:o;6953:260::-;7021:6;7029;7082:2;7070:9;7061:7;7057:23;7053:32;7050:52;;;7098:1;7095;7088:12;7050:52;7121:29;7140:9;7121:29;:::i;:::-;7111:39;;7169:38;7203:2;7192:9;7188:18;7169:38;:::i;:::-;7159:48;;6953:260;;;;;:::o;7218:380::-;7297:1;7293:12;;;;7340;;;7361:61;;7415:4;7407:6;7403:17;7393:27;;7361:61;7468:2;7460:6;7457:14;7437:18;7434:38;7431:161;;7514:10;7509:3;7505:20;7502:1;7495:31;7549:4;7546:1;7539:15;7577:4;7574:1;7567:15;7431:161;;7218:380;;;:::o;9646:232::-;9685:3;9706:17;;;9703:140;;9765:10;9760:3;9756:20;9753:1;9746:31;9800:4;9797:1;9790:15;9828:4;9825:1;9818:15;9703:140;-1:-1:-1;9870:1:1;9859:13;;9646:232::o;9883:209::-;9915:1;9941;9931:132;;9985:10;9980:3;9976:20;9973:1;9966:31;10020:4;10017:1;10010:15;10048:4;10045:1;10038:15;9931:132;-1:-1:-1;10077:9:1;;9883:209::o;10657:249::-;10726:6;10779:2;10767:9;10758:7;10754:23;10750:32;10747:52;;;10795:1;10792;10785:12;10747:52;10827:9;10821:16;10846:30;10870:5;10846:30;:::i;11936:662::-;-1:-1:-1;;;;;12215:15:1;;;12197:34;;12267:15;;12262:2;12247:18;;12240:43;12314:2;12299:18;;12292:34;;;12362:3;12357:2;12342:18;;12335:31;;;12382:19;;12375:35;;;12140:4;12403:6;12453;12177:3;12432:19;;12419:49;12518:1;12512:3;12503:6;12492:9;12488:22;12484:32;12477:43;12588:3;12581:2;12577:7;12572:2;12564:6;12560:15;12556:29;12545:9;12541:45;12537:55;12529:63;;11936:662;;;;;;;;:::o;12729:545::-;12831:2;12826:3;12823:11;12820:448;;;12867:1;12892:5;12888:2;12881:17;12937:4;12933:2;12923:19;13007:2;12995:10;12991:19;12988:1;12984:27;12978:4;12974:38;13043:4;13031:10;13028:20;13025:47;;;-1:-1:-1;13066:4:1;13025:47;13121:2;13116:3;13112:12;13109:1;13105:20;13099:4;13095:31;13085:41;;13176:82;13194:2;13187:5;13184:13;13176:82;;;13239:17;;;13220:1;13209:13;13176:82;;;13180:3;;;12729:545;;;:::o;13450:1352::-;13576:3;13570:10;13603:18;13595:6;13592:30;13589:56;;;13625:18;;:::i;:::-;13654:97;13744:6;13704:38;13736:4;13730:11;13704:38;:::i;:::-;13698:4;13654:97;:::i;:::-;13806:4;;13870:2;13859:14;;13887:1;13882:663;;;;14589:1;14606:6;14603:89;;;-1:-1:-1;14658:19:1;;;14652:26;14603:89;-1:-1:-1;;13407:1:1;13403:11;;;13399:24;13395:29;13385:40;13431:1;13427:11;;;13382:57;14705:81;;13852:944;;13882:663;12676:1;12669:14;;;12713:4;12700:18;;-1:-1:-1;;13918:20:1;;;14036:236;14050:7;14047:1;14044:14;14036:236;;;14139:19;;;14133:26;14118:42;;14231:27;;;;14199:1;14187:14;;;;14066:19;;14036:236;;;14040:3;14300:6;14291:7;14288:19;14285:201;;;14361:19;;;14355:26;-1:-1:-1;;14444:1:1;14440:14;;;14456:3;14436:24;14432:37;14428:42;14413:58;14398:74;;14285:201;-1:-1:-1;;;;;14532:1:1;14516:14;;;14512:22;14499:36;;-1:-1:-1;13450:1352:1:o;14807:198::-;14849:3;14887:5;14881:12;14902:65;14960:6;14955:3;14948:4;14941:5;14937:16;14902:65;:::i;:::-;14983:16;;;;;14807:198;-1:-1:-1;;14807:198:1:o;15112:1778::-;15742:66;15737:3;15730:79;15712:3;15838:6;15832:13;15854:75;15922:6;15917:2;15912:3;15908:12;15901:4;15893:6;15889:17;15854:75;:::i;:::-;-1:-1:-1;;;15988:2:1;15948:16;;;15980:11;;;15973:69;16067:13;;16089:76;16067:13;16151:2;16143:11;;16136:4;16124:17;;16089:76;:::i;:::-;16230:66;16225:2;16184:17;;;;16217:11;;;16210:87;16326:34;16321:2;16313:11;;16306:55;16391:66;16385:3;16377:12;;16370:88;16488:66;16482:3;16474:12;;16467:88;16585:66;16579:3;16571:12;;16564:88;16682:66;16676:3;16668:12;;16661:88;16771:39;16805:3;16797:12;;16789:6;16771:39;:::i;:::-;-1:-1:-1;;;15068:33:1;;16882:1;16871:13;;;-1:-1:-1;;;;;;15112:1778:1:o;18006:127::-;18067:10;18062:3;18058:20;18055:1;18048:31;18098:4;18095:1;18088:15;18122:4;18119:1;18112:15

Swarm Source

ipfs://4f36f87b05c0bdef930f90d906b975d670e29820b492120f1977f7ad889f8610

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.