ETH Price: $2,841.55 (+2.93%)
 

Overview

Max Total Supply

539,345,659 rCUT

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 5 Decimals)

Balance
15,626,021 rCUT

Value
$0.00
0x714a0aca6c329e1eba23bfcc24e7949074beb6d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

rCUT creates a real tangible impact on the planet. It has a value that can be measured in terms of its precise scientific benefits and can be tracked per gram back to the place of origin for any specific Carbon Offset.

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe2DA7163...3fC3f218D
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CUTProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion
File 1 of 8 : CUTProxy.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.7.0;

/**
 * The CUT ERC-20 Contract.
 *
 * To implement public interface, and store the location of the CUT Stateless
 * lib in order to proxy function calls to the current live implementation.
 *
 * The public interface is ERC-20 compatible.
 */

import "../vendor/openzeppelin-contracts/contracts/access/AccessControl.sol";
import "../vendor/openzeppelin-contracts/contracts/GSN/Context.sol";
import "../vendor/openzeppelin-contracts/contracts/math/SafeMath.sol";
import "../vendor/openzeppelin-contracts/contracts/utils/Address.sol";

import "./interfaces/ICUTLib.sol";


contract CUTProxy is Context, AccessControl, ICUTLib {

    using SafeMath for uint256;
    using Address for address;

    bytes32 public constant LOGGER_ROLE = keccak256("LOGGER_ROLE");

    address private productionLibrary;
    uint8 private _decimals;

    constructor () {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _decimals = 5;
    }

    function setProductionLibrary(address newLibrary) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "C:ADMIN");

        productionLibrary = newLibrary;
    }

    function getProductionLibrary() public
    view
    returns (address) {
        return productionLibrary;
    }

    /**
     * Announce the retirement of some CUT to the ERC20 token.
     * This work is performed, and balances are adjusted behind the scenes,
     * but the event should be emitted to help wallets and explorers track
     * the flow of tokens.
     *
     * This emits a Transfer from the contributor to the 0x0 address,
     * similar to a burn.
     */
    function announceRetirement(address contributor, uint256 amount) public
    returns (bool) {
        require(hasRole(LOGGER_ROLE, _msgSender()), "C:LOG");
        emit Transfer(contributor, address(0), amount);
        return true;
    }

    /**
     * Announce that some CUT has been dispersed to the ERC20 token.
     *
     * This emits a Transfer from the CUT source (productionLibrary) to the
     * recipient of the number of unmatched tokens spread to the account.
     */
    function announceDispersed(address recipient, uint256 amount) public
    returns (bool) {
        require(hasRole(LOGGER_ROLE, _msgSender()), "C:LOG");
        emit Transfer(productionLibrary, recipient, amount);
        return true;
    }


    function name() public view override
    returns (string memory) {
        return ICUTImpl(productionLibrary).name();
    }

    function symbol() public view override
    returns (string memory) {
        return ICUTImpl(productionLibrary).symbol();
    }

    function decimals() public view override
    returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override
    returns (uint256) {
        return ICUTImpl(productionLibrary).totalSupply();
    }

    function balanceOf(address account) public view override
    returns (uint256) {
        return ICUTImpl(productionLibrary).balanceOf(account);
    }

    function allowance(address owner, address spender) public view override
    returns (uint256) {
        return ICUTImpl(productionLibrary).allowance(owner, spender);
    }

    function transfer(address recipient, uint256 amount) public override
    returns (bool) {
        ICUTImpl(productionLibrary).transfer(_msgSender(), recipient, amount);

        emit Transfer(_msgSender(), recipient, amount);
        return true;
    }

    function approve(address spender, uint256 amount) public override
    returns (bool) {
        ICUTImpl(productionLibrary).approve(_msgSender(), spender, amount);

        emit Approval(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address from, address recipient, uint256 amount) public override
    returns (bool) {
        ICUTImpl(productionLibrary).transferFrom(_msgSender(), from, recipient, amount);

        emit Transfer(from, recipient, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public override
    returns (bool) {
        uint256 newAllowance = ICUTImpl(productionLibrary).increaseAllowance(
            _msgSender(), spender, addedValue);

        emit Approval(_msgSender(), spender, newAllowance);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public override
    returns (bool) {
        uint256 newAllowance = ICUTImpl(productionLibrary).decreaseAllowance(
            _msgSender(), spender, subtractedValue);

        emit Approval(_msgSender(), spender, newAllowance);
        return true;
    }

    function signalRetireIntent(uint256 retirementAmount) public override {
        return ICUTImpl(productionLibrary).signalRetireIntent(_msgSender(), retirementAmount);
    }
}

File 2 of 8 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

import "../utils/EnumerableSet.sol";
import "../utils/Address.sol";
import "../GSN/Context.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 3 of 8 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

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

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

File 4 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

File 5 of 8 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

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

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

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

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

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 6 of 8 : ICUTLib.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.7.0;

import "../../vendor/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";


interface ICUTLib is IERC20 {

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);

    function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
    function signalRetireIntent(uint256 retirementAmount) external;
}

interface ICUTImpl {
    event InternalTransfer(address indexed from, address indexed to, uint256 amount);
    event InternalApproval(address indexed owner, address indexed spender, uint256 amount);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);

    function balanceOf(address account) external view returns (uint256);
    function totalSupply() external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    /* Proxy specific implementation to pass actual sender through to do their own work.
     * this is here to avoid using tx.origin which is a known security smell, and can
     * hijack admin calls. msgSender on CUT will always be the Proxy contract, so context
     * is lost when using the public ERC interface.
     */
    function approve(address proxySender, address spender, uint256 amount) external returns (bool);
    function transfer(address proxySender, address recipient, uint256 amount) external returns (bool);
    function transferFrom(address proxySender, address sender, address recipient, uint256 amount) external returns (uint256);
    function increaseAllowance(address proxySender, address spender, uint256 addedValue) external returns (uint256);
    function decreaseAllowance(address proxySender, address spender, uint256 subtractedValue) external returns (uint256);
    function signalRetireIntent(address proxySender, uint256 retirementAmount) external;
}

File 7 of 8 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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

pragma solidity ^0.7.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOGGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"announceDispersed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contributor","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"announceRetirement","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getProductionLibrary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLibrary","type":"address"}],"name":"setProductionLibrary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"retirementAmount","type":"uint256"}],"name":"signalRetireIntent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506200002860006200002262000041565b62000045565b6001805460ff60a01b1916600560a01b17905562000155565b3390565b62000051828262000055565b5050565b6000828152602081815260409091206200007a918390620014e4620000ce821b17901c565b1562000051576200008a62000041565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620000e5836001600160a01b038416620000ee565b90505b92915050565b6000620000fc83836200013d565b6200013457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620000e8565b506000620000e8565b60009081526001919091016020526040902054151590565b61191980620001656000396000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c806370a08231116100ee578063a217fddf11610097578063b6f3aaca11610071578063b6f3aaca146105bb578063ca15c873146105c3578063d547741f146105e0578063dd62ed3e14610619576101a3565b8063a217fddf14610541578063a457c2d714610549578063a9059cbb14610582576101a3565b80639010d07c116100c85780639010d07c146104b457806391d148541461050057806395d89b4114610539576101a3565b806370a08231146104405780637bf0fbde146104735780638a511c7a1461047b576101a3565b8063248a9ca311610150578063313ce5671161012a578063313ce567146103b057806336568abe146103ce5780633950935114610407576101a3565b8063248a9ca314610327578063253dbdb0146103445780632f2ff15d14610377576101a3565b80631488e425116101815780631488e425146102ab57806318160ddd146102ca57806323b872dd146102e4576101a3565b806305d8f8aa146101a857806306fdde03146101f5578063095ea7b314610272575b600080fd5b6101e1600480360360408110156101be57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610654565b604080519115158252519081900360200190f35b6101fd61074e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023757818101518382015260200161021f565b50505050905090810190601f1680156102645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e16004803603604081101561028857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108c9565b6102c8600480360360208110156102c157600080fd5b5035610a05565b005b6102d2610a9a565b60408051918252519081900360200190f35b6101e1600480360360608110156102fa57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610b36565b6102d26004803603602081101561033d57600080fd5b5035610c75565b6102c86004803603602081101561035a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c8a565b6102c86004803603604081101561038d57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610d49565b6103b8610dca565b6040805160ff9092168252519081900360200190f35b6102c8600480360360408110156103e457600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610deb565b6101e16004803603604081101561041d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e80565b6102d26004803603602081101561045657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610fc1565b6102d261106a565b6101e16004803603604081101561049157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561108e565b6104d7600480360360408110156104ca57600080fd5b508035906020013561117e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101e16004803603604081101561051657600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661119d565b6101fd6111b5565b6102d2611220565b6101e16004803603604081101561055f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611225565b6101e16004803603604081101561059857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611250565b6104d761138c565b6102d2600480360360208110156105d957600080fd5b50356113a8565b6102c8600480360360408110156105f657600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166113bf565b6102d26004803603604081101561062f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611432565b60006106877f566c814873eed56a69b28c40ab27cc2cb150d74068bae3e884ccd44f8de60f8a610682611506565b61119d565b6106f257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f433a4c4f47000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60015460408051848152905173ffffffffffffffffffffffffffffffffffffffff8087169316917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35060015b92915050565b600154604080517f06fdde03000000000000000000000000000000000000000000000000000000008152905160609273ffffffffffffffffffffffffffffffffffffffff16916306fdde03916004808301926000929190829003018186803b1580156107b957600080fd5b505afa1580156107cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561081457600080fd5b810190808051604051939291908464010000000082111561083457600080fd5b90830190602082018581111561084957600080fd5b825164010000000081118282018810171561086357600080fd5b82525081516020918201929091019080838360005b83811015610890578181015183820152602001610878565b50505050905090810190601f1680156108bd5780820380516001836020036101000a031916815260200191505b50604052505050905090565b60015460009073ffffffffffffffffffffffffffffffffffffffff1663e1f21c676108f2611506565b85856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561096457600080fd5b505af1158015610978573d6000803e3d6000fd5b505050506040513d602081101561098e57600080fd5b505073ffffffffffffffffffffffffffffffffffffffff83166109af611506565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a350600192915050565b60015473ffffffffffffffffffffffffffffffffffffffff166335e28392610a2b611506565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015610a7f57600080fd5b505af1158015610a93573d6000803e3d6000fd5b5050505050565b600154604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916318160ddd916004808301926020929190829003018186803b158015610b0557600080fd5b505afa158015610b19573d6000803e3d6000fd5b505050506040513d6020811015610b2f57600080fd5b5051905090565b60015460009073ffffffffffffffffffffffffffffffffffffffff166315dacbea610b5f611506565b8686866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050602060405180830381600087803b158015610bef57600080fd5b505af1158015610c03573d6000803e3d6000fd5b505050506040513d6020811015610c1957600080fd5b505060408051838152905173ffffffffffffffffffffffffffffffffffffffff80861692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060019392505050565b60009081526020819052604090206002015490565b610c976000610682611506565b610d0257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f433a41444d494e00000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600082815260208190526040902060020154610d6790610682611506565b610dbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180611856602f913960400191505060405180910390fd5b610dc6828261150a565b5050565b60015474010000000000000000000000000000000000000000900460ff1690565b610df3611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806118b5602f913960400191505060405180910390fd5b610dc6828261158d565b600154600090819073ffffffffffffffffffffffffffffffffffffffff16636c43a2ca610eab611506565b86866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610f1d57600080fd5b505af1158015610f31573d6000803e3d6000fd5b505050506040513d6020811015610f4757600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff8416610f6a611506565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a35060019392505050565b600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561103857600080fd5b505afa15801561104c573d6000803e3d6000fd5b505050506040513d602081101561106257600080fd5b505192915050565b7f566c814873eed56a69b28c40ab27cc2cb150d74068bae3e884ccd44f8de60f8a81565b60006110bc7f566c814873eed56a69b28c40ab27cc2cb150d74068bae3e884ccd44f8de60f8a610682611506565b61112757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f433a4c4f47000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60408051838152905160009173ffffffffffffffffffffffffffffffffffffffff8616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60008281526020819052604081206111969083611610565b9392505050565b6000828152602081905260408120611196908361161c565b600154604080517f95d89b41000000000000000000000000000000000000000000000000000000008152905160609273ffffffffffffffffffffffffffffffffffffffff16916395d89b41916004808301926000929190829003018186803b1580156107b957600080fd5b600081565b600154600090819073ffffffffffffffffffffffffffffffffffffffff1663d73b1dc9610eab611506565b60015460009073ffffffffffffffffffffffffffffffffffffffff1663beabacc8611279611506565b85856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156112eb57600080fd5b505af11580156112ff573d6000803e3d6000fd5b505050506040513d602081101561131557600080fd5b505073ffffffffffffffffffffffffffffffffffffffff8316611336611506565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350600192915050565b60015473ffffffffffffffffffffffffffffffffffffffff1690565b60008181526020819052604081206107489061163e565b6000828152602081905260409020600201546113dd90610682611506565b610e76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806118856030913960400191505060405180910390fd5b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015284811660248301529151600093929092169163dd62ed3e91604480820192602092909190829003018186803b1580156114b157600080fd5b505afa1580156114c5573d6000803e3d6000fd5b505050506040513d60208110156114db57600080fd5b50519392505050565b60006111968373ffffffffffffffffffffffffffffffffffffffff8416611649565b3390565b600082815260208190526040902061152290826114e4565b15610dc65761152f611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206115a59082611693565b15610dc6576115b2611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600061119683836116b5565b60006111968373ffffffffffffffffffffffffffffffffffffffff8416611733565b60006107488261174b565b60006116558383611733565b61168b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610748565b506000610748565b60006111968373ffffffffffffffffffffffffffffffffffffffff841661174f565b81546000908210611711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806118346022913960400191505060405180910390fd5b82600001828154811061172057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600081815260018301602052604081205480156118295783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80830191908101906000908790839081106117a057fe5b90600052602060002001549050808760000184815481106117bd57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806117ed57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610748565b600091505061074856fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122074fdf328c37aa2559dc8b77a66432837d0fffd0e1a0e3c9947367e23904d264064736f6c63430007060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a35760003560e01c806370a08231116100ee578063a217fddf11610097578063b6f3aaca11610071578063b6f3aaca146105bb578063ca15c873146105c3578063d547741f146105e0578063dd62ed3e14610619576101a3565b8063a217fddf14610541578063a457c2d714610549578063a9059cbb14610582576101a3565b80639010d07c116100c85780639010d07c146104b457806391d148541461050057806395d89b4114610539576101a3565b806370a08231146104405780637bf0fbde146104735780638a511c7a1461047b576101a3565b8063248a9ca311610150578063313ce5671161012a578063313ce567146103b057806336568abe146103ce5780633950935114610407576101a3565b8063248a9ca314610327578063253dbdb0146103445780632f2ff15d14610377576101a3565b80631488e425116101815780631488e425146102ab57806318160ddd146102ca57806323b872dd146102e4576101a3565b806305d8f8aa146101a857806306fdde03146101f5578063095ea7b314610272575b600080fd5b6101e1600480360360408110156101be57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610654565b604080519115158252519081900360200190f35b6101fd61074e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023757818101518382015260200161021f565b50505050905090810190601f1680156102645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e16004803603604081101561028857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108c9565b6102c8600480360360208110156102c157600080fd5b5035610a05565b005b6102d2610a9a565b60408051918252519081900360200190f35b6101e1600480360360608110156102fa57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610b36565b6102d26004803603602081101561033d57600080fd5b5035610c75565b6102c86004803603602081101561035a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c8a565b6102c86004803603604081101561038d57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610d49565b6103b8610dca565b6040805160ff9092168252519081900360200190f35b6102c8600480360360408110156103e457600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610deb565b6101e16004803603604081101561041d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e80565b6102d26004803603602081101561045657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610fc1565b6102d261106a565b6101e16004803603604081101561049157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561108e565b6104d7600480360360408110156104ca57600080fd5b508035906020013561117e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101e16004803603604081101561051657600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661119d565b6101fd6111b5565b6102d2611220565b6101e16004803603604081101561055f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611225565b6101e16004803603604081101561059857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611250565b6104d761138c565b6102d2600480360360208110156105d957600080fd5b50356113a8565b6102c8600480360360408110156105f657600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166113bf565b6102d26004803603604081101561062f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611432565b60006106877f566c814873eed56a69b28c40ab27cc2cb150d74068bae3e884ccd44f8de60f8a610682611506565b61119d565b6106f257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f433a4c4f47000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60015460408051848152905173ffffffffffffffffffffffffffffffffffffffff8087169316917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35060015b92915050565b600154604080517f06fdde03000000000000000000000000000000000000000000000000000000008152905160609273ffffffffffffffffffffffffffffffffffffffff16916306fdde03916004808301926000929190829003018186803b1580156107b957600080fd5b505afa1580156107cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561081457600080fd5b810190808051604051939291908464010000000082111561083457600080fd5b90830190602082018581111561084957600080fd5b825164010000000081118282018810171561086357600080fd5b82525081516020918201929091019080838360005b83811015610890578181015183820152602001610878565b50505050905090810190601f1680156108bd5780820380516001836020036101000a031916815260200191505b50604052505050905090565b60015460009073ffffffffffffffffffffffffffffffffffffffff1663e1f21c676108f2611506565b85856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561096457600080fd5b505af1158015610978573d6000803e3d6000fd5b505050506040513d602081101561098e57600080fd5b505073ffffffffffffffffffffffffffffffffffffffff83166109af611506565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a350600192915050565b60015473ffffffffffffffffffffffffffffffffffffffff166335e28392610a2b611506565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015610a7f57600080fd5b505af1158015610a93573d6000803e3d6000fd5b5050505050565b600154604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916318160ddd916004808301926020929190829003018186803b158015610b0557600080fd5b505afa158015610b19573d6000803e3d6000fd5b505050506040513d6020811015610b2f57600080fd5b5051905090565b60015460009073ffffffffffffffffffffffffffffffffffffffff166315dacbea610b5f611506565b8686866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050602060405180830381600087803b158015610bef57600080fd5b505af1158015610c03573d6000803e3d6000fd5b505050506040513d6020811015610c1957600080fd5b505060408051838152905173ffffffffffffffffffffffffffffffffffffffff80861692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060019392505050565b60009081526020819052604090206002015490565b610c976000610682611506565b610d0257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f433a41444d494e00000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600082815260208190526040902060020154610d6790610682611506565b610dbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180611856602f913960400191505060405180910390fd5b610dc6828261150a565b5050565b60015474010000000000000000000000000000000000000000900460ff1690565b610df3611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806118b5602f913960400191505060405180910390fd5b610dc6828261158d565b600154600090819073ffffffffffffffffffffffffffffffffffffffff16636c43a2ca610eab611506565b86866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610f1d57600080fd5b505af1158015610f31573d6000803e3d6000fd5b505050506040513d6020811015610f4757600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff8416610f6a611506565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a35060019392505050565b600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561103857600080fd5b505afa15801561104c573d6000803e3d6000fd5b505050506040513d602081101561106257600080fd5b505192915050565b7f566c814873eed56a69b28c40ab27cc2cb150d74068bae3e884ccd44f8de60f8a81565b60006110bc7f566c814873eed56a69b28c40ab27cc2cb150d74068bae3e884ccd44f8de60f8a610682611506565b61112757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f433a4c4f47000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60408051838152905160009173ffffffffffffffffffffffffffffffffffffffff8616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60008281526020819052604081206111969083611610565b9392505050565b6000828152602081905260408120611196908361161c565b600154604080517f95d89b41000000000000000000000000000000000000000000000000000000008152905160609273ffffffffffffffffffffffffffffffffffffffff16916395d89b41916004808301926000929190829003018186803b1580156107b957600080fd5b600081565b600154600090819073ffffffffffffffffffffffffffffffffffffffff1663d73b1dc9610eab611506565b60015460009073ffffffffffffffffffffffffffffffffffffffff1663beabacc8611279611506565b85856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156112eb57600080fd5b505af11580156112ff573d6000803e3d6000fd5b505050506040513d602081101561131557600080fd5b505073ffffffffffffffffffffffffffffffffffffffff8316611336611506565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350600192915050565b60015473ffffffffffffffffffffffffffffffffffffffff1690565b60008181526020819052604081206107489061163e565b6000828152602081905260409020600201546113dd90610682611506565b610e76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806118856030913960400191505060405180910390fd5b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015284811660248301529151600093929092169163dd62ed3e91604480820192602092909190829003018186803b1580156114b157600080fd5b505afa1580156114c5573d6000803e3d6000fd5b505050506040513d60208110156114db57600080fd5b50519392505050565b60006111968373ffffffffffffffffffffffffffffffffffffffff8416611649565b3390565b600082815260208190526040902061152290826114e4565b15610dc65761152f611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206115a59082611693565b15610dc6576115b2611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600061119683836116b5565b60006111968373ffffffffffffffffffffffffffffffffffffffff8416611733565b60006107488261174b565b60006116558383611733565b61168b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610748565b506000610748565b60006111968373ffffffffffffffffffffffffffffffffffffffff841661174f565b81546000908210611711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806118346022913960400191505060405180910390fd5b82600001828154811061172057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600081815260018301602052604081205480156118295783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80830191908101906000908790839081106117a057fe5b90600052602060002001549050808760000184815481106117bd57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806117ed57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610748565b600091505061074856fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122074fdf328c37aa2559dc8b77a66432837d0fffd0e1a0e3c9947367e23904d264064736f6c63430007060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.