Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Liège 360
Published © CERN-OHL

Phantom Investigators System

Spirit detection system that detects temperature, EMF and magnetic field.

BeginnerShowcase (no instructions)2 hours231
Phantom Investigators System

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
arduino nano IO shield v1
×1
KY-035
×1
DS18B20 module
×1
Copper wire for antenna
×1
I2C oled 128x128
×1
Jumper wires (generic)
Jumper wires (generic)
×1
RGB module
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Data_screen

Spirit_detection_system

Arduino Nano + shiels v1

DS18B20 + RGB LED module

Spirit_detection_system_front

Oled I2C 128x128

KY-035

Start_screen

Code

Spirit_detection_system.ino

C/C++
#include "Wire.h"
#include "OneWire.h"
#include "DallasTemperature.h"
#include "U8g2lib.h"
#include "ArduinoGraphics.h"
#include "start.h"
U8G2_SH1107_SEEED_128X128_1_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
#define ANALOG_PIN A2
#define PIN_ANTENNA A0
#define PIN_R 4
#define PIN_G 5
#define PIN_B 6
#define CHECK_DELAY 500
#define lmillis() ((long)millis())
#define ONE_WIRE_BUS 2
OneWire oneWire(ONE_WIRE_BUS);
DallasTemperature sensors(&oneWire);
float lastTemperature = 0.0;
int lastEmfValue = 0;
int lastEmfValue2 = 0;
int emfValue2 = 0;

void start_setup(){
u8g2.firstPage();
do {
u8g2.drawXBMP(0, 0, 128, 128, start_1);} 
while ( u8g2.nextPage() );
}

void setup(){
Serial.begin(9600);
pinMode(PIN_ANTENNA, INPUT);
pinMode(PIN_R, OUTPUT);
pinMode(PIN_B, OUTPUT);
pinMode(PIN_G, OUTPUT);
digitalWrite(PIN_R, LOW);
digitalWrite(PIN_B, LOW);
digitalWrite(PIN_G, LOW);
u8g2.begin();
u8g2.clearBuffer();
u8g2.setContrast(250);
u8g2.enableUTF8Print();
u8g2.clear();
start_setup();
sensors.begin();
delay(5000);
}

void showReadings(int emfValue) {
emfValue2 = constrain(analogRead(ANALOG_PIN), 0, 1023);
sensors.requestTemperatures();
float currentTemperature = sensors.getTempCByIndex(0); 
if (abs(currentTemperature - lastTemperature) >= 0.5) {
digitalWrite(PIN_G, HIGH);
delay(200); 
digitalWrite(PIN_G, LOW);
}
lastTemperature = currentTemperature;
if (abs(emfValue - lastEmfValue) >= 10) {
digitalWrite(PIN_R, HIGH);
delay(200);
digitalWrite(PIN_R, LOW);
}
lastEmfValue = emfValue; 
if (abs(emfValue2 - lastEmfValue2) >= 10) {
digitalWrite(PIN_B, HIGH);
delay(200);
digitalWrite(PIN_B, LOW);
}
lastEmfValue2 = emfValue2; 
u8g2.clear();
do {
u8g2.drawFrame(3,3,125,28);
u8g2.drawFrame(3,3,125,125);
u8g2.drawFrame(3,72,125,24);
u8g2.setCursor(28 , 24);
u8g2.setFont(u8g2_font_ncenB14_tr);
u8g2.print("-- EMF --");
u8g2.setCursor(55, 49);
u8g2.setFont(u8g2_font_ncenB10_tr);
u8g2.print(emfValue);
u8g2.setCursor(55, 65);
u8g2.setFont(u8g2_font_ncenB10_tr);
u8g2.print(emfValue2);
u8g2.setCursor(15 , 88);
u8g2.setFont(u8g2_font_ncenB08_tr);
u8g2.print("- TEMPERATURE -");
u8g2.setCursor(43 , 116);
u8g2.setFont(u8g2_font_ncenB10_tr);
u8g2.print(currentTemperature);
u8g2.setCursor(83 , 116);
u8g2.setFont(u8g2_font_ncenB10_tr);
u8g2.print("C");
}
while (u8g2.nextPage());
}

