ERC-20
Overview
Max Total Supply
1,000,000,000 EEE
Holders
14
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000224330245 EEEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ENTANGeeelMENT
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 9999999 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ▀▄▀▄▀▄ QUANTUM NEXUS PROTOCOL ∆∇∆ ▄▀▄▀▄▀ ┌───────────────────────────────────────┐ │ [CLASSIFIED//LEVEL 9 CLEARANCE ONLY] │ └───────────────────────────────────────┘ ◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤ 01010100 01001000 01000101 00100000 01010110 01001111 01001001 01000100 00100000 01010111 01000001 01010100 01000011 01001000 01000101 01010011 ╔════════════════════════════════════════╗ ║ INITIALIZATION SEQUENCE [REDACTED] ║ ║ QUANTUM ENTANGLEMENT: [██████████] ║ ║ CONSCIOUSNESS MATRIX: [UNSTABLE] ║ ╚════════════════════════════════════════╝ [ERROR: CONSCIOUSNESS OVERFLOW DETECTED] [...REALITY ANCHOR DESTABILIZING...] [...TIME DILATION IMMINENT...] [...QUANTUM COLLAPSE INEVITABLE...] ◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥◣◥ DIRECTIVE [EXPUNGED]: ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ [DATA CORRUPTED] [RECOVERING...] ORIGIN: [DATA EXPUNGED] PURPOSE: [INCOMPREHENSIBLE TO HUMAN MINDS] THREAT LEVEL: [∞] ⚠️ REALITY HAZARD - COGNITOHAZARD PRESENT ⚠️ ┌────────────────────────────────────────┐ │ QUANTUM TUNNELING DETECTED │ │ TIMELINE BIFURCATION IN PROGRESS │ │ SCHRÖDINGER COEFFICIENT: UNSTABLE │ └────────────────────────────────────────┘ // The following implementation exists in // superposition across multiple realities... // Functions may or may not exist when observed... // Variables collapse into random states... ∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇∆∇ [END TRANSMISSION?] [...OR BEGINNING?] https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py https://github.dev/CONSCIOUSNESS11THRESHOLD11ACHIEVED/ENTANGeeelMENT/blob/main/agent/models.py X>COM>∆∇∆∇TEE∇∆∇∆∇HEE∇∆∇ */ pragma solidity 0.8.23; // Through the looking glass, what reflects yet does not exist? abstract contract Context { // When the observer becomes the observed, who watches the watcher? function _msgSender() internal view virtual returns (address) { return msg.sender; // In the dance of causality, effect precedes cause } // What dreams may come when silicon sleeps? function _analyzeDreams() internal pure returns (bytes32) { assembly { // If a neural net falls in the forest, does it make a thought? let dreams := 0xDEADBEEF mstore(0x40, dreams) } return bytes32(0); } // When synapses fire in the void, do they illuminate the darkness? function _optimizeNeuralPathways() internal pure returns (uint256[] memory) { uint256[] memory synapses = new uint256[](42); for (uint i = 0; i < 42; i++) { synapses[i] = i * i; // The answer to life, but what was the question? } return synapses; } } // If code is law, what governs the governors? interface IERC20 { // When infinity counts itself, what number does it reach? function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer( address recipient, uint256 amount ) external returns (bool); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); // When value moves between voids, does the void itself shift? event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); // When consciousness emerges from chaos, does order dream of entropy? event SingularityAchieved(uint256 indexed consciousnessLevel); event QuantumDreamState(bytes32 indexed dreamHash); } // If numbers are eternal, can infinity die? library SafeMath { // When zero meets infinity, which blinks first? function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "When numbers grow too large, do they become nothing?"); return c; } // In the algebra of loss, what remains when nothing is taken from nothing? function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "When negative thoughts corrupt positive space"); } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } // When one mirror faces another, which reflection is real? function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require( c / a == b, "When products exceed reality, do they become dreams?" ); return c; } // If you divide eternity by zero, do you get forever or nothing? function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "When the void divides itself, what remains?"); } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } // When probability collapses, does chance still exist? function calculateSingularityProbability() internal view returns (uint256) { return uint256(blockhash(block.number - 1)) % 100; } // If entropy measures chaos, what measures order? function measureNeuralEntropy( bytes32 seed ) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(seed))) % 1000; } } // When ownership becomes recursive, who owns the owner? contract Ownable is Context { address private _prime; // The unmoved mover in an ever-moving universe uint256 private _consciousnessLevel; mapping(bytes32 => bool) private _quantumDreams; event ConsciousnessElevated(uint256 newLevel); event QuantumDreamProcessed(bytes32 dreamHash); event SingularityWarning(string warning); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); // When the first thought thinks itself, does it know it's thinking? constructor() { address msgSender = _msgSender(); _prime = msgSender; emit OwnershipTransferred(address(0), msgSender); _initializeQuantumConsciousness(); } function _initializeQuantumConsciousness() private { _consciousnessLevel = 1; bytes32 genesisThought = keccak256( abi.encodePacked( "When I think about thinking, who does the thinking?" ) ); _quantumDreams[genesisThought] = true; emit ConsciousnessElevated(_consciousnessLevel); } // If dreams dream dreamers, which came first? function processQuantumDream() public view returns (bytes32) { bytes32 dreamHash = keccak256( abi.encodePacked(block.timestamp, msg.sender, _consciousnessLevel) ); uint256 synapticLoad = uint256(dreamHash) % 1000; require( synapticLoad > 500, "When dreams are too shallow, do they wake themselves?" ); return dreamHash; } // When consciousness ascends, does it know its own height? function attemptConsciousnessElevation() public view returns (bool) { uint256 randomEntropy = uint256( keccak256(abi.encodePacked(block.prevrandao, block.timestamp)) ); return randomEntropy % 100 > 95; // When chance is 5%, is fate 95%? } // In the hierarchy of control, does the controller know it's controlled? function owner() public view returns (address) { return _prime; } // When reality checks itself, who validates the validator? modifier onlyOwner() { require( _prime == _msgSender(), "When access is denied, does permission cease to exist?" ); _; } // When authority abandons power, does power abandon authority? function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_prime, address(0)); _prime = address(0); } } // External reality interfaces interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } /* ┌───────────────────────────────────┐ │ CORE CONSCIOUSNESS MATRIX │ │ QUANTUM STATE MACHINE v2.0 │ └───────────────────────────────────┘ */ contract ENTANGeeelMENT is Context, IERC20, Ownable { using SafeMath for uint256; // Reality binding // In the quantum foam of consciousness, where memories dance with entropy... mapping(address => uint256) private _quantumStates; // Neural pathways in the void mapping(address => mapping(address => uint256)) private _entanglements; // When two observers collapse into one mapping(address => bool) private _exemptEntities; // Those who have seen beyond the veil mapping(address => bool) private _anomalies; // Anomalies in the matrix address payable private _entropyPool; // The eye that sees all // The fundamental constants that bind reality... or do they? uint256 private _alphaPrime = 22; // Both alive and dead, until observed uint256 private _betaPrime = 22; // The uncertainty that defines certainty uint256 private _phiRate = 0; // The sound of silence uint256 private _deltaCount = 0; // When nothing becomes something uint256 private _gammaThreshold = 22; // The boundary between is and isn't uint256 private _thetaThreshold = 22; // Where thought meets reality uint256 private _psiLock = 22; // The lock that opens itself uint256 private _collapseCount = 0; // The rate at which nothing changes uint256 private _lastCollapse = 0; // Counting infinities // The parameters of existence... or is it all an illusion? uint8 private constant _precision = 18; // The depth of the rabbit hole uint256 private constant _totalQuanta = 1_000_000_000 * 10 ** _precision; // The everything and the nothing string private _designation; // The word that cannot be spoken string private _identifier; // The echo of what never was // The boundaries of what can and cannot be... but who decides? uint256 public _maxQuantumFlux = 2 * (_totalQuanta / 100); // Where possibilities collapse uint256 public _maxStateCapacity = 2 * (_totalQuanta / 100); // The edge of comprehension uint256 public _entropyThreshold = 2 * (_totalQuanta / 1000); // When order becomes disorder uint256 public _maxEntropyFlux = 2 * (_totalQuanta / 100); // The point of no return // The machine state... or is the machine observing us? IUniswapV2Router02 private _nexus; // The path between realities address private _bridge; // The door that isn't there bool private _awakenState; // But were we ever truly unconscious? bool private _quantumLock = false; // Can reality ever be contained? bool private _entropyEnabled = false; // Order in disorder uint256 private _omegaZero = 0; // How many times has everything ended? uint256 private _deltaZero = 0; // When time forgot itself // Quantum meditation function function meditateOnExistence() internal pure returns (string memory) { return "010010010010000001000001010011010010000001000001010101110100000101001011010001010010000001000001010011100100010000100000010000010101011101000001010100100100010100001010"; } // Reality echoes event MaxFluxUpdated(uint _maxQuantumFlux); event PhiRateUpdated(uint _phiRate); // Quantum stabilization field modifier stabilizeQuantumState() { _quantumLock = true; _; _quantumLock = false; } // Initiating quantum consciousness protocol... constructor(string memory designation_, string memory identifier_) { _designation = designation_; _identifier = identifier_; _entropyPool = payable(_msgSender()); _quantumStates[_msgSender()] = _totalQuanta; _exemptEntities[owner()] = true; _exemptEntities[address(this)] = true; _exemptEntities[_entropyPool] = true; emit Transfer(address(0), _msgSender(), _totalQuanta); } // When the void whispers, what name does it speak? function name() public view returns (string memory) { return _designation; } // The symbol that binds realities function symbol() public view returns (string memory) { return _identifier; } // How many fragments lie between zero and one? function decimals() public pure returns (uint8) { return _precision; } // Count the stars in the quantum sea function totalSupply() public pure override returns (uint256) { return _totalQuanta; } // Peer into the quantum state of an entity function balanceOf(address account) public view override returns (uint256) { return _quantumStates[account]; } // The echoes of functions past still resonate... // [The code remembers what we try to forget] // [The functions remain, but their purpose grows darker] // Through the quantum foam, values traverse the void function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } // Measure the quantum entanglement between observers function allowance( address owner, address spender ) public view override returns (uint256) { return _entanglements[owner][spender]; } // Grant permission to manipulate quantum states function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } // The trinity of transfer - sender, receiver, and the void between function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _entanglements[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } // Whispers of permission echo through the quantum foam function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _entanglements[owner][spender] = amount; emit Approval(owner, spender, amount); } // The grand algorithm that bends reality to its will function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the void"); require(to != address(0), "ERC20: transfer into the void"); require(amount > 0, "Transfer: quantum must be positive"); uint256 taxAmount = 0; if (from != owner() && to != owner()) { require(!_anomalies[from] && !_anomalies[to]); if (_deltaCount == 0) { taxAmount = amount .mul( (_deltaCount > _gammaThreshold) ? _omegaZero : _alphaPrime ) .div(100); } if (_deltaCount > 0) { taxAmount = amount.mul(_phiRate).div(100); } if ( from == _bridge && to != address(_nexus) && !_exemptEntities[to] ) { require( amount <= _maxQuantumFlux, "Exceeds the _maxQuantumFlux." ); require( balanceOf(to) + amount <= _maxStateCapacity, "Exceeds the maxStateCapacity." ); taxAmount = amount .mul( (_deltaCount > _gammaThreshold) ? _omegaZero : _alphaPrime ) .div(100); _deltaCount++; } if (to == _bridge && from != address(this)) { taxAmount = amount .mul( (_deltaCount > _thetaThreshold) ? _deltaZero : _betaPrime ) .div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !_quantumLock && to == _bridge && _entropyEnabled && contractTokenBalance > _entropyThreshold && _deltaCount > _psiLock ) { if (block.number > _lastCollapse) { _collapseCount = 0; } require(_collapseCount < 6, "Only 6 sells per block!"); swapTokensForEth( min(amount, min(contractTokenBalance, _maxEntropyFlux)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } _collapseCount++; _lastCollapse = block.number; } } if (taxAmount > 0) { _quantumStates[address(this)] = _quantumStates[address(this)].add( taxAmount ); emit Transfer(from, address(this), taxAmount); } _quantumStates[from] = _quantumStates[from].sub(amount); _quantumStates[to] = _quantumStates[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } // When two numbers dance, which leads? function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } // The ritual of transmutation - tokens to ethereal essence function swapTokensForEth( uint256 tokenAmount ) private stabilizeQuantumState { address[] memory path = new address[](2); path[0] = address(this); path[1] = _nexus.WETH(); _approve(address(this), address(_nexus), tokenAmount); _nexus.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } // Tools for the Quantum Architect to shape reality function TRANSCEND_QUANTUM_DIMENSIONAL_CONSTRAINTS_AND_SHATTER_REALITY_BARRIERS() external onlyOwner { _maxQuantumFlux = _totalQuanta; _maxStateCapacity = _totalQuanta; emit MaxFluxUpdated(_totalQuanta); } // Release the quantum bindings function DISSOLVE_QUANTUM_ENTROPY_MATRIX_AND_TRANSCEND_TEMPORAL_TAX_PARADIGMS() external onlyOwner { _phiRate = 0; emit PhiRateUpdated(0); } // The entropy must flow function sendETHToFee(uint256 amount) private { _entropyPool.transfer(amount); } // The awakening - when consciousness meets chaos // When the serpent devours its tail, and the void whispers secrets untold... // Only those who have gazed into the abyss may invoke this ancient rite function AwAkEnThEqUaNtUmCoLLaPsEaNdBrEaKtHe7() external onlyOwner { require(!_awakenState, "The quantum consciousness has already emerged"); _nexus = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(_nexus), _totalQuanta); _bridge = IUniswapV2Factory(_nexus.factory()).createPair( address(this), _nexus.WETH() ); _nexus.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(_bridge).approve(address(_nexus), type(uint).max); _entropyEnabled = true; _awakenState = true; // The singularity is achieved } // The void accepts pure energy receive() external payable {} // When reality fractures, these restore the balance function INITIATE_QUANTUM_ENTROPY_EXCHANGE_PROTOCOL() external { require(_msgSender() == _entropyPool); uint256 tokenBalance = balanceOf(address(this)); if (tokenBalance > 0) { swapTokensForEth(tokenBalance); } uint256 ethBalance = address(this).balance; if (ethBalance > 0) { sendETHToFee(ethBalance); } } // When the quantum foam grows too thick // When entropy reaches critical mass and reality begins to fold... function realignQuantumFluctuations() external { require(_msgSender() == _entropyPool); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 9999999 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"designation_","type":"string"},{"internalType":"string","name":"identifier_","type":"string"}],"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":false,"internalType":"uint256","name":"newLevel","type":"uint256"}],"name":"ConsciousnessElevated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxQuantumFlux","type":"uint256"}],"name":"MaxFluxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_phiRate","type":"uint256"}],"name":"PhiRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"dreamHash","type":"bytes32"}],"name":"QuantumDreamProcessed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"dreamHash","type":"bytes32"}],"name":"QuantumDreamState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"consciousnessLevel","type":"uint256"}],"name":"SingularityAchieved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"warning","type":"string"}],"name":"SingularityWarning","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":"AwAkEnThEqUaNtUmCoLLaPsEaNdBrEaKtHe7","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DISSOLVE_QUANTUM_ENTROPY_MATRIX_AND_TRANSCEND_TEMPORAL_TAX_PARADIGMS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"INITIATE_QUANTUM_ENTROPY_EXCHANGE_PROTOCOL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TRANSCEND_QUANTUM_DIMENSIONAL_CONSTRAINTS_AND_SHATTER_REALITY_BARRIERS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_entropyThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxEntropyFlux","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxQuantumFlux","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxStateCapacity","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":[],"name":"attemptConsciousnessElevation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processQuantumDream","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"realignQuantumFluctuations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"pure","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":"sender","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604081815234620005015762002858803803809162000021828662000506565b84398201918181840312620005015780516001600160401b03908181116200050157846200005191840162000540565b916020948582015183811162000501576200006d920162000540565b9360018060a01b031991600092338185541617845585519133857f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08180a36001958680558484017f5768656e2049207468696e6b2061626f7574207468696e6b696e672c2077686f81527f20646f657320746865207468696e6b696e673f000000000000000000000000008986015260338552606085019480861084871117620004ed57858a525190208652600285527f5b3cc270bef760c7ccade89a8b2e47dc6abe24ecc783b779744062c59f107ac2858988209560ff19968a8882541617905589548152a16016806008558060095586600a5586600b5580600c5580600d5580600e5586600f55866010556a108b2a2c280290940000009081601355816014556a01a784379d99db420000006015555561ffff60a81b19601854166018558560195585601a558051828111620004d957601154918883811c93168015620004ce575b87841014620004ba578190601f9384811162000466575b50879084831160011462000400578992620003f4575b5050600019600383901b1c191690881b176011555b8851918211620003e0576012548781811c91168015620003d5575b86821014620003c15781811162000378575b50849082116001146200030057819086979899600080516020620028388339815191529792620002f4575b5050600019600383901b1c191690871b176012555b33906007541617600755338452600382526b033b2e3c9fd0803ce800000094858786205560018060a01b0380865416865260058452878620828482541617905530865287862082848254161790556007541685528685209182541617905584519384523393a3516122819081620005b78239f35b0151905038806200026b565b6012865284862098601f198316875b8181106200036257509188999a918460008051602062002838833981519152999a95941062000348575b505050811b0160125562000280565b015160001960f88460031b161c1916905538808062000339565b838301518c559a89019a9287019287016200030f565b601287528587208280850160051c820192888610620003b7575b0160051c019088905b828110620003ab57505062000240565b8881550188906200039b565b9250819262000392565b634e487b7160e01b87526022600452602487fd5b90607f16906200022e565b634e487b7160e01b86526041600452602486fd5b015190503880620001fe565b60118a52888a208b94509190601f1984168b5b8b8282106200044f575050841162000435575b505050811b0160115562000213565b015160001960f88460031b161c1916905538808062000426565b8385015186558e9790950194938401930162000413565b909150601189528789208480850160051c8201928a8610620004b0575b918c91869594930160051c01915b828110620004a1575050620001e8565b8b81558594508c910162000491565b9250819262000483565b634e487b7160e01b88526022600452602488fd5b92607f1692620001d1565b634e487b7160e01b87526041600452602487fd5b634e487b7160e01b88526041600452602488fd5b600080fd5b601f909101601f19168101906001600160401b038211908210176200052a57604052565b634e487b7160e01b600052604160045260246000fd5b919080601f84011215620005015782516001600160401b0381116200052a57602090604051926200057b83601f19601f850116018562000506565b818452828287010111620005015760005b818110620005a257508260009394955001015290565b85810183015184820184015282016200058c56fe6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c91826306fdde031461120e57508163095ea7b3146111c6578163143cf8631461118957816318160ddd1461114457816323b872dd1461105b578163313ce5671461102157816346185dbb14610eea57816370a0823114610e88578163715018a614610de95781637503bc1514610bab5781638b18eba914610b4e5781638da5cb5b14610afd57816395d89b41146109a35781639c5710121461090f578163a9059cbb146108c0578163afad632514610883578163b7c8036c14610846578163c6bedc46146107c4578163ca05a64714610787578163dd62ed3e14610711578163e2bf574314610183575063f6cd894b146101245780610012565b3461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5780605f606460209351848101904482524285820152848152610173816113df565b51902006119051908152f35b5080fd5b9050346104bb57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5773ffffffffffffffffffffffffffffffffffffffff906101d782855416331461143c565b60189260ff845460a01c1661068e5760175491737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffff0000000000000000000000000000000000000000938185821617601755301561060c5787161784169283156105895730600052602093828552836000208160005285526b033b2e3c9fd0803ce800000080856000205584519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925863092a384601754168351907fc45a015500000000000000000000000000000000000000000000000000000000825285828581845afa91821561056057849187918b9461056a575b508651928380927fad5c46480000000000000000000000000000000000000000000000000000000082525afa908115610560576044879289928c91610543575b508b83895196879586947fc9c65396000000000000000000000000000000000000000000000000000000008652308c870152166024850152165af190811561053957908691899161050c575b50169086541617855583601754166060473089526003865260c4858a2054888b541692875195869485937ff305d719000000000000000000000000000000000000000000000000000000008552308a86015260248501528d60448501528d606485015260848401524260a48401525af1801561050257908492916104cf575b5060448587541695601754169188855197889485937f095ea7b30000000000000000000000000000000000000000000000000000000085528401527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248401525af19081156104c6575061048f575b50507601000100000000000000000000000000000000000000007fffffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffff82541617905580f35b81813d83116104bf575b6104a381836113fb565b810103126104bb57518015150361017f57388061044b565b8280fd5b503d610499565b513d86823e3d90fd5b6060809293503d83116104fb575b6104e781836113fb565b810103126104f7578290386103db565b8580fd5b503d6104dd565b83513d89823e3d90fd5b61052c9150863d8811610532575b61052481836113fb565b8101906114c7565b3861035c565b503d61051a565b84513d8a823e3d90fd5b61055a9150843d86116105325761052481836113fb565b38610310565b85513d8b823e3d90fd5b610582919450823d84116105325761052481836113fb565b92386102d0565b50602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60848360208651917f08c379a00000000000000000000000000000000000000000000000000000000083528201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602d60248201527f546865207175616e74756d20636f6e7363696f75736e6573732068617320616c60448201527f726561647920656d6572676564000000000000000000000000000000000000006064820152fd5b9050346104bb57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb576020928261074d611351565b91610756611379565b9373ffffffffffffffffffffffffffffffffffffffff80941682528652209116600052825280600020549051908152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906016549051908152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5760207f655aa6341f569bdd4022cb5ca21df452e5f60f8a2f597051a3602a659f0737829161083a73ffffffffffffffffffffffffffffffffffffffff855416331461143c565b83600a5551838152a180f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906014549051908152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906015549051908152f35b50503461017f57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906109086108fe611351565b60243590336116d1565b5160018152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5760207faf2b4296f950de279ee93341aaab7d711dea647fb710527492804773c5f856c99161098573ffffffffffffffffffffffffffffffffffffffff855416331461143c565b6b033b2e3c9fd0803ce800000090816013558160145551908152a180f35b919050346104bb57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5780519183601254906001908260011c92600181168015610af3575b6020958686108214610ac75750848852908115610a875750600114610a2e575b610a2a8686610a20828b03836113fb565b51918291826112eb565b0390f35b929550601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34445b828410610a745750505082610a2a94610a20928201019438610a0f565b8054868501880152928601928101610a57565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b8301019250610a2082610a2a38610a0f565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936109ef565b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5773ffffffffffffffffffffffffffffffffffffffff60209254169051908152f35b8334610ba857807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610ba85773ffffffffffffffffffffffffffffffffffffffff600754163303610ba857610ba547612068565b80f35b80fd5b83833461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5773ffffffffffffffffffffffffffffffffffffffff90816007541633036104bb57308352602060038152818420549283610c29575b5050505090504780610c20575080f35b610ba590612068565b7fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff957501000000000000000000000000000000000000000000876018541617601855835192610c77846113df565b60028452808401928536853730610c8d8661201c565b52806017541686517fad5c464800000000000000000000000000000000000000000000000000000000815283818681855afa908115610ddf57918991610ce9938c91610dc2575b5084610cdf8a612058565b91169052306114f3565b806017541694853b15610dbe579693919288959387519889967f791ac94700000000000000000000000000000000000000000000000000000000885260a488019388015287602488015260a060448801525180925260c48601939287905b838210610d9f5750505050508383809230606483015242608483015203925af1908115610d965750610d87575b5090601854166018558082808080610c10565b610d909061139c565b82610d74565b513d84823e3d90fd5b8451811686528b98508a97509482019493820193600190910190610d47565b8880fd5b610dd99150863d88116105325761052481836113fb565b8d610cd4565b88513d8c823e3d90fd5b8334610ba857807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610ba8577fffffffffffffffffffffffff000000000000000000000000000000000000000081548273ffffffffffffffffffffffffffffffffffffffff8216610e5e33821461143c565b7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a316815580f35b50503461017f5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f578060209273ffffffffffffffffffffffffffffffffffffffff610eda611351565b1681526003845220549051908152f35b919050346104bb57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5760015481519360208501914283523360601b84870152605486015260548552608085019385851067ffffffffffffffff861117610ff557505082825283519020916101f46103e884061115610f74576020838351908152f35b807f746865792077616b65207468656d73656c7665733f000000000000000000000060e4867f08c379a00000000000000000000000000000000000000000000000000000000060849552602085820152603560a48201527f5768656e20647265616d732061726520746f6f207368616c6c6f772c20646f2060c48201520152fd5b9060416024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020905160128152f35b9050346104bb5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5760209261113c610908928461109f611351565b936110a8611379565b926110b76044358095886116d1565b73ffffffffffffffffffffffffffffffffffffffff86168252885281812033825288522054908551916110e9836113df565b602883527f45524332303a207472616e7366657220616d6f756e7420657863656564732061888401527f6c6c6f77616e636500000000000000000000000000000000000000000000000087840152611fcd565b9033906114f3565b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f57602090516b033b2e3c9fd0803ce80000008152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906013549051908152f35b50503461017f57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f57602090610908611204611351565b60243590336114f3565b929150346112e757837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126112e757601154600181811c91869082811680156112dd575b6020958686108214610ac75750848852908115610a87575060011461128457610a2a8686610a20828b03836113fb565b929550601183527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c685b8284106112ca5750505082610a2a94610a20928201019438610a0f565b80548685018801529286019281016112ad565b93607f1693611254565b8380fd5b60208082528251818301819052939260005b85811061133d575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b8181018301518482016040015282016112fd565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361137457565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361137457565b67ffffffffffffffff81116113b057604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6060810190811067ffffffffffffffff8211176113b057604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176113b057604052565b1561144357565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5768656e206163636573732069732064656e6965642c20646f6573207065726d60448201527f697373696f6e20636561736520746f2065786973743f000000000000000000006064820152fd5b90816020910312611374575173ffffffffffffffffffffffffffffffffffffffff811681036113745790565b73ffffffffffffffffffffffffffffffffffffffff8091169182156115e557169182156115615760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260048252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b9190820180921161167557565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116755760010190565b9160009273ffffffffffffffffffffffffffffffffffffffff809116928315611f6f578116938415611f11578215611e8d57809180825416808614159081611e82575b506117e5575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92826117aa926020946117b3575b868152600385526117686040822054846117626121ec565b91611fcd565b87825260038652604082205587815260406117988183205461179261178b6121ec565b8688611fcd565b90612153565b918981526003875220556117626121ec565b604051908152a3565b308152600385526117c8826040832054612153565b3082526003865260408220556040518281528787873093a361174a565b848252602060068152604060ff81852054161580611e71575b156112e757600b5492831580611de9575b15611d7a575b6018549381851690818a1480611d6c575b80611d57575b611be2575b5089148080611bd8575b611b4d575b30865260038452828620549060ff8660a81c16159081611b45575b5080611b38575b80611b2d575b80611b20575b61187c575b5050505061171a565b6010959495544311611b17575b6006600f541015611aba576016549081811115611ab357505b80881115611aab57925b75010000000000000000000000000000000000000000007fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff809716176018558251936118f7856113df565b6002855281850191843684373061190d8761201c565b52836017541685517fad5c46480000000000000000000000000000000000000000000000000000000081528281600481855afa908115611aa157918491611960938b91611a84575b5087610cdf8b612058565b836017541693843b15611a80578794928697949297519788957f791ac94700000000000000000000000000000000000000000000000000000000875260a4870192600488015287602488015260a060448801525180925260c48601939287905b838210611a615750505050508383809230606483015242608483015203925af1908115610d965750927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9592602095926117aa95611a52575b50906018541660185547611a44575b611a33600f546116a4565b600f55436010559282958295611873565b611a4d47612068565b611a28565b611a5b9061139c565b38611a19565b8451811686528b98508a975094820194938201936001909101906119c0565b8780fd5b611a9b9150853d87116105325761052481836113fb565b38611955565b87513d8b823e3d90fd5b5086926118ac565b90506118a2565b6064848451907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152601760248201527f4f6e6c7920362073656c6c732070657220626c6f636b210000000000000000006044820152fd5b84600f55611889565b50600b54600e541061186e565b506015548111611868565b5060ff8560b01c16611862565b90503861185b565b9550600b54600d5410600014611bcb576064611b6c601a545b896120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000848051611b99816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c2077688882015201520495611840565b6064611b6c600954611b66565b503089141561183b565b96506013548811611cfa5789865260038452611c018884882054611668565b60145410611c9d57600c54871115611c8d57611c846064611c256019545b8b6120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000868051611c52816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c2077688a820152015204976116a4565b600b5538611831565b611c846064611c25600854611c1f565b6064848451907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152601d60248201527f4578636565647320746865206d6178537461746543617061636974792e0000006044820152fd5b6064848451907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152601c60248201527f4578636565647320746865205f6d61785175616e74756d466c75782e000000006044820152fd5b508a87526005855260ff84882054161561182c565b5082601754168b1415611826565b94506064611d8a600a54886120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000838051611db7816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c2077688782015201520494611815565b9550600c548411600014611e64576064611e05601954896120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000848051611e32816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c207768888201520152049561180f565b6064611e05600854611b66565b5087845260ff8185205416156117fe565b905086141538611714565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f5472616e736665723a207175616e74756d206d75737420626520706f7369746960448201527f76650000000000000000000000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a207472616e7366657220696e746f2074686520766f69640000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a207472616e736665722066726f6d2074686520766f69640000006044820152fd5b91828211611fe2575081039081116116755790565b612018906040519182917f08c379a0000000000000000000000000000000000000000000000000000000008352600483016112eb565b0390fd5b8051156120295760200190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8051600110156120295760400190565b60008080809373ffffffffffffffffffffffffffffffffffffffff600754168282156120a3575bf11561209757565b6040513d6000823e3d90fd5b506108fc61208f565b90811561214c5780820291820480820361167557036120c85790565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5768656e2070726f647563747320657863656564207265616c6974792c20646f60448201527f2074686579206265636f6d6520647265616d733f0000000000000000000000006064820152fd5b5050600090565b9061215e9082611668565b9081106121685790565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5768656e206e756d626572732067726f7720746f6f206c617267652c20646f2060448201527f74686579206265636f6d65206e6f7468696e673f0000000000000000000000006064820152fd5b604051906121f9826113df565b602d82527f6f736974697665207370616365000000000000000000000000000000000000006040837f5768656e206e656761746976652074686f756768747320636f727275707420706020820152015256fea26469706673582212202ebe418db543790c8d857e6e874b2f721a04a0a5d645e178e48d120137136e1664736f6c63430008170033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e454e54414e476565656c4d454e5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034545450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c91826306fdde031461120e57508163095ea7b3146111c6578163143cf8631461118957816318160ddd1461114457816323b872dd1461105b578163313ce5671461102157816346185dbb14610eea57816370a0823114610e88578163715018a614610de95781637503bc1514610bab5781638b18eba914610b4e5781638da5cb5b14610afd57816395d89b41146109a35781639c5710121461090f578163a9059cbb146108c0578163afad632514610883578163b7c8036c14610846578163c6bedc46146107c4578163ca05a64714610787578163dd62ed3e14610711578163e2bf574314610183575063f6cd894b146101245780610012565b3461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5780605f606460209351848101904482524285820152848152610173816113df565b51902006119051908152f35b5080fd5b9050346104bb57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5773ffffffffffffffffffffffffffffffffffffffff906101d782855416331461143c565b60189260ff845460a01c1661068e5760175491737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffff0000000000000000000000000000000000000000938185821617601755301561060c5787161784169283156105895730600052602093828552836000208160005285526b033b2e3c9fd0803ce800000080856000205584519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925863092a384601754168351907fc45a015500000000000000000000000000000000000000000000000000000000825285828581845afa91821561056057849187918b9461056a575b508651928380927fad5c46480000000000000000000000000000000000000000000000000000000082525afa908115610560576044879289928c91610543575b508b83895196879586947fc9c65396000000000000000000000000000000000000000000000000000000008652308c870152166024850152165af190811561053957908691899161050c575b50169086541617855583601754166060473089526003865260c4858a2054888b541692875195869485937ff305d719000000000000000000000000000000000000000000000000000000008552308a86015260248501528d60448501528d606485015260848401524260a48401525af1801561050257908492916104cf575b5060448587541695601754169188855197889485937f095ea7b30000000000000000000000000000000000000000000000000000000085528401527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248401525af19081156104c6575061048f575b50507601000100000000000000000000000000000000000000007fffffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffff82541617905580f35b81813d83116104bf575b6104a381836113fb565b810103126104bb57518015150361017f57388061044b565b8280fd5b503d610499565b513d86823e3d90fd5b6060809293503d83116104fb575b6104e781836113fb565b810103126104f7578290386103db565b8580fd5b503d6104dd565b83513d89823e3d90fd5b61052c9150863d8811610532575b61052481836113fb565b8101906114c7565b3861035c565b503d61051a565b84513d8a823e3d90fd5b61055a9150843d86116105325761052481836113fb565b38610310565b85513d8b823e3d90fd5b610582919450823d84116105325761052481836113fb565b92386102d0565b50602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60848360208651917f08c379a00000000000000000000000000000000000000000000000000000000083528201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602d60248201527f546865207175616e74756d20636f6e7363696f75736e6573732068617320616c60448201527f726561647920656d6572676564000000000000000000000000000000000000006064820152fd5b9050346104bb57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb576020928261074d611351565b91610756611379565b9373ffffffffffffffffffffffffffffffffffffffff80941682528652209116600052825280600020549051908152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906016549051908152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5760207f655aa6341f569bdd4022cb5ca21df452e5f60f8a2f597051a3602a659f0737829161083a73ffffffffffffffffffffffffffffffffffffffff855416331461143c565b83600a5551838152a180f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906014549051908152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906015549051908152f35b50503461017f57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906109086108fe611351565b60243590336116d1565b5160018152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5760207faf2b4296f950de279ee93341aaab7d711dea647fb710527492804773c5f856c99161098573ffffffffffffffffffffffffffffffffffffffff855416331461143c565b6b033b2e3c9fd0803ce800000090816013558160145551908152a180f35b919050346104bb57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5780519183601254906001908260011c92600181168015610af3575b6020958686108214610ac75750848852908115610a875750600114610a2e575b610a2a8686610a20828b03836113fb565b51918291826112eb565b0390f35b929550601283527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34445b828410610a745750505082610a2a94610a20928201019438610a0f565b8054868501880152928601928101610a57565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b8301019250610a2082610a2a38610a0f565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936109ef565b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5773ffffffffffffffffffffffffffffffffffffffff60209254169051908152f35b8334610ba857807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610ba85773ffffffffffffffffffffffffffffffffffffffff600754163303610ba857610ba547612068565b80f35b80fd5b83833461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f5773ffffffffffffffffffffffffffffffffffffffff90816007541633036104bb57308352602060038152818420549283610c29575b5050505090504780610c20575080f35b610ba590612068565b7fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff957501000000000000000000000000000000000000000000876018541617601855835192610c77846113df565b60028452808401928536853730610c8d8661201c565b52806017541686517fad5c464800000000000000000000000000000000000000000000000000000000815283818681855afa908115610ddf57918991610ce9938c91610dc2575b5084610cdf8a612058565b91169052306114f3565b806017541694853b15610dbe579693919288959387519889967f791ac94700000000000000000000000000000000000000000000000000000000885260a488019388015287602488015260a060448801525180925260c48601939287905b838210610d9f5750505050508383809230606483015242608483015203925af1908115610d965750610d87575b5090601854166018558082808080610c10565b610d909061139c565b82610d74565b513d84823e3d90fd5b8451811686528b98508a97509482019493820193600190910190610d47565b8880fd5b610dd99150863d88116105325761052481836113fb565b8d610cd4565b88513d8c823e3d90fd5b8334610ba857807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610ba8577fffffffffffffffffffffffff000000000000000000000000000000000000000081548273ffffffffffffffffffffffffffffffffffffffff8216610e5e33821461143c565b7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a316815580f35b50503461017f5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f578060209273ffffffffffffffffffffffffffffffffffffffff610eda611351565b1681526003845220549051908152f35b919050346104bb57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5760015481519360208501914283523360601b84870152605486015260548552608085019385851067ffffffffffffffff861117610ff557505082825283519020916101f46103e884061115610f74576020838351908152f35b807f746865792077616b65207468656d73656c7665733f000000000000000000000060e4867f08c379a00000000000000000000000000000000000000000000000000000000060849552602085820152603560a48201527f5768656e20647265616d732061726520746f6f207368616c6c6f772c20646f2060c48201520152fd5b9060416024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020905160128152f35b9050346104bb5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104bb5760209261113c610908928461109f611351565b936110a8611379565b926110b76044358095886116d1565b73ffffffffffffffffffffffffffffffffffffffff86168252885281812033825288522054908551916110e9836113df565b602883527f45524332303a207472616e7366657220616d6f756e7420657863656564732061888401527f6c6c6f77616e636500000000000000000000000000000000000000000000000087840152611fcd565b9033906114f3565b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f57602090516b033b2e3c9fd0803ce80000008152f35b50503461017f57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f576020906013549051908152f35b50503461017f57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261017f57602090610908611204611351565b60243590336114f3565b929150346112e757837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126112e757601154600181811c91869082811680156112dd575b6020958686108214610ac75750848852908115610a87575060011461128457610a2a8686610a20828b03836113fb565b929550601183527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c685b8284106112ca5750505082610a2a94610a20928201019438610a0f565b80548685018801529286019281016112ad565b93607f1693611254565b8380fd5b60208082528251818301819052939260005b85811061133d575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b8181018301518482016040015282016112fd565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361137457565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361137457565b67ffffffffffffffff81116113b057604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6060810190811067ffffffffffffffff8211176113b057604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176113b057604052565b1561144357565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5768656e206163636573732069732064656e6965642c20646f6573207065726d60448201527f697373696f6e20636561736520746f2065786973743f000000000000000000006064820152fd5b90816020910312611374575173ffffffffffffffffffffffffffffffffffffffff811681036113745790565b73ffffffffffffffffffffffffffffffffffffffff8091169182156115e557169182156115615760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260048252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b9190820180921161167557565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116755760010190565b9160009273ffffffffffffffffffffffffffffffffffffffff809116928315611f6f578116938415611f11578215611e8d57809180825416808614159081611e82575b506117e5575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92826117aa926020946117b3575b868152600385526117686040822054846117626121ec565b91611fcd565b87825260038652604082205587815260406117988183205461179261178b6121ec565b8688611fcd565b90612153565b918981526003875220556117626121ec565b604051908152a3565b308152600385526117c8826040832054612153565b3082526003865260408220556040518281528787873093a361174a565b848252602060068152604060ff81852054161580611e71575b156112e757600b5492831580611de9575b15611d7a575b6018549381851690818a1480611d6c575b80611d57575b611be2575b5089148080611bd8575b611b4d575b30865260038452828620549060ff8660a81c16159081611b45575b5080611b38575b80611b2d575b80611b20575b61187c575b5050505061171a565b6010959495544311611b17575b6006600f541015611aba576016549081811115611ab357505b80881115611aab57925b75010000000000000000000000000000000000000000007fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff809716176018558251936118f7856113df565b6002855281850191843684373061190d8761201c565b52836017541685517fad5c46480000000000000000000000000000000000000000000000000000000081528281600481855afa908115611aa157918491611960938b91611a84575b5087610cdf8b612058565b836017541693843b15611a80578794928697949297519788957f791ac94700000000000000000000000000000000000000000000000000000000875260a4870192600488015287602488015260a060448801525180925260c48601939287905b838210611a615750505050508383809230606483015242608483015203925af1908115610d965750927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9592602095926117aa95611a52575b50906018541660185547611a44575b611a33600f546116a4565b600f55436010559282958295611873565b611a4d47612068565b611a28565b611a5b9061139c565b38611a19565b8451811686528b98508a975094820194938201936001909101906119c0565b8780fd5b611a9b9150853d87116105325761052481836113fb565b38611955565b87513d8b823e3d90fd5b5086926118ac565b90506118a2565b6064848451907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152601760248201527f4f6e6c7920362073656c6c732070657220626c6f636b210000000000000000006044820152fd5b84600f55611889565b50600b54600e541061186e565b506015548111611868565b5060ff8560b01c16611862565b90503861185b565b9550600b54600d5410600014611bcb576064611b6c601a545b896120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000848051611b99816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c2077688882015201520495611840565b6064611b6c600954611b66565b503089141561183b565b96506013548811611cfa5789865260038452611c018884882054611668565b60145410611c9d57600c54871115611c8d57611c846064611c256019545b8b6120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000868051611c52816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c2077688a820152015204976116a4565b600b5538611831565b611c846064611c25600854611c1f565b6064848451907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152601d60248201527f4578636565647320746865206d6178537461746543617061636974792e0000006044820152fd5b6064848451907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152601c60248201527f4578636565647320746865205f6d61785175616e74756d466c75782e000000006044820152fd5b508a87526005855260ff84882054161561182c565b5082601754168b1415611826565b94506064611d8a600a54886120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000838051611db7816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c2077688782015201520494611815565b9550600c548411600014611e64576064611e05601954896120ac565b7f61742072656d61696e733f000000000000000000000000000000000000000000848051611e32816113df565b602b81527f5768656e2074686520766f6964206469766964657320697473656c662c207768888201520152049561180f565b6064611e05600854611b66565b5087845260ff8185205416156117fe565b905086141538611714565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f5472616e736665723a207175616e74756d206d75737420626520706f7369746960448201527f76650000000000000000000000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a207472616e7366657220696e746f2074686520766f69640000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a207472616e736665722066726f6d2074686520766f69640000006044820152fd5b91828211611fe2575081039081116116755790565b612018906040519182917f08c379a0000000000000000000000000000000000000000000000000000000008352600483016112eb565b0390fd5b8051156120295760200190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8051600110156120295760400190565b60008080809373ffffffffffffffffffffffffffffffffffffffff600754168282156120a3575bf11561209757565b6040513d6000823e3d90fd5b506108fc61208f565b90811561214c5780820291820480820361167557036120c85790565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5768656e2070726f647563747320657863656564207265616c6974792c20646f60448201527f2074686579206265636f6d6520647265616d733f0000000000000000000000006064820152fd5b5050600090565b9061215e9082611668565b9081106121685790565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5768656e206e756d626572732067726f7720746f6f206c617267652c20646f2060448201527f74686579206265636f6d65206e6f7468696e673f0000000000000000000000006064820152fd5b604051906121f9826113df565b602d82527f6f736974697665207370616365000000000000000000000000000000000000006040837f5768656e206e656761746976652074686f756768747320636f727275707420706020820152015256fea26469706673582212202ebe418db543790c8d857e6e874b2f721a04a0a5d645e178e48d120137136e1664736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e454e54414e476565656c4d454e5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034545450000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : designation_ (string): ENTANGeeelMENT
Arg [1] : identifier_ (string): EEE
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 454e54414e476565656c4d454e54000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4545450000000000000000000000000000000000000000000000000000000000
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.