Here's create2 opcode used by UniswapV2Factory contract
create2(0, add(bytecode, 32), mload(bytecode), salt)
My question is how mload returns the length of creatonCode. According to my understanding mload is mem[x...x+32] opcode and it returns bytes data
