-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal2.sol
9 lines (9 loc) · 945 Bytes
/
final2.sol
1
2
3
4
5
6
7
8
9
pragma solidity ^0.5.10;
contract Deployer {
constructor() public {
bytes memory bytecode = hex'608060405234801561001057600080fd5b5061014d806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f28adc4d14610030575b600080fd5b61003861004e565b6040516100459190610102565b60405180910390f35b60008068a16469706673c2588460b81b905073420000000000000000000000000000000000000163995ab18c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156100a457600080fd5b505af41580156100b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100dc91906100ea565b506211003360e81b91505090565b6000602082840312156100fb578081fd5b5051919050565b6001600160e81b03199190911681526020019056fea2646970667358221220ea96423089ab3062b71b9da46ef888e265bb88984ee3895eb9c6b0385d1cf4bb64736f6c63430008000033';
assembly {
return (add(bytecode, 0x20), mload(bytecode))
}
}
}