void loop() {
static int avgValue = 0, emfValue = 0;
static long nextCheck = 0, emfSum = 0, iterations = 0; 
emfValue = constrain(analogRead(PIN_ANTENNA), 0, 1023);
emfSum += emfValue;
iterations++;
if (lmillis() - nextCheck >= 0) {
avgValue = emfSum / iterations;
emfSum = 0;
iterations = 0;
showReadings(avgValue);
nextCheck = lmillis() + CHECK_DELAY;
}}

start.h

C/C++
const unsigned char start_1 [] PROGMEM = {
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x80, 0x08, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x02, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x10, 0x00, 0x00, 0x2d, 0x01, 0x88, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x00, 0x40, 0x20, 0x09, 0x20, 0x01, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x01, 0x80, 0x92, 0x24, 0x00, 0x0d, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x80, 0x08, 0x92, 0x40, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x62, 0x48, 0x02, 0x02, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x80, 0x04, 0x21, 0x09, 0x01, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x04, 0x85, 0x04, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x18, 0x02, 0x02, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x60, 0x20, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x21, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10, 0x40, 0x00, 0x04, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x60, 0x90, 0x50, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x80, 0x10, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0xc1, 0x00, 0xa0, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x04, 0x41, 0x8c, 0x08, 
	0x48, 0x92, 0x04, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x80, 0x10, 0x86, 0x40, 0x00, 
	0xfe, 0xff, 0x3f, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x92, 0x90, 0x12, 0x01, 
	0xbc, 0x6d, 0x7b, 0x00, 0x00, 0x00, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x24, 0x49, 0x48, 0x00, 
	0xec, 0xff, 0xef, 0x00, 0x00, 0x00, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x40, 0x08, 0x89, 0x00, 
	0x7c, 0xdb, 0xbe, 0x00, 0x00, 0x00, 0xe0, 0xfb, 0x03, 0x00, 0x10, 0x00, 0x10, 0x23, 0x20, 0x03, 
	0xdc, 0xff, 0xfb, 0x00, 0x00, 0x00, 0x60, 0xe7, 0x0f, 0x00, 0x10, 0x00, 0x80, 0x90, 0x20, 0x10, 
	0xfc, 0xac, 0xed, 0x00, 0x00, 0x00, 0xe0, 0xbd, 0x3d, 0x00, 0x10, 0x00, 0x80, 0x44, 0x80, 0x00, 
	0xe4, 0xef, 0xdf, 0x00, 0x00, 0x04, 0xc0, 0xbf, 0xf7, 0x01, 0x10, 0x00, 0x01, 0x24, 0x40, 0x02, 
	0xbc, 0x7b, 0xf6, 0x00, 0x00, 0x04, 0x00, 0xf8, 0xde, 0x07, 0x10, 0x00, 0x03, 0x09, 0x40, 0x12, 
	0x08, 0x5e, 0xbe, 0x00, 0x00, 0x06, 0x00, 0xc0, 0x7b, 0x0f, 0x30, 0x80, 0x0f, 0x48, 0x00, 0x01, 
	0x00, 0x3c, 0xec, 0x00, 0x00, 0x06, 0x0c, 0x80, 0xe7, 0x0d, 0x30, 0x80, 0x1d, 0x22, 0x00, 0x09, 
	0x00, 0x36, 0x7c, 0x00, 0x00, 0x07, 0x0c, 0x82, 0x0d, 0x07, 0x30, 0x00, 0x1f, 0x90, 0x40, 0x08, 
	0x00, 0x7c, 0xd8, 0x00, 0x00, 0x07, 0x0c, 0xce, 0x0f, 0x00, 0x30, 0x80, 0x1b, 0x44, 0x00, 0x03, 
	0x00, 0x6c, 0xfc, 0x00, 0x80, 0x05, 0x1c, 0x8f, 0x06, 0x00, 0x30, 0x80, 0x0f, 0x10, 0x00, 0x10, 
	0x00, 0x3e, 0x34, 0x00, 0x8e, 0x07, 0x1c, 0x86, 0x07, 0x00, 0x70, 0x80, 0x1d, 0x20, 0x80, 0x04, 
	0x00, 0x5c, 0xfc, 0x00, 0x8f, 0x0e, 0x0c, 0xc6, 0x0d, 0x0c, 0x70, 0x80, 0x17, 0xa0, 0x00, 0x09, 
	0x00, 0x5c, 0x6c, 0x80, 0x85, 0x0b, 0x1c, 0x8e, 0x07, 0x1e, 0x30, 0x80, 0x1b, 0x10, 0x00, 0x09, 
	0x00, 0x3c, 0x7c, 0x80, 0x87, 0x07, 0x1c, 0x8b, 0x07, 0x36, 0xf0, 0xc0, 0x1e, 0x40, 0x01, 0x02, 
	0x00, 0x6c, 0x5c, 0x04, 0x8f, 0x0d, 0x1c, 0xce, 0x06, 0x3f, 0x70, 0xc0, 0x17, 0x00, 0x81, 0x18, 
	0x00, 0x3c, 0x6c, 0x84, 0x85, 0x0f, 0x3c, 0xc6, 0x87, 0x7b, 0xf0, 0x80, 0x1d, 0x20, 0x04, 0x01, 
	0x00, 0x3c, 0x7c, 0x84, 0xc7, 0x06, 0x2c, 0x86, 0x85, 0x6f, 0xb0, 0xc0, 0x1f, 0xc0, 0x40, 0x04, 
	0x00, 0x6c, 0x5c, 0x0c, 0x87, 0x0f, 0x3c, 0x8e, 0x87, 0xfd, 0xf0, 0xc0, 0x16, 0x00, 0x92, 0x14, 
	0x00, 0x3c, 0x7c, 0x84, 0xc5, 0x0d, 0x1c, 0xcb, 0xc6, 0xd7, 0xf0, 0xc0, 0x1b, 0x80, 0x24, 0x12, 
	0x00, 0x3c, 0x6c, 0x84, 0xc7, 0x0d, 0x3c, 0xc6, 0x47, 0x7f, 0xb0, 0xc1, 0x1d, 0x40, 0x84, 0x00, 
	0x00, 0x6c, 0x3c, 0x06, 0x87, 0x1f, 0x6c, 0x86, 0xc5, 0xe9, 0xf1, 0x61, 0x37, 0x00, 0x91, 0x0c, 
	0x00, 0x3c, 0x7c, 0x84, 0xc5, 0x16, 0x7e, 0xce, 0xc7, 0x87, 0x71, 0x41, 0x1e, 0x80, 0x24, 0x01, 
	0x00, 0x3c, 0x56, 0x8c, 0xc7, 0x1c, 0x5c, 0x46, 0xc3, 0x82, 0x71, 0xe3, 0x1b, 0x00, 0x22, 0x04, 
	0x00, 0x74, 0x3c, 0x86, 0xc6, 0x0d, 0x5c, 0xc6, 0xe7, 0x01, 0x71, 0x62, 0x1e, 0x80, 0x88, 0x14, 
	0x00, 0x5c, 0x6c, 0x84, 0xc3, 0x1c, 0x5c, 0x87, 0x65, 0x01, 0x71, 0x62, 0x36, 0x00, 0x49, 0x02, 
	0x00, 0x3c, 0x3e, 0x86, 0xc7, 0x16, 0x76, 0xc6, 0xc7, 0x01, 0xd9, 0x62, 0x1f, 0x00, 0x11, 0x09, 
	0x00, 0x34, 0x36, 0x86, 0xc6, 0x1c, 0x9c, 0xc6, 0xe6, 0x00, 0x72, 0x62, 0x1e, 0x00, 0x92, 0x00, 
	0x00, 0x7c, 0x3c, 0x84, 0xc3, 0x1c, 0x9c, 0xc7, 0xe3, 0x00, 0x72, 0x66, 0x36, 0x80, 0x88, 0x04, 
	0x00, 0x6c, 0x2e, 0x86, 0xc3, 0x1c, 0xd6, 0x46, 0x63, 0xc0, 0x72, 0x34, 0x1f, 0x00, 0x22, 0x04, 
	0x00, 0x3c, 0x3e, 0x86, 0xc3, 0x1c, 0x9c, 0xc7, 0xe7, 0xc0, 0x72, 0x64, 0x36, 0x00, 0x22, 0x09, 
	0x00, 0x34, 0x32, 0x86, 0xe3, 0x3c, 0x9c, 0xc5, 0xe6, 0x80, 0xd9, 0x3c, 0x1f, 0x00, 0x8c, 0x00, 
	0x00, 0x7c, 0x3e, 0x86, 0x62, 0x2c, 0x96, 0xc7, 0x63, 0xc0, 0x71, 0x2c, 0x39, 0x00, 0x41, 0x06, 
	0x00, 0x58, 0x2e, 0x86, 0xc3, 0x1c, 0x9e, 0x47, 0xe3, 0xf0, 0x72, 0x3c, 0x2e, 0x00, 0x18, 0x01, 
	0x00, 0x3c, 0x3e, 0x86, 0xe3, 0x34, 0x1c, 0xc3, 0xe3, 0xf0, 0xda, 0x18, 0x3f, 0x00, 0x82, 0x00, 
	0x00, 0x6c, 0x36, 0x86, 0x63, 0x3c, 0x9c, 0xc7, 0xb2, 0xe0, 0x73, 0x38, 0x1b, 0x00, 0x29, 0x02, 
	0x00, 0x38, 0x2f, 0x86, 0xc1, 0x38, 0x16, 0xc7, 0xe3, 0xe0, 0x72, 0x38, 0x3e, 0x00, 0x24, 0x01, 
	0x00, 0xfc, 0x19, 0xce, 0x63, 0x2c, 0x1e, 0xc3, 0xe3, 0x60, 0xdb, 0x18, 0x36, 0x00, 0x42, 0x00, 
	0x00, 0x74, 0x1f, 0x7e, 0x63, 0x3c, 0x1c, 0xc7, 0xe2, 0x41, 0x73, 0x10, 0x1f, 0x00, 0x12, 0x03, 
	0x00, 0xd8, 0x17, 0xf6, 0x61, 0x38, 0x36, 0xc5, 0x63, 0x01, 0x73, 0x18, 0x2e, 0x00, 0x44, 0x00, 
	0x00, 0xbc, 0x0c, 0xde, 0x63, 0x38, 0x1e, 0xc7, 0xe1, 0x83, 0xd9, 0x30, 0x3e, 0x00, 0x49, 0x00, 
	0x00, 0x38, 0x00, 0x7b, 0x63, 0x6c, 0x1c, 0xc6, 0xe3, 0xc2, 0x79, 0x10, 0x33, 0x00, 0x11, 0x01, 
	0x00, 0x78, 0x00, 0xee, 0x61, 0x78, 0x16, 0xc6, 0xe2, 0x6f, 0x73, 0x10, 0x3e, 0x00, 0x44, 0x00, 
	0x00, 0x6c, 0x00, 0xbe, 0x61, 0x58, 0x1e, 0xc6, 0xa3, 0xfd, 0xd9, 0x10, 0x2e, 0x80, 0x24, 0x00, 
	0x00, 0x38, 0x00, 0xfb, 0x31, 0x78, 0x1c, 0xc6, 0xe1, 0xb7, 0x79, 0x00, 0x3b, 0x00, 0x91, 0x00, 
	0x00, 0x38, 0x00, 0x86, 0x61, 0x6f, 0x36, 0xc6, 0xc1, 0xfe, 0x68, 0x00, 0x3e, 0x00, 0x09, 0x00, 
	0x00, 0x78, 0x00, 0x87, 0xf1, 0x3f, 0x1e, 0xc6, 0xc3, 0xdb, 0xf9, 0x00, 0x36, 0x40, 0x48, 0x00, 
	0x00, 0x58, 0x00, 0xc7, 0xb1, 0x6d, 0x1e, 0xc4, 0xc2, 0x77, 0x31, 0x00, 0x3e, 0x00, 0x03, 0x00, 
	0x00, 0x78, 0x00, 0x86, 0xe1, 0x7d, 0x1a, 0xc4, 0xc1, 0xfc, 0x18, 0x00, 0x2e, 0x20, 0x18, 0x00, 
	0x00, 0x38, 0x00, 0x87, 0x71, 0xf7, 0x0e, 0xc6, 0xc1, 0xaf, 0x08, 0x00, 0x3e, 0xc0, 0x00, 0x00, 
	0x00, 0x38, 0x00, 0xc5, 0xf1, 0xdf, 0x04, 0xc4, 0x81, 0xfb, 0x00, 0x00, 0x36, 0x10, 0x06, 0x00, 
	0x00, 0x78, 0x00, 0x87, 0xd1, 0x7a, 0x02, 0xc4, 0x81, 0xdf, 0x00, 0x00, 0x3e, 0x84, 0x00, 0x00, 
	0x00, 0x58, 0x00, 0x87, 0xf1, 0xef, 0x00, 0xc0, 0x81, 0x7d, 0x00, 0x00, 0x26, 0x31, 0x02, 0x00, 
	0x00, 0x78, 0x00, 0xc5, 0xb0, 0xbd, 0x00, 0x64, 0x81, 0x67, 0x00, 0x00, 0x40, 0x84, 0x00, 0x00, 
	0x00, 0x38, 0x00, 0x87, 0x71, 0xf3, 0x00, 0xc0, 0x01, 0x3f, 0x80, 0xa4, 0x19, 0x49, 0x00, 0x00, 
	0x00, 0x38, 0x00, 0xc7, 0x11, 0xd8, 0x00, 0x80, 0x01, 0x3d, 0x00, 0x20, 0x42, 0x22, 0x00, 0x00, 
	0x00, 0x78, 0x00, 0x83, 0x30, 0xf8, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 
	0x00, 0x68, 0x00, 0x07, 0x18, 0xb0, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 
	0x00, 0x38, 0x00, 0x07, 0x30, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0xf8, 0x01, 
	0x00, 0x78, 0x00, 0x03, 0x10, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xfe, 0x88, 0x01, 
	0x00, 0x58, 0x00, 0x04, 0x18, 0xb0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x3e, 0xc6, 0x0c, 0x00, 
	0x00, 0x38, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, 0x82, 0x3f, 0x63, 0xc4, 0x38, 0x00, 
	0x00, 0x68, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x80, 0xc5, 0x87, 0x27, 0x63, 0xcc, 0xf8, 0x00, 
	0x00, 0x78, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0xc2, 0x87, 0x87, 0x24, 0xc3, 0x7c, 0xf0, 0x01, 
	0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0xf1, 0x63, 0x06, 0x85, 0x24, 0xc3, 0x7c, 0x80, 0x01, 
	0x00, 0x00, 0x00, 0x00, 0x18, 0xa0, 0xf8, 0xe3, 0x61, 0x04, 0x8d, 0x0c, 0xc3, 0x6c, 0x08, 0x03, 
	0x00, 0x00, 0x00, 0x00, 0x18, 0xf8, 0xfc, 0x82, 0x30, 0x80, 0x0d, 0x0c, 0x43, 0xcc, 0x98, 0x01, 
	0x00, 0x00, 0x00, 0x00, 0xfe, 0xdc, 0x48, 0x82, 0x30, 0x80, 0x09, 0x04, 0x63, 0xcc, 0xf9, 0x01, 
	0x00, 0x00, 0x80, 0x73, 0x6f, 0x8c, 0x48, 0xc2, 0x30, 0x9e, 0x1f, 0x0c, 0x66, 0x9c, 0x79, 0x00, 
	0x00, 0x80, 0xbc, 0x73, 0xc6, 0x0c, 0x48, 0x82, 0x20, 0x8f, 0x19, 0x0c, 0x3e, 0x0c, 0x00, 0x00, 
	0x80, 0xcf, 0x39, 0x23, 0x06, 0x7c, 0x60, 0x80, 0x61, 0x8c, 0x38, 0x3f, 0x1c, 0x00, 0x00, 0x00, 
	0xc0, 0x87, 0x13, 0x23, 0x34, 0xf8, 0xc0, 0x80, 0x61, 0xcc, 0x39, 0x17, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x83, 0x13, 0x32, 0x3c, 0xe0, 0x41, 0x80, 0xe0, 0xc7, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x83, 0x33, 0x26, 0x36, 0x80, 0xc1, 0xe0, 0x87, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x83, 0x14, 0x16, 0x84, 0x8c, 0xf1, 0xe3, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x82, 0x1d, 0x14, 0x84, 0xcc, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x03, 0x39, 0x1c, 0xfe, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x02, 0x39, 0x1c, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x82, 0x19, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x8f, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x80, 0x8f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};

Credits

Liège 360
21 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.