{
	"meta": {
		"name": "Andros Guiradó — career knowledge graph",
		"schemaVersion": 2,
		"description": "Neo4j-lite knowledge graph: nodes (Person, Project, Client, Skill, Event, Award, Organization) and explicit typed edges carrying only optional date and relevance (0–1). Single structured output of the site — seo.json, timeline.json and timeline.md are derived from this file.",
		"url": "https://androsguirado.dev",
		"sourceOfTruth": [
			"src/data/SKILLS.json",
			"src/data/EVENTS.json"
		],
		"derivedOutputs": [
			"static/seo.json (scripts/generate-seo.js)",
			"static/timeline.json + static/timeline.md (scripts/generate-timeline.js)"
		],
		"exclusions": "Cancelled projects and context events (world/tech/cultural/personal timelines) are not part of the graph.",
		"idScheme": "Stable snake_case ids prefixed by node type: person_, project_, client_, skill_, event_, award_, organization_.",
		"normalization": "Names deduplicated with accent folding and an alias map (originals kept in \"aliases\"). Organizations that are only ever clients are Client nodes; any org with a studio/school/institution/agency part is an Organization with `category` by precedence (other parts in alsoActsAs). Known misspellings corrected (VolksWagen → Volkswagen). Multi-organization fields split. Relevance clamped to [0,1].",
		"howToQuery": "Nodes are keyed by stable id. Edges are directed {type, from, to, date?, relevance?}. By year: filter WORKED_ON edges by date. By client: FOR_CLIENT edges inbound to the client node. By skill: USED_SKILL edges inbound to the skill node. By relevance: filter Project nodes by the relevance property. Query engine with these as named queries: https://androsguirado.dev/kg-query.js (schema in meta.queryEngine), REST at /api/kg/query, MCP at /mcp.",
		"queryEngine": {
			"url": "https://androsguirado.dev/kg-query.js",
			"usage": "Browser: load /kg-query.js, then KG.ready().then(() => KG.query('clients_by_skill', { skill: 'PHP' })). Node: const KG = require('./kg-query.js'); KG.load(require('./knowledge-graph.json')); KG.query('projects_by_skill', { skill: 'flash', from: 2003, to: 2010 }). Params accept node ids or fuzzy names (accent/case-insensitive, exact match wins). Every result includes a per-step trace; KG.explain(name) returns the traversal plan.",
			"queries": {
				"projects_by_year": {
					"description": "Projects created in a given year or year range.",
					"params": {
						"year": "int — single year",
						"from": "int — range start (alt. to year)",
						"to": "int — range end"
					},
					"returns": "project[]",
					"example": {
						"year": 2008
					},
					"plan": [
						{
							"op": "scan_edges",
							"edge": "WORKED_ON",
							"reads": "index edgesByType[WORKED_ON] (person→project)"
						},
						{
							"op": "filter_edges",
							"prop": "date",
							"cond": "year(edge.date) in [from..to]"
						},
						{
							"op": "collect",
							"end": "to",
							"reads": "project ids from edge targets"
						},
						{
							"op": "resolve",
							"sort": "date"
						}
					]
				},
				"projects_by_client": {
					"description": "Projects commissioned by a client (also matches studios/agencies acting as client).",
					"params": {
						"client": "entity id or name, e.g. \"Volkswagen\" or \"client_volkswagen\""
					},
					"returns": "project[]",
					"example": {
						"client": "Volkswagen"
					},
					"plan": [
						{
							"op": "lookup",
							"param": "client",
							"types": [
								"Client",
								"Organization"
							],
							"reads": "entities (name + aliases)"
						},
						{
							"op": "traverse_in",
							"edge": "FOR_CLIENT",
							"reads": "index adjIn — projects pointing at the client"
						},
						{
							"op": "filter_nodes",
							"prop": "date",
							"cond": "year(node.date) in [from..to]",
							"optional": true
						},
						{
							"op": "resolve",
							"sort": "date"
						}
					]
				},
				"skills_by_project": {
					"description": "Skills used in a project.",
					"params": {
						"project": "entity id or name, e.g. \"Beetle dream\""
					},
					"returns": "skill[]",
					"example": {
						"project": "Beetle dream"
					},
					"plan": [
						{
							"op": "lookup",
							"param": "project",
							"types": [
								"Project"
							],
							"reads": "entities (name + aliases)"
						},
						{
							"op": "traverse_out",
							"edge": "USED_SKILL",
							"reads": "index adjOut — project→skill"
						},
						{
							"op": "resolve",
							"sort": "name"
						}
					]
				},
				"clients_by_skill": {
					"description": "Clients of the projects where a skill was used (2-hop: skill ← USED_SKILL ← project → FOR_CLIENT → client).",
					"params": {
						"skill": "entity id or name, e.g. \"PHP\"",
						"from": "int — optional year range over the projects",
						"to": "int"
					},
					"returns": "client[]",
					"example": {
						"skill": "PHP"
					},
					"plan": [
						{
							"op": "lookup",
							"param": "skill",
							"types": [
								"Skill"
							],
							"reads": "entities (name + aliases)"
						},
						{
							"op": "traverse_in",
							"edge": "USED_SKILL",
							"reads": "index adjIn — projects using the skill"
						},
						{
							"op": "filter_nodes",
							"prop": "date",
							"cond": "year(node.date) in [from..to]",
							"optional": true
						},
						{
							"op": "traverse_out",
							"edge": "FOR_CLIENT",
							"reads": "index adjOut — project→client"
						},
						{
							"op": "resolve",
							"sort": "name"
						}
					]
				},
				"projects_by_skill": {
					"description": "Projects where a skill was used, optionally restricted to a year range.",
					"params": {
						"skill": "entity id or name, e.g. \"flash\"",
						"from": "int — optional range start",
						"to": "int"
					},
					"returns": "project[]",
					"example": {
						"skill": "flash",
						"from": 2003,
						"to": 2010
					},
					"plan": [
						{
							"op": "lookup",
							"param": "skill",
							"types": [
								"Skill"
							],
							"reads": "entities (name + aliases)"
						},
						{
							"op": "traverse_in",
							"edge": "USED_SKILL",
							"reads": "index adjIn — projects using the skill"
						},
						{
							"op": "filter_nodes",
							"prop": "date",
							"cond": "year(node.date) in [from..to]",
							"optional": true
						},
						{
							"op": "resolve",
							"sort": "date"
						}
					]
				},
				"skills_evolution": {
					"description": "Year-by-year skill evolution: per year, the skills used in projects (with project counts), the skills first adopted that year, and the project total. Defaults to the full active range.",
					"params": {
						"from": "int — range start (default: first project year)",
						"to": "int — range end (default: last project year)"
					},
					"returns": "{year, projects, skillsStarted[], skillsUsed: {id, name, projects}[]}[]",
					"example": {
						"from": 2003,
						"to": 2010
					},
					"plan": [
						{
							"op": "skills_evolution",
							"reads": "edges WORKED_ON (projects per year) + adjacency USED_SKILL (skills per project) + edges KNOWS_SKILL.date (adoption year), aggregated by year"
						}
					]
				},
				"projects_by_relevance": {
					"description": "Projects at or above a relevance threshold (0–1), most relevant first. Optional year range.",
					"params": {
						"min": "float 0–1 — relevance threshold (default 0.7)",
						"from": "int — optional range start",
						"to": "int"
					},
					"returns": "project[]",
					"example": {
						"min": 0.9
					},
					"plan": [
						{
							"op": "scan_nodes",
							"nodeType": "Project",
							"reads": "all Project nodes"
						},
						{
							"op": "filter_min",
							"prop": "relevance",
							"param": "min",
							"default": 0.7,
							"cond": "node.relevance >= min"
						},
						{
							"op": "filter_nodes",
							"prop": "date",
							"cond": "year(node.date) in [from..to]",
							"optional": true
						},
						{
							"op": "resolve",
							"sort": "relevance"
						}
					]
				}
			}
		},
		"integrity": {
			"danglingEdges": 0,
			"orphanNodes": 0
		},
		"nodeTypes": {
			"Person": 1,
			"Skill": 72,
			"Project": 173,
			"Organization": 45,
			"Client": 79,
			"Event": 62,
			"Award": 18
		},
		"edgeTypes": {
			"KNOWS_SKILL": {
				"from": "Person",
				"to": "Skill",
				"tier": "extension",
				"description": "Skill known; proficiency/enjoyment/since live on the Skill node",
				"count": 72
			},
			"WORKED_ON": {
				"from": "Person",
				"to": "Project",
				"tier": "core",
				"description": "Andros worked on this project",
				"count": 173
			},
			"BUILT_AT": {
				"from": "Project",
				"to": "Organization",
				"tier": "core",
				"description": "Studio where the project was produced",
				"count": 173
			},
			"USED_SKILL": {
				"from": "Project",
				"to": "Skill",
				"tier": "core",
				"description": "Skill used in the project",
				"count": 1217
			},
			"VIA_AGENCY": {
				"from": "Project",
				"to": "Organization",
				"tier": "extension",
				"description": "Agency that brokered the project",
				"count": 109
			},
			"FOR_CLIENT": {
				"from": "Project",
				"to": "Client|Organization",
				"tier": "core",
				"description": "Who commissioned the project (an Organization when a studio/agency commissioned it)",
				"count": 174
			},
			"PARTICIPATED_IN": {
				"from": "Person",
				"to": "Event",
				"tier": "extension",
				"description": "Career step (Event.category = career: education, jobs, juries, teaching)",
				"count": 19
			},
			"AT": {
				"from": "Event",
				"to": "Organization",
				"tier": "extension",
				"description": "Organization where an event (career step / studio milestone) took place",
				"count": 55
			},
			"SPOKE_AT": {
				"from": "Person",
				"to": "Event",
				"tier": "core",
				"description": "Conference talk given (Event.category = talk)",
				"count": 7
			},
			"RECEIVED": {
				"from": "Person",
				"to": "Award",
				"tier": "extension",
				"description": "Award received",
				"count": 18
			},
			"AWARDED_FOR": {
				"from": "Award",
				"to": "Project",
				"tier": "core",
				"description": "Project the award was given for",
				"count": 18
			}
		}
	},
	"nodes": [
		{
			"id": "person_andros_guirado",
			"type": "Person",
			"name": "Andros Guiradó",
			"birthDate": "1982-07-20",
			"birthPlace": "Sabadell, Barcelona, Spain",
			"url": "https://androsguirado.dev",
			"jobTitle": "Creative Developer",
			"languages": [
				"Spanish",
				"Catalan",
				"French",
				"English"
			],
			"sameAs": [
				"https://www.linkedin.com/in/androsguirado",
				"https://feelslike.studio"
			]
		},
		{
			"id": "skill_adobe_photoshop",
			"type": "Skill",
			"name": "Adobe Photoshop",
			"categories": [
				"Design"
			],
			"level": 0.85,
			"like": 0.9,
			"since": "1999-06-01",
			"relevance": 0.04,
			"versions": [
				"5.0",
				"7.0",
				"CS",
				"CS4",
				"CS6",
				"CC 2017",
				"CC 2022"
			]
		},
		{
			"id": "skill_macromedia_freehand",
			"type": "Skill",
			"name": "Macromedia Freehand",
			"categories": [
				"Design"
			],
			"level": 0.75,
			"like": 0.7,
			"since": "2000-10-01",
			"relevance": 0.04,
			"deprecated": true,
			"noLongerUsed": true,
			"versions": [
				"9.0",
				"10.0",
				"11.0"
			]
		},
		{
			"id": "skill_macromedia_adobe_flash",
			"type": "Skill",
			"name": "Macromedia / Adobe Flash",
			"categories": [
				"Code editor",
				"Animation"
			],
			"level": 0.98,
			"like": 0.98,
			"since": "2001-07-01",
			"relevance": 0.8,
			"favourite": true,
			"deprecated": true,
			"noLongerUsed": true,
			"versions": [
				"5.0",
				"MX 2004",
				"8.0",
				"CS3"
			]
		},
		{
			"id": "skill_actionscript",
			"type": "Skill",
			"name": "ActionScript",
			"aliases": [
				"Actionscript"
			],
			"categories": [
				"Language"
			],
			"level": 1,
			"like": 1,
			"since": "2002-01-01",
			"relevance": 0.35,
			"deprecated": true,
			"noLongerUsed": true,
			"versions": [
				"1.0",
				"3.0"
			]
		},
		{
			"id": "skill_dreamweaver",
			"type": "Skill",
			"name": "Dreamweaver",
			"categories": [
				"Code editor"
			],
			"level": 0.2,
			"like": 0.1,
			"since": "2002-04-01",
			"relevance": 0.04,
			"noLongerUsed": true
		},
		{
			"id": "skill_html",
			"type": "Skill",
			"name": "HTML",
			"categories": [
				"Language"
			],
			"level": 0.9,
			"like": 0.75,
			"since": "2002-04-08",
			"relevance": 0.36,
			"versions": [
				"4.0",
				"5.0"
			]
		},
		{
			"id": "skill_adobe_after_effects",
			"type": "Skill",
			"name": "Adobe After Effects",
			"categories": [
				"Animation"
			],
			"level": 0.45,
			"like": 0.75,
			"since": "2002-09-19",
			"relevance": 0.2
		},
		{
			"id": "skill_adobe_illustrator",
			"type": "Skill",
			"name": "Adobe Illustrator",
			"categories": [
				"Design"
			],
			"level": 0.65,
			"like": 0.8,
			"since": "2003-03-01",
			"relevance": 0.04
		},
		{
			"id": "skill_php",
			"type": "Skill",
			"name": "PHP",
			"categories": [
				"Language"
			],
			"level": 0.75,
			"like": 0.65,
			"since": "2004-02-01",
			"relevance": 0.08
		},
		{
			"id": "skill_mysql",
			"type": "Skill",
			"name": "MySQL",
			"categories": [
				"Language"
			],
			"level": 0.3,
			"like": 0.3,
			"since": "2004-03-01",
			"relevance": 0.01
		},
		{
			"id": "skill_subethaedit",
			"type": "Skill",
			"name": "SubEthaEdit",
			"categories": [
				"Code editor"
			],
			"level": 0.7,
			"like": 0.4,
			"since": "2004-03-04",
			"relevance": 0.001
		},
		{
			"id": "skill_css",
			"type": "Skill",
			"name": "CSS",
			"categories": [
				"Language"
			],
			"level": 0.92,
			"like": 0.75,
			"since": "2004-05-01",
			"relevance": 0.2,
			"versions": [
				"2.0",
				"3.0"
			]
		},
		{
			"id": "skill_js",
			"type": "Skill",
			"name": "JS",
			"categories": [
				"Language"
			],
			"level": 0.9,
			"like": 0.9,
			"since": "2006-02-01",
			"relevance": 0.1,
			"favourite": true
		},
		{
			"id": "skill_textmate",
			"type": "Skill",
			"name": "TextMate",
			"categories": [
				"Code editor"
			],
			"level": 0.75,
			"like": 0.5,
			"since": "2006-06-01",
			"relevance": 0.001,
			"noLongerUsed": true
		},
		{
			"id": "skill_mootools",
			"type": "Skill",
			"name": "MooTools",
			"aliases": [
				"Mootools"
			],
			"categories": [
				"Framework"
			],
			"level": 0.3,
			"like": 0.2,
			"since": "2007-09-01",
			"relevance": 0.3,
			"deprecated": true,
			"noLongerUsed": true
		},
		{
			"id": "skill_wordpress",
			"type": "Skill",
			"name": "WordPress",
			"aliases": [
				"Wordpress"
			],
			"categories": [
				"CMS"
			],
			"level": 0.65,
			"like": 0.3,
			"since": "2008-07-01",
			"relevance": 0.6,
			"versions": [
				"2.7",
				"4.3",
				"5.0"
			]
		},
		{
			"id": "skill_gsap",
			"type": "Skill",
			"name": "GSAP",
			"categories": [
				"Library",
				"Animation"
			],
			"level": 0.95,
			"like": 0.95,
			"since": "2008-08-07",
			"relevance": 0.2,
			"favourite": true,
			"versions": [
				"ActionScript",
				"JavaScript"
			]
		},
		{
			"id": "skill_papervision3d",
			"type": "Skill",
			"name": "Papervision3D",
			"categories": [
				"Library",
				"3D"
			],
			"level": 0.7,
			"like": 0.85,
			"since": "2009-02-01",
			"relevance": 0.9,
			"deprecated": true,
			"noLongerUsed": true
		},
		{
			"id": "skill_adobe_pixel_bender",
			"type": "Skill",
			"name": "Adobe Pixel Bender",
			"categories": [
				"Language"
			],
			"level": 0.75,
			"like": 0.92,
			"since": "2009-09-01",
			"relevance": 0.75,
			"favourite": true,
			"deprecated": true,
			"noLongerUsed": true
		},
		{
			"id": "skill_phpstorm",
			"type": "Skill",
			"name": "PhpStorm",
			"categories": [
				"Code editor"
			],
			"level": 0.5,
			"like": 0.4,
			"since": "2009-10-01",
			"relevance": 0.001
		},
		{
			"id": "skill_jquery",
			"type": "Skill",
			"name": "jQuery",
			"categories": [
				"Framework"
			],
			"level": 0.9,
			"like": 0.75,
			"since": "2011-09-01",
			"relevance": 0.4,
			"noLongerUsed": true
		},
		{
			"id": "skill_sublime_text",
			"type": "Skill",
			"name": "Sublime Text",
			"aliases": [
				"SublimeText"
			],
			"categories": [
				"Code editor"
			],
			"level": 0.75,
			"like": 0.75,
			"since": "2011-10-01",
			"relevance": 0.001,
			"noLongerUsed": true
		},
		{
			"id": "skill_adobe_air",
			"type": "Skill",
			"name": "Adobe Air",
			"categories": [
				"Framework"
			],
			"level": 0.9,
			"like": 0.92,
			"since": "2012-04-01",
			"relevance": 1,
			"favourite": true,
			"deprecated": true,
			"noLongerUsed": true
		},
		{
			"id": "skill_arduino",
			"type": "Skill",
			"name": "Arduino",
			"categories": [
				"Other"
			],
			"level": 0.5,
			"like": 0.8,
			"since": "2013-01-01",
			"relevance": 1
		},
		{
			"id": "skill_drupal",
			"type": "Skill",
			"name": "Drupal",
			"categories": [
				"CMS"
			],
			"level": 0.8,
			"like": 0.65,
			"since": "2013-04-01",
			"relevance": 0.6,
			"versions": [
				"7.0",
				"8.0"
			]
		},
		{
			"id": "skill_less",
			"type": "Skill",
			"name": "Less",
			"categories": [
				"Preprocessor"
			],
			"level": 0.85,
			"like": 0.7,
			"since": "2014-07-01",
			"relevance": 0.3,
			"noLongerUsed": true
		},
		{
			"id": "skill_d3",
			"type": "Skill",
			"name": "D3",
			"categories": [
				"Library"
			],
			"level": 0.5,
			"like": 0.5,
			"since": "2014-10-01",
			"relevance": 0.9
		},
		{
			"id": "skill_sass",
			"type": "Skill",
			"name": "Sass",
			"categories": [
				"Preprocessor"
			],
			"level": 0.6,
			"like": 0.5,
			"since": "2014-11-01",
			"relevance": 0.1
		},
		{
			"id": "skill_grunt",
			"type": "Skill",
			"name": "Grunt",
			"categories": [
				"Bundler"
			],
			"level": 0.75,
			"like": 0.5,
			"since": "2015-01-01",
			"relevance": 0.1
		},
		{
			"id": "skill_git",
			"type": "Skill",
			"name": "Git",
			"categories": [
				"Other"
			],
			"level": 0.75,
			"like": 0.9,
			"since": "2015-01-01",
			"relevance": 0.1
		},
		{
			"id": "skill_three_js",
			"type": "Skill",
			"name": "Three.js",
			"aliases": [
				"ThreeJS"
			],
			"categories": [
				"Library",
				"3D"
			],
			"level": 0.85,
			"like": 0.95,
			"since": "2015-02-05",
			"relevance": 0.94,
			"favourite": true
		},
		{
			"id": "skill_webgl",
			"type": "Skill",
			"name": "WebGL",
			"categories": [
				"Language",
				"3D"
			],
			"level": 0.5,
			"like": 0.7,
			"since": "2015-08-01",
			"relevance": 0.75
		},
		{
			"id": "skill_cordova",
			"type": "Skill",
			"name": "Cordova",
			"categories": [
				"Bundler"
			],
			"level": 0.5,
			"like": 0.5,
			"since": "2015-12-01",
			"relevance": 0.5,
			"noLongerUsed": true
		},
		{
			"id": "skill_visual_studio_code",
			"type": "Skill",
			"name": "Visual Studio Code",
			"categories": [
				"Code editor"
			],
			"level": 0.85,
			"like": 0.95,
			"since": "2016-01-01",
			"relevance": 0.001
		},
		{
			"id": "skill_pug",
			"type": "Skill",
			"name": "Pug",
			"categories": [
				"Preprocessor"
			],
			"level": 0.98,
			"like": 0.95,
			"since": "2016-06-01",
			"relevance": 0.1,
			"favourite": true,
			"versions": [
				"Jade",
				"Pug"
			]
		},
		{
			"id": "skill_glsl",
			"type": "Skill",
			"name": "GLSL",
			"categories": [
				"Language",
				"3D"
			],
			"level": 0.85,
			"like": 0.9,
			"since": "2016-07-01",
			"relevance": 0.95,
			"favourite": true
		},
		{
			"id": "skill_stylus",
			"type": "Skill",
			"name": "Stylus",
			"categories": [
				"Preprocessor"
			],
			"level": 0.98,
			"like": 0.95,
			"since": "2016-07-01",
			"relevance": 0.2,
			"favourite": true
		},
		{
			"id": "skill_pixi_js",
			"type": "Skill",
			"name": "Pixi.js",
			"categories": [
				"Library",
				"Animation"
			],
			"level": 0.5,
			"like": 0.7,
			"since": "2016-08-01",
			"relevance": 0.9,
			"versions": [
				"4.0",
				"5.0"
			]
		},
		{
			"id": "skill_gulp",
			"type": "Skill",
			"name": "Gulp",
			"categories": [
				"Bundler"
			],
			"level": 0.3,
			"like": 0.3,
			"since": "2017-01-01",
			"relevance": 0.1,
			"noLongerUsed": true
		},
		{
			"id": "skill_adobe_lightroom",
			"type": "Skill",
			"name": "Adobe Lightroom",
			"categories": [
				"Design"
			],
			"level": 0.9,
			"like": 0.95,
			"since": "2017-03-01",
			"relevance": 0.2
		},
		{
			"id": "skill_node_js",
			"type": "Skill",
			"name": "Node.js",
			"categories": [
				"Other"
			],
			"level": 0.65,
			"like": 0.6,
			"since": "2017-07-01",
			"relevance": 0.5
		},
		{
			"id": "skill_adobe_xd",
			"type": "Skill",
			"name": "Adobe XD",
			"categories": [
				"Design"
			],
			"level": 0.3,
			"like": 0.3,
			"since": "2017-07-01",
			"relevance": 0.1,
			"noLongerUsed": true
		},
		{
			"id": "skill_lottie",
			"type": "Skill",
			"name": "Lottie",
			"categories": [
				"Library",
				"Animation"
			],
			"level": 0.95,
			"like": 0.9,
			"since": "2017-08-15",
			"relevance": 0.65,
			"favourite": true
		},
		{
			"id": "skill_mapbox",
			"type": "Skill",
			"name": "Mapbox",
			"categories": [
				"Library"
			],
			"level": 0.95,
			"like": 0.95,
			"since": "2017-12-01",
			"relevance": 0.8,
			"favourite": true
		},
		{
			"id": "skill_electron",
			"type": "Skill",
			"name": "Electron",
			"categories": [
				"Framework"
			],
			"level": 0.8,
			"like": 0.92,
			"since": "2018-01-20",
			"relevance": 1,
			"favourite": true
		},
		{
			"id": "skill_anime_js",
			"type": "Skill",
			"name": "Anime.js",
			"categories": [
				"Library",
				"Animation"
			],
			"level": 0.85,
			"like": 0.65,
			"since": "2018-06-06",
			"relevance": 0.5,
			"noLongerUsed": true
		},
		{
			"id": "skill_matter_js",
			"type": "Skill",
			"name": "Matter.js",
			"categories": [
				"Library"
			],
			"level": 0.85,
			"like": 0.85,
			"since": "2018-10-01",
			"relevance": 0.92,
			"favourite": true
		},
		{
			"id": "skill_vue",
			"type": "Skill",
			"name": "Vue",
			"categories": [
				"Framework"
			],
			"level": 0.85,
			"like": 0.75,
			"since": "2018-10-01",
			"relevance": 1,
			"versions": [
				"2.0",
				"3.0"
			]
		},
		{
			"id": "skill_spark_ar",
			"type": "Skill",
			"name": "Spark AR",
			"categories": [
				"3D"
			],
			"level": 0.5,
			"like": 0.5,
			"since": "2019-03-01",
			"relevance": 0.95,
			"noLongerUsed": true
		},
		{
			"id": "skill_graphql",
			"type": "Skill",
			"name": "GraphQL",
			"categories": [
				"Other"
			],
			"level": 0.55,
			"like": 0.75,
			"since": "2019-05-01",
			"relevance": 0.8
		},
		{
			"id": "skill_react",
			"type": "Skill",
			"name": "React",
			"categories": [
				"Framework"
			],
			"level": 0.75,
			"like": 0.45,
			"since": "2019-06-01",
			"relevance": 1,
			"noLongerUsed": true,
			"versions": [
				"16.0"
			]
		},
		{
			"id": "skill_invision",
			"type": "Skill",
			"name": "InVision",
			"categories": [
				"Design"
			],
			"level": 0.5,
			"like": 0.3,
			"since": "2019-06-29",
			"relevance": 0.08,
			"noLongerUsed": true
		},
		{
			"id": "skill_ffmpeg",
			"type": "Skill",
			"name": "FFmpeg",
			"categories": [
				"Library",
				"Animation"
			],
			"level": 0.7,
			"like": 0.8,
			"since": "2019-09-10",
			"relevance": 0.78
		},
		{
			"id": "skill_figma",
			"type": "Skill",
			"name": "Figma",
			"categories": [
				"Design"
			],
			"level": 0.85,
			"like": 0.95,
			"since": "2019-09-12",
			"relevance": 0.35,
			"favourite": true
		},
		{
			"id": "skill_webpack",
			"type": "Skill",
			"name": "Webpack",
			"categories": [
				"Bundler"
			],
			"level": 0.6,
			"like": 0.3,
			"since": "2019-11-01",
			"relevance": 0.2
		},
		{
			"id": "skill_c",
			"type": "Skill",
			"name": "C#",
			"categories": [
				"Language"
			],
			"level": 0.4,
			"like": 0.5,
			"since": "2019-12-01",
			"relevance": 0.5
		},
		{
			"id": "skill_unity",
			"type": "Skill",
			"name": "Unity",
			"categories": [
				"3D"
			],
			"level": 0.5,
			"like": 0.75,
			"since": "2019-12-01",
			"relevance": 0.92
		},
		{
			"id": "skill_svelte",
			"type": "Skill",
			"name": "Svelte",
			"categories": [
				"Framework"
			],
			"level": 0.9,
			"like": 0.975,
			"since": "2019-12-12",
			"relevance": 0.99,
			"favourite": true,
			"versions": [
				"2.0",
				"3.0"
			]
		},
		{
			"id": "skill_lens_studio",
			"type": "Skill",
			"name": "Lens Studio",
			"categories": [
				"3D"
			],
			"level": 0.65,
			"like": 0.8,
			"since": "2020-02-12",
			"relevance": 0.95
		},
		{
			"id": "skill_strapi",
			"type": "Skill",
			"name": "Strapi",
			"categories": [
				"CMS"
			],
			"level": 0.7,
			"like": 0.7,
			"since": "2020-05-01",
			"relevance": 0.9,
			"versions": [
				"3.0",
				"4.0"
			]
		},
		{
			"id": "skill_johnny_five",
			"type": "Skill",
			"name": "Johnny-Five",
			"categories": [
				"Library"
			],
			"level": 0.75,
			"like": 0.9,
			"since": "2020-06-03",
			"relevance": 0.97
		},
		{
			"id": "skill_esbuild",
			"type": "Skill",
			"name": "esbuild",
			"categories": [
				"Bundler"
			],
			"level": 0.6,
			"like": 0.9,
			"since": "2021-01-12",
			"relevance": 0.15
		},
		{
			"id": "skill_theatre_js",
			"type": "Skill",
			"name": "Theatre.js",
			"categories": [
				"Library",
				"Animation"
			],
			"level": 0.5,
			"like": 0.85,
			"since": "2021-10-04",
			"relevance": 1
		},
		{
			"id": "skill_vite",
			"type": "Skill",
			"name": "Vite",
			"categories": [
				"Bundler"
			],
			"level": 0.4,
			"like": 0.6,
			"since": "2021-11-01",
			"relevance": 0.1
		},
		{
			"id": "skill_hubspot",
			"type": "Skill",
			"name": "HubSpot",
			"categories": [
				"CMS"
			],
			"level": 0.5,
			"like": 0.15,
			"since": "2022-06-10",
			"relevance": 0.7
		},
		{
			"id": "skill_blender",
			"type": "Skill",
			"name": "Blender",
			"categories": [
				"3D"
			],
			"level": 0.35,
			"like": 0.75,
			"since": "2023-04-26",
			"relevance": 0.85,
			"favourite": true
		},
		{
			"id": "skill_tailwind",
			"type": "Skill",
			"name": "Tailwind",
			"categories": [
				"Framework"
			],
			"level": 0.4,
			"like": 0.25,
			"since": "2024-01-01",
			"relevance": 0.2
		},
		{
			"id": "skill_dato_cms",
			"type": "Skill",
			"name": "Dato CMS",
			"categories": [
				"CMS"
			],
			"level": 0.5,
			"like": 0.5,
			"since": "2024-04-01",
			"relevance": 0.1
		},
		{
			"id": "skill_cursor",
			"type": "Skill",
			"name": "Cursor",
			"categories": [
				"Code editor",
				"AI"
			],
			"level": 0.9,
			"like": 0.95,
			"since": "2024-09-22",
			"relevance": 0.001
		},
		{
			"id": "skill_google_antigravity",
			"type": "Skill",
			"name": "Google Antigravity",
			"categories": [
				"Code editor",
				"AI"
			],
			"level": 0.75,
			"like": 0.85,
			"since": "2025-11-03",
			"relevance": 0.1,
			"versions": [
				"1.0"
			]
		},
		{
			"id": "skill_claude",
			"type": "Skill",
			"name": "Claude",
			"categories": [
				"AI"
			],
			"level": 0.8,
			"like": 1,
			"since": "2026-02-01",
			"relevance": 1,
			"favourite": true,
			"versions": [
				"1.0"
			]
		},
		{
			"id": "skill_microsoft_azure",
			"type": "Skill",
			"name": "Microsoft Azure",
			"categories": [
				"Other"
			],
			"level": 0.2,
			"like": 0.2,
			"since": "2026-02-28",
			"relevance": 0.2
		},
		{
			"id": "project_in_line",
			"type": "Project",
			"name": "In line",
			"date": "2001-07-10",
			"relevance": 1,
			"roles": [
				"creative",
				"art direction",
				"animator",
				"photo editor",
				"audio designer"
			],
			"types": [
				"animation"
			]
		},
		{
			"id": "organization_freelance",
			"type": "Organization",
			"name": "Freelance",
			"category": "studio",
			"note": "Self-employed work — not a formal organization"
		},
		{
			"id": "project_prensas",
			"type": "Project",
			"name": "Prensas",
			"date": "2002-07-01",
			"relevance": 0.07,
			"roles": [
				"frontend developer",
				"art direction"
			],
			"types": [
				"website"
			]
		},
		{
			"id": "organization_haro_comunicacion",
			"type": "Organization",
			"name": "Haro Comunicación",
			"category": "studio",
			"city": "Sabadell",
			"alsoActsAs": [
				"agency"
			],
			"aliases": [
				"Haro comunicación"
			]
		},
		{
			"id": "project_chairs_weddings",
			"type": "Project",
			"name": "Chairs weddings",
			"date": "2002-10-01",
			"relevance": 0.07,
			"roles": [
				"frontend developer",
				"art direction"
			],
			"types": [
				"website"
			]
		},
		{
			"id": "project_beetle_dream",
			"type": "Project",
			"name": "Beetle dream",
			"date": "2003-04-30",
			"relevance": 1,
			"roles": [
				"creative"
			],
			"types": [
				"animation"
			],
			"url": "https://vimeo.com/manage/videos/12013595"
		},
		{
			"id": "organization_cocobongo",
			"type": "Organization",
			"name": "CocoBongo",
			"category": "studio",
			"url": "https://www.cocobongo.tv",
			"city": "Sabadell",
			"alsoActsAs": [
				"client"
			],
			"aliases": [
				"CocoBongo Artworks"
			]
		},
		{
			"id": "client_volkswagen",
			"type": "Client",
			"name": "Volkswagen",
			"aliases": [
				"VolksWagen"
			]
		},
		{
			"id": "organization_bcd",
			"type": "Organization",
			"name": "BCD",
			"category": "agency"
		},
		{
			"id": "project_cocobongo_s_site_03",
			"type": "Project",
			"name": "CocoBongo's site '03",
			"date": "2003-07-01",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"backend developer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio"
			],
			"url": "https://web.archive.org/web/20040211090350/http://www.ccbng.com:80/cocobongo.html"
		},
		{
			"id": "project_fec_reus_04",
			"type": "Project",
			"name": "FEC Reus '04",
			"date": "2004-01-06",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.fecfestival.com"
		},
		{
			"id": "client_pocc",
			"type": "Client",
			"name": "POCC"
		},
		{
			"id": "organization_valdrada",
			"type": "Organization",
			"name": "Valdrada",
			"category": "agency"
		},
		{
			"id": "project_mates_shoes",
			"type": "Project",
			"name": "Mates shoes",
			"date": "2004-04-05",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "www.mates.es"
		},
		{
			"id": "client_mates_shoes",
			"type": "Client",
			"name": "Mates shoes"
		},
		{
			"id": "project_furkinder_website",
			"type": "Project",
			"name": "Fürkinder website",
			"date": "2004-06-20",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://web.archive.org/web/20080223090240/http://www.furkinder.es"
		},
		{
			"id": "client_furkinder",
			"type": "Client",
			"name": "Fürkinder"
		},
		{
			"id": "project_52",
			"type": "Project",
			"name": "52",
			"date": "2004-09-15",
			"relevance": 0.3,
			"roles": [
				"animator"
			],
			"url": "https://www.youtube.com/watch?v=UsbUvkPGsvE"
		},
		{
			"id": "client_localia_tv",
			"type": "Client",
			"name": "Localia TV"
		},
		{
			"id": "organization_xnografics",
			"type": "Organization",
			"name": "Xnografics",
			"category": "agency"
		},
		{
			"id": "project_habit_attractions",
			"type": "Project",
			"name": "Habit Attractions",
			"date": "2004-10-15",
			"relevance": 0.4,
			"roles": [
				"frontend developer",
				"game designer"
			],
			"types": [
				"website"
			],
			"url": "http://www.cocobongo.tv/archive/habit_attractions"
		},
		{
			"id": "client_habit_fashion",
			"type": "Client",
			"name": "Habit Fashion"
		},
		{
			"id": "project_fec_reus_05",
			"type": "Project",
			"name": "FEC Reus '05",
			"date": "2005-02-06",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://web.archive.org/web/20050305235008/http://pocc-fec.com/reu/index.html"
		},
		{
			"id": "project_monlleure",
			"type": "Project",
			"name": "Monlleure",
			"date": "2005-03-17",
			"relevance": 0.3,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.ccbng.com/archive/monlleure"
		},
		{
			"id": "client_monlleure_associacio",
			"type": "Client",
			"name": "Monlleure Associació"
		},
		{
			"id": "project_kane_nyc",
			"type": "Project",
			"name": "Kane NYC",
			"date": "2005-04-09",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"ux / ui",
				"art direction",
				"backend developer",
				"animator",
				"photo editor"
			],
			"types": [
				"website",
				"banner"
			],
			"url": "http://cocobongo.tv/#work-135"
		},
		{
			"id": "client_kane_nyc",
			"type": "Client",
			"name": "Kane NYC"
		},
		{
			"id": "organization_vasava",
			"type": "Organization",
			"name": "Vasava",
			"category": "agency"
		},
		{
			"id": "organization_seisgrados",
			"type": "Organization",
			"name": "Seisgrados",
			"category": "agency",
			"alsoActsAs": [
				"client"
			]
		},
		{
			"id": "project_cocobongo_s_site_05",
			"type": "Project",
			"name": "CocoBongo's site '05",
			"date": "2005-06-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio",
				"CMS"
			],
			"url": "https://web.archive.org/web/20040211090350/http://www.ccbng.com:80/cocobongo.html"
		},
		{
			"id": "project_tekken_5_ironfist_tournament",
			"type": "Project",
			"name": "Tekken 5 - IronFist Tournament",
			"date": "2005-06-29",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "http://cocobongo.tv/#work-128"
		},
		{
			"id": "client_sony_playstation",
			"type": "Client",
			"name": "Sony Playstation"
		},
		{
			"id": "project_impladent",
			"type": "Project",
			"name": "Impladent",
			"date": "2005-09-20",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			]
		},
		{
			"id": "client_impladent",
			"type": "Client",
			"name": "Impladent"
		},
		{
			"id": "project_guerrero_partners",
			"type": "Project",
			"name": "Guerrero & Partners",
			"date": "2005-12-01",
			"relevance": 0.2,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://web.archive.org/web/20060208163834/http://guerrero-partners.es"
		},
		{
			"id": "client_guerrero_partners",
			"type": "Client",
			"name": "Guerrero & Partners"
		},
		{
			"id": "project_sagrera_website",
			"type": "Project",
			"name": "Sagrera website",
			"date": "2006-02-05",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website",
				"CMS"
			],
			"url": "https://cocobongo.tv/archive/sagrera/idioma.html",
			"info": "http://sagreratv.com"
		},
		{
			"id": "client_sagrera",
			"type": "Client",
			"name": "Sagrera"
		},
		{
			"id": "organization_toormix",
			"type": "Organization",
			"name": "Toormix",
			"category": "agency"
		},
		{
			"id": "project_fec_reus_06",
			"type": "Project",
			"name": "FEC Reus '06",
			"date": "2006-03-01",
			"relevance": 0.2,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://web.archive.org/web/20060529180608/http://www.pocc-fec.com/reu/index.html"
		},
		{
			"id": "project_john_smith_sports",
			"type": "Project",
			"name": "John Smith Sports",
			"date": "2006-03-07",
			"relevance": 0.2,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			]
		},
		{
			"id": "client_john_smith",
			"type": "Client",
			"name": "John Smith"
		},
		{
			"id": "project_concurso_de_mates",
			"type": "Project",
			"name": "Concurso de Mates",
			"date": "2006-03-20",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website",
				"CMS"
			],
			"url": "http://www.johnsmithsport.com/concurso_mates"
		},
		{
			"id": "project_cyberdogs",
			"type": "Project",
			"name": "CyberDogs",
			"date": "2006-05-01",
			"relevance": 1,
			"roles": [
				"audio designer"
			],
			"types": [
				"animation"
			],
			"url": "https://vimeo.com/13121589"
		},
		{
			"id": "client_cdmon",
			"type": "Client",
			"name": "CDMon"
		},
		{
			"id": "project_the_misty_blue_se_infiel",
			"type": "Project",
			"name": "The Misty Blue - Sé infiel",
			"date": "2006-05-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website",
				"viral"
			],
			"url": "http://www.themistyblue.com"
		},
		{
			"id": "client_nordic_mist",
			"type": "Client",
			"name": "Nordic Mist"
		},
		{
			"id": "project_fallen_angel",
			"type": "Project",
			"name": "Fallen Angel",
			"date": "2006-06-06",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer"
			],
			"types": [
				"website",
				"viral",
				"blog",
				"animation"
			],
			"url": "https://www.youtube.com/watch?v=AveJSRL8KgQ"
		},
		{
			"id": "client_diesel",
			"type": "Client",
			"name": "Diesel"
		},
		{
			"id": "project_phlus",
			"type": "Project",
			"name": "Phlus",
			"date": "2006-07-01",
			"relevance": 0.1,
			"roles": [
				"animator"
			]
		},
		{
			"id": "client_plataforma_logistica_huesca_sur",
			"type": "Client",
			"name": "Plataforma Logistica Huesca Sur"
		},
		{
			"id": "organization_bassat_ogilvy",
			"type": "Organization",
			"name": "Bassat Ogilvy",
			"category": "agency"
		},
		{
			"id": "project_eddie_saeta",
			"type": "Project",
			"name": "Eddie Saeta",
			"date": "2006-07-19",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"game designer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "http://cocobongo.tv/#work-126"
		},
		{
			"id": "client_eddie_saeta",
			"type": "Client",
			"name": "Eddie Saeta"
		},
		{
			"id": "project_un_lloc_un_mon",
			"type": "Project",
			"name": "Un lloc un món",
			"date": "2006-10-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://cocobongo.tv/#work-141"
		},
		{
			"id": "client_un_lloc_un_mon",
			"type": "Client",
			"name": "Un lloc un món"
		},
		{
			"id": "organization_david_resplandi",
			"type": "Organization",
			"name": "David Resplandí",
			"category": "agency",
			"alsoActsAs": [
				"client"
			]
		},
		{
			"id": "project_gloria_calsina_website",
			"type": "Project",
			"name": "Gloria Calsina website",
			"date": "2006-11-26",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.gcalsina.org"
		},
		{
			"id": "client_dra_gloria_calsina",
			"type": "Client",
			"name": "Dra. Gloria Calsina"
		},
		{
			"id": "project_siluetes_nadal",
			"type": "Project",
			"name": "Siluetes Nadal",
			"date": "2006-12-24",
			"relevance": 0.1,
			"roles": [
				"animator"
			],
			"types": [
				"installation"
			]
		},
		{
			"id": "client_hotel_ommm",
			"type": "Client",
			"name": "Hotel Ommm"
		},
		{
			"id": "organization_run_design",
			"type": "Organization",
			"name": "Run design",
			"category": "agency"
		},
		{
			"id": "project_clinica_birbe_website",
			"type": "Project",
			"name": "Clinica Birbe website",
			"date": "2007-01-23",
			"relevance": 0.3,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://web.archive.org/web/20070620025343/https://www.birbe.org"
		},
		{
			"id": "client_clinica_birbe",
			"type": "Client",
			"name": "Clinica Birbe"
		},
		{
			"id": "project_fallen_angel_making_of",
			"type": "Project",
			"name": "Fallen Angel - Making of",
			"date": "2007-02-02",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer"
			],
			"types": [
				"website",
				"viral"
			],
			"url": "https://www.vice.com/es/article/mg4pw3/primeros-videos-virales-espana"
		},
		{
			"id": "project_fec_reus_07",
			"type": "Project",
			"name": "FEC Reus '07",
			"date": "2007-02-06",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://web.archive.org/web/20080402111728/http://www.pocc-fec.com/reu/index.html"
		},
		{
			"id": "project_ad180",
			"type": "Project",
			"name": "AD180",
			"date": "2007-02-26",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://www.ad180.es"
		},
		{
			"id": "client_ad180",
			"type": "Client",
			"name": "AD180"
		},
		{
			"id": "organization_pavlov",
			"type": "Organization",
			"name": "Pavlov",
			"category": "agency"
		},
		{
			"id": "project_passat",
			"type": "Project",
			"name": "Passat ",
			"date": "2007-03-07",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"banner"
			],
			"url": "https://www.cocobongo.tv/archive/vw_passat"
		},
		{
			"id": "organization_tribal_ddb",
			"type": "Organization",
			"name": "Tribal DDB",
			"category": "agency"
		},
		{
			"id": "project_cocobongo_s_site_07",
			"type": "Project",
			"name": "CocoBongo's site '07",
			"date": "2007-04-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio",
				"CMS"
			],
			"url": "https://cocobongo.tv/07"
		},
		{
			"id": "project_juega_con_el_tiempo",
			"type": "Project",
			"name": "Juega con el tiempo",
			"date": "2007-04-30",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.ccbng.com/archive/vw_eos"
		},
		{
			"id": "project_golf_por_250",
			"type": "Project",
			"name": "Golf por 250€",
			"date": "2007-06-08",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"banner"
			],
			"url": "http://www.golfpor250euros.com"
		},
		{
			"id": "project_retrovespa",
			"type": "Project",
			"name": "Retrovespa",
			"date": "2007-07-02",
			"relevance": 0.07,
			"roles": [
				"creative",
				"frontend developer",
				"ux / ui",
				"animator"
			],
			"types": [
				"website"
			],
			"url": "www.retrovespa.es"
		},
		{
			"id": "project_axel_n_rose",
			"type": "Project",
			"name": "Axel N' Rose",
			"date": "2007-08-23",
			"relevance": 0.08,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://cocobongo.tv/archive/axel_rose"
		},
		{
			"id": "client_axel_n_rose",
			"type": "Client",
			"name": "Axel N' Rose"
		},
		{
			"id": "project_tiguan",
			"type": "Project",
			"name": "Tiguan",
			"date": "2007-12-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"banner"
			],
			"url": "https://www.ccbng.com/archive/vw_tiguan"
		},
		{
			"id": "project_seisgrados",
			"type": "Project",
			"name": "Seisgrados",
			"date": "2008-02-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"portfolio",
				"experiment",
				"CMS"
			],
			"url": "http://seisgrados.com"
		},
		{
			"id": "project_blue_motion",
			"type": "Project",
			"name": "Blue motion",
			"date": "2008-04-01",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.ccbng.com/archive/bluemotion"
		},
		{
			"id": "project_screensaver_bones",
			"type": "Project",
			"name": "Screensaver Bones",
			"date": "2008-06-18",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"screensaver"
			]
		},
		{
			"id": "client_aclasta",
			"type": "Client",
			"name": "Aclasta"
		},
		{
			"id": "project_las_reglas_han_cambiado",
			"type": "Project",
			"name": "Las reglas han cambiado",
			"date": "2008-07-08",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"game designer"
			],
			"types": [
				"website",
				"game",
				"banner"
			],
			"url": "https://www.cocobongo.tv/archive/cruzcampo_light"
		},
		{
			"id": "client_cruzcampo",
			"type": "Client",
			"name": "Cruzcampo"
		},
		{
			"id": "organization_ogilvy_one_interactive",
			"type": "Organization",
			"name": "Ogilvy One - Interactive",
			"category": "agency",
			"aliases": [
				"Ogilvy One - Intercative"
			]
		},
		{
			"id": "project_coco_s_island_blog",
			"type": "Project",
			"name": "Coco's Island - Blog",
			"date": "2008-08-29",
			"relevance": 0.5,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website",
				"blog"
			],
			"url": "https://web.archive.org/web/20120123104918/http://www.ccbng.com/blog"
		},
		{
			"id": "project_raices",
			"type": "Project",
			"name": "Raíces",
			"date": "2008-09-15",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/archive/camper-raices"
		},
		{
			"id": "client_camper",
			"type": "Client",
			"name": "Camper"
		},
		{
			"id": "organization_herraiz_soto",
			"type": "Organization",
			"name": "Herraiz Soto",
			"category": "agency"
		},
		{
			"id": "project_ajuntament_de_barcelona",
			"type": "Project",
			"name": "AJuntament de Barcelona",
			"date": "2008-12-15",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"interactive christmas"
			],
			"url": "https://www.cocobongo.tv/archive/xmas-AjBcn/index_cat.html"
		},
		{
			"id": "client_ajuntament_de_barcelona",
			"type": "Client",
			"name": "Ajuntament de Barcelona"
		},
		{
			"id": "project_junta_de_andalucia",
			"type": "Project",
			"name": "Junta de Andalucia",
			"date": "2009-01-03",
			"relevance": 0.3,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.juntadeandalucia.es"
		},
		{
			"id": "client_junta_de_andalucia",
			"type": "Client",
			"name": "Junta de Andalucia"
		},
		{
			"id": "organization_ais_spain",
			"type": "Organization",
			"name": "AIS Spain",
			"category": "agency"
		},
		{
			"id": "project_cherry_world",
			"type": "Project",
			"name": "Cherry World",
			"date": "2009-02-03",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://www.intima-cherry.com"
		},
		{
			"id": "client_intima_cherry",
			"type": "Client",
			"name": "Intima Cherry"
		},
		{
			"id": "project_mediterranean_sneakers",
			"type": "Project",
			"name": "Mediterranean Sneakers",
			"date": "2009-03-04",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/archive/camper-med"
		},
		{
			"id": "project_your_special_edition",
			"type": "Project",
			"name": "Your Special Edition",
			"date": "2009-06-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			]
		},
		{
			"id": "client_bmw",
			"type": "Client",
			"name": "BMW"
		},
		{
			"id": "project_trash",
			"type": "Project",
			"name": "Trash",
			"date": "2009-10-01",
			"relevance": 0.5,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"viral",
				"blog"
			]
		},
		{
			"id": "client_carles_majo",
			"type": "Client",
			"name": "Carles Majo"
		},
		{
			"id": "project_screensavers",
			"type": "Project",
			"name": "Screensavers",
			"date": "2009-11-09",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"screensaver"
			]
		},
		{
			"id": "client_lg",
			"type": "Client",
			"name": "LG"
		},
		{
			"id": "project_christmas_09",
			"type": "Project",
			"name": "Christmas '09",
			"date": "2009-12-15",
			"relevance": 0.3,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"interactive christmas"
			],
			"url": "https://cocobongo.tv/client/mango/xmas-2009"
		},
		{
			"id": "client_mango",
			"type": "Client",
			"name": "Mango"
		},
		{
			"id": "organization_nopiun",
			"type": "Organization",
			"name": "Nopiun",
			"category": "agency"
		},
		{
			"id": "project_game_tuberias",
			"type": "Project",
			"name": "Game Tuberias",
			"date": "2010-03-01",
			"relevance": 0.2,
			"roles": [
				"frontend developer",
				"game designer"
			],
			"types": [
				"game"
			]
		},
		{
			"id": "client_nocilla",
			"type": "Client",
			"name": "Nocilla"
		},
		{
			"id": "project_big_fish",
			"type": "Project",
			"name": "Big Fish",
			"date": "2010-03-03",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/client/bigfish"
		},
		{
			"id": "client_big_fish",
			"type": "Client",
			"name": "Big Fish"
		},
		{
			"id": "project_un_martini_con_martin",
			"type": "Project",
			"name": "Un Martini con Martín",
			"date": "2010-03-08",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://cocobongo.tv/client/martini",
			"info": "https://www.unmartiniconmartin.com"
		},
		{
			"id": "client_martini",
			"type": "Client",
			"name": "Martini"
		},
		{
			"id": "project_fiestas_limon",
			"type": "Project",
			"name": "Fiestas Limón",
			"date": "2010-04-10",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://cocobongo.tv/client/seisgrados/bacardi/",
			"info": "http://www.fiestaslimon.es"
		},
		{
			"id": "client_bacardi",
			"type": "Client",
			"name": "Bacardí"
		},
		{
			"id": "project_la_diversion_nunca_termina",
			"type": "Project",
			"name": "La diversión nunca termina",
			"date": "2010-04-23",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"banner"
			],
			"url": "https://cocobongo.tv/#work-33"
		},
		{
			"id": "project_got_milk",
			"type": "Project",
			"name": "Got Milk?",
			"date": "2010-05-25",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer",
				"shader designer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/archive/toma_leche"
		},
		{
			"id": "client_california_milk_processor_board",
			"type": "Client",
			"name": "California Milk Processor Board"
		},
		{
			"id": "project_cocobongo_s_site_10",
			"type": "Project",
			"name": "CocoBongo's site '10",
			"date": "2010-07-14",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio",
				"CMS"
			],
			"url": "https://www.cocobongo.tv/10"
		},
		{
			"id": "project_extraordinary_crafts",
			"type": "Project",
			"name": "Extraordinary Crafts",
			"date": "2010-08-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/client/herraizsoto/camper_crafts"
		},
		{
			"id": "project_christmas_10",
			"type": "Project",
			"name": "Christmas '10",
			"date": "2010-12-12",
			"relevance": 0.14,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"interactive christmas"
			],
			"url": "http://cocobongo.tv/client/Mango/xmas-2010"
		},
		{
			"id": "project_wellness",
			"type": "Project",
			"name": "Wellness",
			"date": "2011-01-19",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"data visualizer",
				"ux / ui",
				"backend developer"
			],
			"types": [
				"website",
				"installation"
			],
			"url": "https://www.cocobongo.tv/client/roca"
		},
		{
			"id": "client_roca",
			"type": "Client",
			"name": "Roca"
		},
		{
			"id": "project_flagship_shibuya",
			"type": "Project",
			"name": "Flagship Shibuya",
			"date": "2011-04-15",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer"
			],
			"types": [
				"installation"
			],
			"url": "https://cocobongo.tv/#work-18"
		},
		{
			"id": "client_bershka",
			"type": "Client",
			"name": "Bershka"
		},
		{
			"id": "organization_alex_montiel",
			"type": "Organization",
			"name": "Alex Montiel",
			"category": "agency"
		},
		{
			"id": "project_11250_secretos",
			"type": "Project",
			"name": "11250 secretos",
			"date": "2011-11-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://cocobongo.tv/client/torres/JeanLeon"
		},
		{
			"id": "client_torres",
			"type": "Client",
			"name": "Torres"
		},
		{
			"id": "client_jean_leon",
			"type": "Client",
			"name": "Jean Leon"
		},
		{
			"id": "project_face_dancers",
			"type": "Project",
			"name": "Face dancers",
			"date": "2012-03-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website",
				"CMS"
			],
			"url": "https://www.cocobongo.tv/archive/sanmiguel_primavera_sound"
		},
		{
			"id": "client_san_miguel",
			"type": "Client",
			"name": "San Miguel"
		},
		{
			"id": "client_primavera_sound",
			"type": "Client",
			"name": "Primavera Sound",
			"aliases": [
				"Primavera sound"
			]
		},
		{
			"id": "organization_mr_john_sample",
			"type": "Organization",
			"name": "Mr. John Sample",
			"category": "agency"
		},
		{
			"id": "organization_s_c_p_f",
			"type": "Organization",
			"name": "S.C.P.F.",
			"category": "agency"
		},
		{
			"id": "project_microbio_gentleman_v_1",
			"type": "Project",
			"name": "Microbio Gentleman v.1",
			"date": "2012-05-07",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"experiment"
			],
			"url": "https://www.cocobongo.tv/client/microbio",
			"info": "http://www.microbiogentleman.com"
		},
		{
			"id": "client_microbio_gentleman",
			"type": "Client",
			"name": "Microbio Gentleman"
		},
		{
			"id": "project_de_mujer_a_mujer",
			"type": "Project",
			"name": "De mujer a mujer",
			"date": "2012-12-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "http://www.demujeramujer.es"
		},
		{
			"id": "client_fundacion_vicente_ferrer",
			"type": "Client",
			"name": "Fundación Vicente Ferrer"
		},
		{
			"id": "organization_jorge_martinez",
			"type": "Organization",
			"name": "Jorge Martínez",
			"category": "agency"
		},
		{
			"id": "project_tricentenari_bcn",
			"type": "Project",
			"name": "Tricentenari BCN",
			"date": "2013-06-05",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"game designer",
				"backend developer"
			],
			"types": [
				"website",
				"game"
			],
			"url": "https://tricentenari.bcn.cat/ca"
		},
		{
			"id": "organization_icub",
			"type": "Organization",
			"name": "Icub",
			"category": "agency"
		},
		{
			"id": "project_bcn_re_set",
			"type": "Project",
			"name": "Bcn Re-set",
			"date": "2014-02-13",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://tricentenari.bcn.cat/BCNreset"
		},
		{
			"id": "project_rig_wizards",
			"type": "Project",
			"name": "Rig Wizards",
			"date": "2014-05-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://cocobongo.tv/#work-46"
		},
		{
			"id": "client_rig_wizards",
			"type": "Client",
			"name": "Rig Wizards"
		},
		{
			"id": "project_the_ride_ibiza",
			"type": "Project",
			"name": "The Ride Ibiza",
			"date": "2014-05-19",
			"relevance": 0.08,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.theride.es"
		},
		{
			"id": "client_the_ride_ibiza",
			"type": "Client",
			"name": "The Ride Ibiza"
		},
		{
			"id": "project_triangle_mesh",
			"type": "Project",
			"name": "Triangle Mesh",
			"date": "2014-10-01",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"art direction",
				"backend developer"
			],
			"types": [
				"app",
				"experiment"
			]
		},
		{
			"id": "project_ahora_no_podemos_parar",
			"type": "Project",
			"name": "Ahora no podemos parar",
			"date": "2014-10-09",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"tool developer"
			],
			"types": [
				"website"
			],
			"url": "https://vimeo.com/203796253"
		},
		{
			"id": "client_unicef",
			"type": "Client",
			"name": "Unicef"
		},
		{
			"id": "project_memoria_tricentenari_bcn",
			"type": "Project",
			"name": "Memòria Tricentenari BCN",
			"date": "2014-11-13",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer"
			],
			"types": [
				"website"
			],
			"url": "https://memoriatricentenaribcn.bcn.cat"
		},
		{
			"id": "project_bcn_novel_la_historica_14",
			"type": "Project",
			"name": "BCN · Novel·la històrica '14",
			"date": "2014-11-17",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_la_otra_carta",
			"type": "Project",
			"name": "La otra carta",
			"date": "2014-12-10",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"shader designer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/archive/ikea/la-otra-carta"
		},
		{
			"id": "client_ikea",
			"type": "Client",
			"name": "Ikea"
		},
		{
			"id": "organization_mrm_mccann",
			"type": "Organization",
			"name": "MRM-McCann",
			"category": "agency"
		},
		{
			"id": "project_hotel_amour",
			"type": "Project",
			"name": "Hotel Amour",
			"date": "2015-02-14",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website",
				"CMS"
			],
			"url": "https://www.youtube.com/watch?v=AfSLXZcEsvg"
		},
		{
			"id": "project_llum_bcn_santa_eulalia_15",
			"type": "Project",
			"name": "Llum Bcn / Santa Eulàlia '15",
			"date": "2015-02-14",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/llumbcn"
		},
		{
			"id": "project_terracitas",
			"type": "Project",
			"name": "Terracitas",
			"date": "2015-03-25",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website",
				"CMS"
			],
			"url": "https://www.terracitas.es"
		},
		{
			"id": "project_de_mujer_a_mujer_onlife",
			"type": "Project",
			"name": "De mujer a mujer - Onlife",
			"date": "2015-04-13",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "http://www.ccma.cat/tv3/alacarta/generacio-digital/concert-virtual-solidari/video/5514238/?fbclid=IwAR12adNTc8UQ6UK2ReRfVjC7EKlZUSuVoN20UCTswBmanDawBQ0fp0naDdY"
		},
		{
			"id": "project_mon_llibre_15",
			"type": "Project",
			"name": "Món Llibre '15",
			"date": "2015-04-23",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/monllibre"
		},
		{
			"id": "project_espectacool_app_website",
			"type": "Project",
			"name": "Espectacool App website",
			"date": "2015-05-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://cocobongo.tv/archive/club-vips"
		},
		{
			"id": "client_club_vips",
			"type": "Client",
			"name": "Club Vips"
		},
		{
			"id": "project_amigos_de_las_terrazas",
			"type": "Project",
			"name": "Amigos de las terrazas",
			"date": "2015-05-02",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website",
				"CMS"
			],
			"url": "https://www.amigosdelasterrazas.org"
		},
		{
			"id": "project_cocobongo_s_site_15",
			"type": "Project",
			"name": "CocoBongo's site '15",
			"date": "2015-06-26",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"backend developer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio",
				"CMS"
			],
			"url": "https://www.cocobongo.tv/18"
		},
		{
			"id": "project_why",
			"type": "Project",
			"name": "Why?",
			"date": "2015-09-24",
			"relevance": 0.3,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website",
				"blog"
			],
			"url": "http://www.why.design"
		},
		{
			"id": "client_rob_duncan",
			"type": "Client",
			"name": "Rob Duncan"
		},
		{
			"id": "organization_mucho_san_francisco",
			"type": "Organization",
			"name": "Mucho (San Francisco)",
			"category": "agency"
		},
		{
			"id": "project_bcn_novel_la_historica_15",
			"type": "Project",
			"name": "BCN · Novel·la històrica '15",
			"date": "2015-11-10",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_peoxel",
			"type": "Project",
			"name": "Peoxel",
			"date": "2016-01-06",
			"relevance": 0.3,
			"roles": [
				"frontend developer",
				"data visualizer",
				"art direction",
				"backend developer"
			],
			"types": [
				"app"
			],
			"url": "https://www.cocobongo.tv/peoxel/simulation",
			"inProduction": true
		},
		{
			"id": "project_llum_bcn_santa_eulalia_16",
			"type": "Project",
			"name": "Llum Bcn / Santa Eulàlia '16",
			"date": "2016-02-14",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/llumbcn"
		},
		{
			"id": "project_mon_llibre_16",
			"type": "Project",
			"name": "Món Llibre '16",
			"date": "2016-04-23",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/monllibre"
		},
		{
			"id": "project_20_aniversario",
			"type": "Project",
			"name": "20 aniversario",
			"date": "2016-05-23",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"data visualizer"
			],
			"types": [
				"website"
			],
			"url": "http://www.fundacionvicenteferrer.org/20aniversario"
		},
		{
			"id": "project_muevete",
			"type": "Project",
			"name": "#Muévete",
			"date": "2016-07-15",
			"relevance": 0.9,
			"roles": [
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/client/fontvella/muevete"
		},
		{
			"id": "client_font_vella",
			"type": "Client",
			"name": "Font Vella"
		},
		{
			"id": "organization_vinizius_young_rubicam",
			"type": "Organization",
			"name": "Vinizius - Young & Rubicam",
			"category": "agency"
		},
		{
			"id": "project_fallen_angel_10th",
			"type": "Project",
			"name": "Fallen Angel 10th",
			"date": "2016-09-01",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"audio designer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/fallen_angel_10",
			"info": "https://www.awwwards.com/inspiration/fallen-angel-10th"
		},
		{
			"id": "project_bcn_novel_la_historica_16",
			"type": "Project",
			"name": "BCN · Novel·la històrica '16",
			"date": "2016-11-10",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_coblentz_xmas_16",
			"type": "Project",
			"name": "Coblentz xmas ' 16",
			"date": "2016-12-20",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://cocobongo.tv/client/coblentz/xmas-2016"
		},
		{
			"id": "client_coblentz_patch_duffy_bass",
			"type": "Client",
			"name": "Coblentz Patch Duffy & Bass"
		},
		{
			"id": "project_llum_bcn_santa_eulalia_17",
			"type": "Project",
			"name": "Llum Bcn / Santa Eulàlia '17",
			"date": "2017-02-14",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/llumbcn"
		},
		{
			"id": "project_el_tourmalet",
			"type": "Project",
			"name": "El Tourmalet",
			"date": "2017-03-01",
			"relevance": 0.18,
			"roles": [
				"creative",
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.eltorumalet.cat"
		},
		{
			"id": "client_el_tourmalet",
			"type": "Client",
			"name": "El Tourmalet"
		},
		{
			"id": "project_mon_llibre_17",
			"type": "Project",
			"name": "Món Llibre '17",
			"date": "2017-04-23",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/monllibre"
		},
		{
			"id": "project_nug_arquitectes",
			"type": "Project",
			"name": "Nug arquitectes",
			"date": "2017-05-10",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"data visualizer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "http://www.nugarch.com"
		},
		{
			"id": "client_nug",
			"type": "Client",
			"name": "Nug"
		},
		{
			"id": "project_bcn_novel_la_historica_17",
			"type": "Project",
			"name": "BCN · Novel·la històrica '17",
			"date": "2017-11-11",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_dau_6e_festival_del_joc",
			"type": "Project",
			"name": "Dau - 6è Festival del Joc",
			"date": "2017-11-17",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/daubarcelona"
		},
		{
			"id": "project_llum_bcn_santa_eulalia_18",
			"type": "Project",
			"name": "Llum Bcn / Santa Eulàlia '18",
			"date": "2018-02-14",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/llumbcn"
		},
		{
			"id": "project_fabriques_de_creacio",
			"type": "Project",
			"name": "Fàbriques de Creació",
			"date": "2018-03-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"tool developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "http://ajuntament.barcelona.cat/fabriquescreacio"
		},
		{
			"id": "project_cromosoma_13",
			"type": "Project",
			"name": "Cromosoma 13",
			"date": "2018-03-08",
			"relevance": 0.2,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "http://www.cromosoma13.com"
		},
		{
			"id": "project_mon_llibre_18",
			"type": "Project",
			"name": "Món Llibre '18",
			"date": "2018-04-23",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/monllibre"
		},
		{
			"id": "project_cocobongo_s_site_18_udpate",
			"type": "Project",
			"name": "CocoBongo's site '18 (udpate)",
			"date": "2018-05-01",
			"relevance": 0.5,
			"roles": [
				"frontend developer",
				"backend developer",
				"shader designer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio",
				"CMS"
			],
			"url": "https://www.cocobongo.tv/18"
		},
		{
			"id": "project_barcelona_poesia_18",
			"type": "Project",
			"name": "Barcelona Poesia '18",
			"date": "2018-05-10",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonapoesia"
		},
		{
			"id": "project_farao",
			"type": "Project",
			"name": "Faraó",
			"date": "2018-06-28",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"data visualizer",
				"shader designer"
			],
			"types": [
				"installation"
			],
			"url": "https://cocobongo.tv/client/lacaixa/farao/kings-list/?quality=High"
		},
		{
			"id": "client_caixa_forum",
			"type": "Client",
			"name": "Caixa Forum"
		},
		{
			"id": "project_museu_etnologic_i_de_cultures_del_mon",
			"type": "Project",
			"name": "Museu etnòlogic i de cultures del món",
			"date": "2018-07-20",
			"relevance": 0.18,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/museu-etnologic-culturesmon"
		},
		{
			"id": "project_bcn_novel_la_historica_18",
			"type": "Project",
			"name": "BCN · Novel·la històrica '18",
			"date": "2018-11-10",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_dau_7e_festival_del_joc",
			"type": "Project",
			"name": "Dau - 7è Festival del Joc",
			"date": "2018-11-17",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/daubarcelona"
		},
		{
			"id": "project_la_panera",
			"type": "Project",
			"name": "La Panera",
			"date": "2018-11-21",
			"relevance": 0.18,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://cocobongo.tv/archive/lapanera",
			"info": "http://www.lapanera.cat"
		},
		{
			"id": "client_la_panera",
			"type": "Client",
			"name": "La Panera"
		},
		{
			"id": "organization_bildi",
			"type": "Organization",
			"name": "Bildi",
			"category": "agency",
			"alsoActsAs": [
				"client"
			]
		},
		{
			"id": "project_ugly_christmas_sweater_generator",
			"type": "Project",
			"name": "Ugly Christmas sweater generator",
			"date": "2018-12-01",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"backend developer",
				"shader designer"
			],
			"types": [
				"website",
				"interactive christmas"
			],
			"url": "https://merryxmas.ccbng.com"
		},
		{
			"id": "project_christmas_shop",
			"type": "Project",
			"name": "Christmas Shop",
			"date": "2018-12-20",
			"relevance": 0.2,
			"roles": [
				"photo editor"
			]
		},
		{
			"id": "client_tous",
			"type": "Client",
			"name": "Tous"
		},
		{
			"id": "project_llum_bcn_santa_eulalia_19",
			"type": "Project",
			"name": "Llum Bcn / Santa Eulàlia '19",
			"date": "2019-02-14",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/llumbcn"
		},
		{
			"id": "project_mon_llibre_19",
			"type": "Project",
			"name": "Món Llibre '19",
			"date": "2019-04-23",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/monllibre"
		},
		{
			"id": "project_barcelona_poesia_19",
			"type": "Project",
			"name": "Barcelona Poesia '19",
			"date": "2019-05-08",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonapoesia"
		},
		{
			"id": "project_25",
			"type": "Project",
			"name": "25",
			"date": "2019-05-10",
			"relevance": 0.3,
			"roles": [
				"frontend developer",
				"tool developer"
			],
			"types": [
				"animation"
			],
			"url": "https://cocobongo.tv/client/marta_cerda"
		},
		{
			"id": "client_marta_cerda",
			"type": "Client",
			"name": "Marta Cerdà"
		},
		{
			"id": "project_raise",
			"type": "Project",
			"name": "Raise",
			"date": "2019-06-29",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://cocobongo.tv/client/hero/raise/",
			"info": "https://raise.it"
		},
		{
			"id": "client_hero",
			"type": "Client",
			"name": "Hero"
		},
		{
			"id": "project_bcn_novel_la_historica_19",
			"type": "Project",
			"name": "BCN · Novel·la històrica '19",
			"date": "2019-11-10",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_unidos_por_un_decimo",
			"type": "Project",
			"name": "Unidos por un décimo",
			"date": "2019-11-11",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/archive/unidos_por_un_decimo"
		},
		{
			"id": "client_loteria_de_navidad",
			"type": "Client",
			"name": "Lotería de Navidad"
		},
		{
			"id": "organization_dec_bbdo",
			"type": "Organization",
			"name": "Dec BBDO",
			"category": "agency"
		},
		{
			"id": "organization_contrapunto_bbdo",
			"type": "Organization",
			"name": "Contrapunto BBDO",
			"category": "agency"
		},
		{
			"id": "project_bcn_novel_la_historica_20",
			"type": "Project",
			"name": "BCN · Novel·la històrica '20",
			"date": "2019-11-14",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/novel.lahistorica"
		},
		{
			"id": "project_dau_8e_festival_del_joc",
			"type": "Project",
			"name": "Dau - 8è Festival del Joc",
			"date": "2019-11-23",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/daubarcelona"
		},
		{
			"id": "project_barcelona_dibuixa_19",
			"type": "Project",
			"name": "Barcelona Dibuixa '19",
			"date": "2019-12-12",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonadibuixa"
		},
		{
			"id": "project_santa_eulalia_20",
			"type": "Project",
			"name": "Santa Eulàlia '20",
			"date": "2020-02-14",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/santaeulalia"
		},
		{
			"id": "project_rescue_squad",
			"type": "Project",
			"name": "Rescue Squad",
			"date": "2020-02-20",
			"relevance": 0.2,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.rescuesquadlacerdanya.com"
		},
		{
			"id": "client_rescue_squad_la_cerdanya",
			"type": "Client",
			"name": "Rescue Squad la Cerdanya"
		},
		{
			"id": "project_80_s_chinface_filter",
			"type": "Project",
			"name": "80's Chinface filter",
			"date": "2020-03-03",
			"relevance": 0.1,
			"roles": [
				"creative",
				"frontend developer",
				"art direction"
			],
			"types": [
				"Filter"
			],
			"url": "https://lens.snapchat.com/348fe24e27af4ee3892a11b558cb121c?share_id=1lE9RrX5fbM&locale=es-ES"
		},
		{
			"id": "project_bildi",
			"type": "Project",
			"name": "Bildi",
			"date": "2020-04-23",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website",
				"portfolio",
				"CMS"
			],
			"url": "https://www.bildi.net"
		},
		{
			"id": "project_androsguirado_dev",
			"type": "Project",
			"name": "AndrosGuirado.dev",
			"date": "2020-05-15",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"art direction",
				"CMS management",
				"backend developer",
				"photo editor"
			],
			"types": [
				"website",
				"portfolio"
			],
			"url": "https://androsguirado.dev"
		},
		{
			"id": "project_el_marxant_d_art_streetescape",
			"type": "Project",
			"name": "El marxant d'art - Streetescape",
			"date": "2020-07-17",
			"relevance": 0.3,
			"roles": [
				"frontend developer",
				"game designer",
				"tool developer",
				"CMS management",
				"audio designer"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/marxant"
		},
		{
			"id": "client_estrambotic",
			"type": "Client",
			"name": "Estrambòtic",
			"aliases": [
				"Estrambotic"
			]
		},
		{
			"id": "project_the_art_of_blocks",
			"type": "Project",
			"name": "The art of blocks",
			"date": "2020-08-18",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"tool developer",
				"backend developer",
				"shader designer"
			],
			"types": [
				"experiment"
			],
			"url": "https://www.instagram.com/the.art.of.blocks"
		},
		{
			"id": "project_l_herencia_del_bandoler_streetescape",
			"type": "Project",
			"name": "L'herència del bandoler - Streetescape",
			"date": "2020-09-12",
			"relevance": 0.18,
			"roles": [
				"frontend developer",
				"game designer",
				"tool developer",
				"CMS management"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/bandoler"
		},
		{
			"id": "project_oxigen_streetescape",
			"type": "Project",
			"name": "Oxígen - Streetescape",
			"date": "2020-10-01",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"game designer",
				"tool developer",
				"CMS management",
				"shader designer"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://www.cocobongo.tv/escaperooms/oxigen",
			"inProduction": true
		},
		{
			"id": "project_barcelona_dibuixa_20",
			"type": "Project",
			"name": "Barcelona Dibuixa '20",
			"date": "2020-10-01",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonadibuixa"
		},
		{
			"id": "project_barcelona_poesia_20",
			"type": "Project",
			"name": "Barcelona Poesia '20",
			"date": "2020-10-13",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonapoesia"
		},
		{
			"id": "project_dau_9e_festival_del_joc",
			"type": "Project",
			"name": "Dau - 9è Festival del Joc",
			"date": "2020-11-01",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/daubarcelona"
		},
		{
			"id": "project_el_futuro_es_apasionante",
			"type": "Project",
			"name": "El futuro es apasionante",
			"date": "2020-11-10",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.cocobongo.tv/archive/vodafone/educacion-conectada"
		},
		{
			"id": "client_vodafone",
			"type": "Client",
			"name": "Vodafone"
		},
		{
			"id": "organization_quoco",
			"type": "Organization",
			"name": "Quoco",
			"category": "agency"
		},
		{
			"id": "organization_wink_ttd",
			"type": "Organization",
			"name": "Wink TTD",
			"category": "agency"
		},
		{
			"id": "project_santa_eulalia_21",
			"type": "Project",
			"name": "Santa Eulàlia '21",
			"date": "2021-02-01",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/santaeulalia"
		},
		{
			"id": "project_holograms",
			"type": "Project",
			"name": "Holograms",
			"date": "2021-02-02",
			"relevance": 0.3,
			"roles": [
				"creative",
				"frontend developer",
				"ux / ui",
				"backend developer",
				"shader designer"
			],
			"types": [
				"installation",
				"experiment"
			],
			"inProduction": true
		},
		{
			"id": "project_barcelona_fotografes",
			"type": "Project",
			"name": "Barcelona fotògrafes",
			"date": "2021-02-16",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/expofotografes"
		},
		{
			"id": "project_mon_llibre_21",
			"type": "Project",
			"name": "Món Llibre '21",
			"date": "2021-03-01",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/monllibre"
		},
		{
			"id": "project_un_estiu_lector",
			"type": "Project",
			"name": "Un estiu lector",
			"date": "2021-03-20",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://lecxit.cat/guanyem-un-estiu-lector"
		},
		{
			"id": "client_lecxit",
			"type": "Client",
			"name": "Lecxit"
		},
		{
			"id": "organization_fundacio_jaume_bofill",
			"type": "Organization",
			"name": "Fundació Jaume Bofill",
			"category": "agency"
		},
		{
			"id": "project_families_aliades_de_la_lectura",
			"type": "Project",
			"name": "Famílies, aliades de la lectura",
			"date": "2021-03-20",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://lecxit.cat/families-lectores"
		},
		{
			"id": "project_configurador_de_reuniones",
			"type": "Project",
			"name": "Configurador de reuniones",
			"date": "2021-04-15",
			"relevance": 0.7,
			"roles": [
				"creative",
				"frontend developer",
				"data visualizer",
				"art direction",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.fixeclimbing.com/configurator"
		},
		{
			"id": "client_fixe",
			"type": "Client",
			"name": "Fixe"
		},
		{
			"id": "project_projecte_geminis_streetescape",
			"type": "Project",
			"name": "Projecte Geminis - Streetescape",
			"date": "2021-05-01",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"game designer",
				"tool developer"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/projecte-geminis"
		},
		{
			"id": "project_barcelona_poesia_21",
			"type": "Project",
			"name": "Barcelona Poesia '21",
			"date": "2021-05-10",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonapoesia"
		},
		{
			"id": "project_mala_vella_streetescape",
			"type": "Project",
			"name": "Mala Vella - Streetescape",
			"date": "2021-06-01",
			"relevance": 0.18,
			"roles": [
				"frontend developer",
				"game designer",
				"CMS management"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/malavella"
		},
		{
			"id": "project_dau_10e_festival_del_joc",
			"type": "Project",
			"name": "Dau - 10è Festival del Joc",
			"date": "2021-10-01",
			"relevance": 0.1,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/daubarcelona"
		},
		{
			"id": "project_barcelona_dibuixa_21",
			"type": "Project",
			"name": "Barcelona Dibuixa '21",
			"date": "2021-10-07",
			"relevance": 0.1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/barcelonadibuixa"
		},
		{
			"id": "project_fabra_i_coats",
			"type": "Project",
			"name": "Fabra i Coats",
			"date": "2021-11-25",
			"relevance": 0.5,
			"roles": [
				"frontend developer",
				"CMS management",
				"backend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.barcelona.cat/fabraicoats"
		},
		{
			"id": "project_sonora",
			"type": "Project",
			"name": "Sonora",
			"date": "2022-05-01",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"data visualizer",
				"ux / ui",
				"tool developer",
				"backend developer"
			],
			"types": [
				"app"
			],
			"url": "https://www.sonora.com"
		},
		{
			"id": "client_wink",
			"type": "Client",
			"name": "Wink"
		},
		{
			"id": "project_minisite_demo_day_22",
			"type": "Project",
			"name": "Minisite Demo Day '22",
			"date": "2022-06-10",
			"relevance": 0.5,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://page.kidsandus.es/demoday-2022"
		},
		{
			"id": "client_kids_us",
			"type": "Client",
			"name": "Kids&Us"
		},
		{
			"id": "project_eeze",
			"type": "Project",
			"name": "Eeze",
			"date": "2022-12-26",
			"relevance": 0.2,
			"roles": [
				"frontend developer",
				"ux / ui",
				"backend developer",
				"shader designer"
			],
			"types": [
				"website"
			],
			"url": "https://www.eeze.com",
			"inProduction": true
		},
		{
			"id": "client_mediapro",
			"type": "Client",
			"name": "Mediapro"
		},
		{
			"id": "organization_la_sustancia",
			"type": "Organization",
			"name": "La Sustancia",
			"category": "agency"
		},
		{
			"id": "project_silent",
			"type": "Project",
			"name": "Silent",
			"date": "2023-04-20",
			"relevance": 0.8,
			"roles": [
				"shader designer"
			],
			"types": [
				"installation"
			],
			"url": "https://www.youtube.com/watch?v=Bl_103fifTs",
			"inProduction": true
		},
		{
			"id": "client_cia_sargantana",
			"type": "Client",
			"name": "Cia. Sargantana"
		},
		{
			"id": "project_resplandi_valiente",
			"type": "Project",
			"name": "Resplandí Valiente",
			"date": "2023-08-04",
			"relevance": 0.4,
			"roles": [
				"frontend developer",
				"shader designer"
			],
			"types": [
				"website",
				"portfolio"
			],
			"url": "https://www.resplandivaliente.com"
		},
		{
			"id": "project_lv_accessories_23",
			"type": "Project",
			"name": "LV - Accessories '23",
			"date": "2023-11-20",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.louisvuittondesigngraduates.com/"
		},
		{
			"id": "organization_feelslike",
			"type": "Organization",
			"name": "FeelsLike",
			"category": "studio",
			"url": "https://feelslike.studio",
			"city": "Barcelona",
			"alsoActsAs": [
				"client"
			],
			"aliases": [
				"B-Reel"
			]
		},
		{
			"id": "client_louis_vuitton",
			"type": "Client",
			"name": "Louis Vuitton",
			"aliases": [
				"Luis Vuitton"
			]
		},
		{
			"id": "project_suno_valentine_s_day",
			"type": "Project",
			"name": "Suno - Valentine's Day",
			"date": "2024-01-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://vday-dev.suno.run/"
		},
		{
			"id": "client_suno",
			"type": "Client",
			"name": "Suno"
		},
		{
			"id": "project_moonfall",
			"type": "Project",
			"name": "Moonfall",
			"date": "2024-01-02",
			"relevance": 0.2,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://moonfall.productions/"
		},
		{
			"id": "client_moonfall_productions",
			"type": "Client",
			"name": "Moonfall productions"
		},
		{
			"id": "project_suno_musical_memories",
			"type": "Project",
			"name": "Suno - Musical Memories",
			"date": "2024-02-28",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"shader designer"
			],
			"types": [
				"website"
			],
			"url": "https://www.musicalmemories.ai/"
		},
		{
			"id": "project_illumination",
			"type": "Project",
			"name": "Illumination",
			"date": "2024-02-29",
			"relevance": 0.6,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.illumination.com/"
		},
		{
			"id": "client_illumination",
			"type": "Client",
			"name": "Illumination"
		},
		{
			"id": "project_suno_blog",
			"type": "Project",
			"name": "Suno Blog",
			"date": "2024-03-20",
			"relevance": 0.4,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://suno.com/blog/"
		},
		{
			"id": "project_arcade",
			"type": "Project",
			"name": "Arcade",
			"date": "2024-05-15",
			"relevance": 0.6,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.arcade.ai/"
		},
		{
			"id": "client_arcade",
			"type": "Client",
			"name": "Arcade"
		},
		{
			"id": "project_lvmh_prize_24",
			"type": "Project",
			"name": "LVMH - Prize '24",
			"date": "2024-08-01",
			"relevance": 0.75,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.lvmhprize.com/?"
		},
		{
			"id": "project_lv_watch_prize_25",
			"type": "Project",
			"name": "LV - Watch Prize '25",
			"date": "2024-10-20",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.louisvuittonwatchprize.com/"
		},
		{
			"id": "project_l_herencia_perduda",
			"type": "Project",
			"name": "L'Herència perduda",
			"date": "2024-10-20",
			"relevance": 0.5,
			"roles": [
				"frontend developer",
				"game designer"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/herencia-perduda",
			"inProduction": true
		},
		{
			"id": "project_feelslike",
			"type": "Project",
			"name": "FeelsLike",
			"date": "2024-11-19",
			"relevance": 1,
			"roles": [
				"frontend developer",
				"CMS management"
			],
			"types": [
				"website"
			],
			"url": "https://www.feelslike.studio/"
		},
		{
			"id": "project_ch_holidays_campaign",
			"type": "Project",
			"name": "CH - Holidays campaign",
			"date": "2025-12-18",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website"
			],
			"url": "https://www.carolinaherrera.com/"
		},
		{
			"id": "client_carolina_herrera",
			"type": "Client",
			"name": "Carolina Herrera"
		},
		{
			"id": "project_lvmh_prize_26",
			"type": "Project",
			"name": "LVMH - Prize '26",
			"date": "2026-02-16",
			"relevance": 1,
			"types": [
				"website"
			],
			"url": "https://www.lvmhprize.com"
		},
		{
			"id": "project_lv_watch_prize_26",
			"type": "Project",
			"name": "LV - Watch Prize '26",
			"date": "2026-03-01",
			"relevance": 1,
			"types": [
				"website"
			],
			"url": "https://www.louisvuittonwatchprize.com/"
		},
		{
			"id": "project_l_enigma_de_la_mostra",
			"type": "Project",
			"name": "L'Enigma de la mostra",
			"date": "2026-04-23",
			"relevance": 0.5,
			"roles": [
				"frontend developer"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/impostor/",
			"inProduction": true
		},
		{
			"id": "project_l_avenir",
			"type": "Project",
			"name": "L'Avenir",
			"date": "2026-05-09",
			"relevance": 1,
			"roles": [
				"creative",
				"frontend developer",
				"game designer"
			],
			"types": [
				"streetscape web app"
			],
			"url": "https://estrambotic.cat/avenir",
			"inProduction": true
		},
		{
			"id": "project_mahjong_stars",
			"type": "Project",
			"name": "Mahjong Stars",
			"date": "2026-06-01",
			"relevance": 1,
			"roles": [
				"frontend developer"
			],
			"types": [
				"website",
				"game"
			],
			"url": "https://www.mahjongstars.com/",
			"inProduction": true
		},
		{
			"id": "client_mahjong_stars",
			"type": "Client",
			"name": "Mahjong Stars"
		},
		{
			"id": "event_primaria_1986",
			"type": "Event",
			"name": "Primària",
			"category": "career",
			"role": "Student",
			"start": "1986-09-15",
			"end": "1996-06-20",
			"relevance": 0.18
		},
		{
			"id": "organization_c_p_samuntada",
			"type": "Organization",
			"name": "C.P. Samuntada",
			"category": "school",
			"url": "https://escola-samuntada.wixsite.com/escola-samuntada",
			"city": "Sabadell"
		},
		{
			"id": "event_comic_1994",
			"type": "Event",
			"name": "Còmic",
			"category": "career",
			"role": "Student",
			"start": "1994-10-01",
			"end": "1997-10-01",
			"relevance": 0.5
		},
		{
			"id": "organization_escola_joso",
			"type": "Organization",
			"name": "Escola Joso",
			"category": "school",
			"url": "https://jososabadell.cat",
			"city": "Sabadell"
		},
		{
			"id": "event_eso_1996",
			"type": "Event",
			"name": "ESO",
			"category": "career",
			"role": "Student",
			"start": "1996-09-15",
			"end": "1998-09-15",
			"relevance": 0.18
		},
		{
			"id": "organization_escola_industrial",
			"type": "Organization",
			"name": "Escola Industrial",
			"category": "school",
			"url": "https://www.escolaindustrial.org",
			"city": "Sabadell"
		},
		{
			"id": "event_batchillerat_artistic_1998",
			"type": "Event",
			"name": "Batchillerat Artístic",
			"category": "career",
			"role": "Student",
			"start": "1998-09-15",
			"end": "2000-06-15",
			"relevance": 0.5
		},
		{
			"id": "organization_jaume_viladoms",
			"type": "Organization",
			"name": "Jaume Viladoms",
			"category": "school",
			"url": "https://www.jviladoms.cat/ca",
			"city": "Sabadell"
		},
		{
			"id": "event_grau_superior_en_grafica_publicitaria_2000",
			"type": "Event",
			"name": "Grau superior en gráfica publicitaria",
			"category": "career",
			"role": "Student",
			"start": "2000-09-15",
			"end": "2002-06-15",
			"relevance": 1
		},
		{
			"id": "organization_escola_illa",
			"type": "Organization",
			"name": "Escola Illa",
			"category": "school",
			"city": "Sabadell"
		},
		{
			"id": "event_animation_with_flash_2001",
			"type": "Event",
			"name": "Animation with Flash",
			"category": "career",
			"role": "Student",
			"start": "2001-07-01",
			"end": "2001-08-01",
			"info": "Cursillo de animación en Flash impartido por Xnografics",
			"relevance": 0.18
		},
		{
			"id": "event_first_design_job_2001",
			"type": "Event",
			"name": "First design job",
			"category": "career",
			"role": "Designer / Web developer",
			"start": "2001-08-15",
			"end": "2003-01-01",
			"info": "I started my first professional Flash sites here",
			"relevance": 0.3
		},
		{
			"id": "event_grau_superior_en_il_lustracio_2002",
			"type": "Event",
			"name": "Grau superior en il·lustració",
			"category": "career",
			"role": "Student",
			"start": "2002-09-15",
			"end": "2003-12-01",
			"info": "I leave at the middle of second year",
			"relevance": 1
		},
		{
			"id": "event_i_join_cocobongo_2003",
			"type": "Event",
			"name": "I join CocoBongo",
			"category": "career",
			"role": "Developer",
			"start": "2003-03-01",
			"relevance": 0.5
		},
		{
			"id": "event_adg_laus_2006",
			"type": "Event",
			"name": "ADG-Laus",
			"category": "career",
			"role": "Jury member",
			"start": "2006-03-10",
			"end": "2010-03-10",
			"relevance": 1
		},
		{
			"id": "organization_adg_laus",
			"type": "Organization",
			"name": "ADG-Laus",
			"category": "institution",
			"url": "http://www.adg-fad.org/es/laus/premios",
			"city": "Barcelona"
		},
		{
			"id": "event_postgrau_disseny_interactiu_2009",
			"type": "Event",
			"name": "Postgrau disseny interactiu",
			"category": "career",
			"role": "Teacher",
			"start": "2009-01-01",
			"end": "2009-05-01",
			"relevance": 1
		},
		{
			"id": "organization_elisava",
			"type": "Organization",
			"name": "Elisava",
			"category": "school",
			"url": "http://www.elisava.net",
			"city": "Barcelona"
		},
		{
			"id": "event_postgrau_disseny_interactiu_2010",
			"type": "Event",
			"name": "Postgrau disseny interactiu",
			"category": "career",
			"role": "Teacher",
			"start": "2010-01-01",
			"end": "2010-05-01",
			"relevance": 1
		},
		{
			"id": "event_after_effects_expresiones_para_motion_graphics_2017",
			"type": "Event",
			"name": "After Effects, expresiones para motion graphics",
			"category": "career",
			"role": "Student",
			"start": "2017-05-04",
			"relevance": 0.1
		},
		{
			"id": "organization_domestika",
			"type": "Organization",
			"name": "Domestika",
			"category": "school",
			"url": "https://www.domestika.org/es/courses/39-after-effects-expresiones-para-motion-graphics"
		},
		{
			"id": "event_fwa_2020",
			"type": "Event",
			"name": "FWA",
			"category": "career",
			"role": "Jury member",
			"start": "2020-02-20",
			"relevance": 1
		},
		{
			"id": "organization_fwa",
			"type": "Organization",
			"name": "FWA",
			"category": "institution",
			"url": "https://thefwa.com/about/jury"
		},
		{
			"id": "event_visualizacion_de_datos_para_proyectos_editoriales_2021",
			"type": "Event",
			"name": "Visualización de datos para proyectos editoriales",
			"category": "career",
			"role": "Student",
			"start": "2021-01-12",
			"relevance": 0.12
		},
		{
			"id": "event_visualizacion_de_datos_y_diseno_de_la_informacion_crea_un_modelo_visual_2022",
			"type": "Event",
			"name": "Visualización de datos y diseño de la información: crea un modelo visual",
			"category": "career",
			"role": "Student",
			"start": "2022-01-06",
			"relevance": 0.12
		},
		{
			"id": "event_curso_de_infografia_periodstica_jaime_serra_2022",
			"type": "Event",
			"name": "Curso de infografía periodstica - Jaime Serra",
			"category": "career",
			"role": "Student",
			"start": "2022-06-22",
			"relevance": 0.1
		},
		{
			"id": "organization_instituto_de_formacion_de_rtve",
			"type": "Organization",
			"name": "Instituto de Formación de RTVE",
			"category": "school",
			"url": "https://www.archivosjaimeserra.com/curso-infografa-periodstica-rtve"
		},
		{
			"id": "event_shader_prototyping_2022",
			"type": "Event",
			"name": "Shader prototyping",
			"category": "career",
			"role": "Student",
			"start": "2022-10-25",
			"info": "https://maximalexpression.notion.site/COURSE-HOME-PAGE-SHADER-PROTOTYPING-1024b0bb72794f4c967b64546f2f93b5",
			"relevance": 0.12
		},
		{
			"id": "organization_patricio_gonzalez_vivo",
			"type": "Organization",
			"name": "Patricio González Vivo",
			"category": "school",
			"url": "https://patriciogonzalezvivo.com"
		},
		{
			"id": "event_i_join_b_reel_2023",
			"type": "Event",
			"name": "I join B-Reel",
			"category": "career",
			"role": "Creative developer",
			"start": "2023-02-13",
			"info": "I join B-Reel as Creative developer",
			"relevance": 1
		},
		{
			"id": "event_campus_crea_2005",
			"type": "Event",
			"name": "Campus Crea",
			"category": "talk",
			"date": "2005-07-01",
			"venue": "Campus Party",
			"city": "Valencia",
			"relevance": 1
		},
		{
			"id": "event_bcn_mad_festival_2007",
			"type": "Event",
			"name": "BCN MAD-Festival",
			"category": "talk",
			"date": "2007-11-01",
			"venue": "Punt Multimèdia",
			"city": "Barcelona",
			"relevance": 0.9
		},
		{
			"id": "event_bcn_visual_sound_2008",
			"type": "Event",
			"name": "BCN Visual Sound",
			"category": "talk",
			"date": "2008-02-01",
			"venue": "Golferichs",
			"city": "Barcelona",
			"relevance": 0.9
		},
		{
			"id": "event_tertulia_interactiva_5_1_2010",
			"type": "Event",
			"name": "Tertulia Interactiva: 5+1",
			"category": "talk",
			"date": "2010-06-29",
			"venue": "Club de Creativos (DHUB)",
			"city": "Barcelona",
			"url": "https://vimeo.com/12942929",
			"relevance": 1
		},
		{
			"id": "event_bims_2012",
			"type": "Event",
			"name": "BIMS",
			"category": "talk",
			"date": "2012-03-27",
			"venue": "Biblioteca Vapor Badia (org. Escola Illa)",
			"city": "Sabadell",
			"url": "http://illaillu.blogspot.com.es/2012/03/conferencia-de-cocobongo.html",
			"relevance": 0.9
		},
		{
			"id": "event_dia_mundial_del_disseny_grafic_2018",
			"type": "Event",
			"name": "Dia Mundial del Disseny Gràfic",
			"category": "talk",
			"date": "2018-05-04",
			"venue": "EADT",
			"city": "Tarragona",
			"url": "https://www.dipta.cat/eadt/DMDG2018",
			"relevance": 1
		},
		{
			"id": "event_b_reel_x_brut_2023",
			"type": "Event",
			"name": "B-Reel x Brut!",
			"category": "talk",
			"date": "2023-10-06",
			"venue": "Brut!",
			"city": "Barcelona",
			"url": "https://brut.lol/",
			"relevance": 1
		},
		{
			"id": "event_cocobongo_s_creation_2002",
			"type": "Event",
			"name": "CocoBongo's creation",
			"category": "milestone",
			"date": "2002-09-20",
			"relevance": 1
		},
		{
			"id": "event_moves_to_la_nau_2002",
			"type": "Event",
			"name": "Moves to La Nau",
			"category": "milestone",
			"date": "2002-11-01",
			"relevance": 0.15
		},
		{
			"id": "event_alfred_leaves_the_team_2003",
			"type": "Event",
			"name": "Alfred leaves the team",
			"category": "milestone",
			"date": "2003-07-01",
			"relevance": 0.02
		},
		{
			"id": "event_moves_to_via_massague_2003",
			"type": "Event",
			"name": "Moves to Via Massaguè",
			"category": "milestone",
			"date": "2003-09-01",
			"relevance": 0.12
		},
		{
			"id": "event_we_are_sponsored_by_cdmon_2004",
			"type": "Event",
			"name": "We are sponsored by Cdmon",
			"category": "milestone",
			"date": "2004-11-14",
			"url": "https://www.cdmon.com",
			"relevance": 0.1
		},
		{
			"id": "event_oriol_joins_the_team_2005",
			"type": "Event",
			"name": "Oriol joins the team",
			"category": "milestone",
			"date": "2005-02-10",
			"relevance": 0.05
		},
		{
			"id": "event_chuso_leaves_the_team_2005",
			"type": "Event",
			"name": "Chuso leaves the team",
			"category": "milestone",
			"date": "2005-03-01",
			"relevance": 0.05
		},
		{
			"id": "event_select_c_ed_index_book_2005",
			"type": "Event",
			"name": "Select C, Ed. Index Book",
			"category": "milestone",
			"date": "2005-04-20",
			"url": "https://web.archive.org/web/20070307140045/http://www.indexbook.es/libro.php?112",
			"relevance": 1
		},
		{
			"id": "event_h_magazine_2005",
			"type": "Event",
			"name": "H-magazine",
			"category": "milestone",
			"date": "2005-12-13",
			"relevance": 0.14
		},
		{
			"id": "event_select_d_ed_index_book_2006",
			"type": "Event",
			"name": "Select D, Ed. Index Book",
			"category": "milestone",
			"date": "2006-02-23",
			"url": "https://web.archive.org/web/20070307140023/http://www.indexbook.es/libro.php?243",
			"relevance": 1
		},
		{
			"id": "event_fallen_angel_appears_in_cuarto_milenio_2006",
			"type": "Event",
			"name": "Fallen Angel appears in Cuarto Milenio",
			"category": "milestone",
			"date": "2006-09-01",
			"url": "https://www.youtube.com/watch?v=Llq_y4XRyqo",
			"relevance": 0.1
		},
		{
			"id": "event_become_s_l_2007",
			"type": "Event",
			"name": "Become S.L.",
			"category": "milestone",
			"date": "2007-04-01",
			"relevance": 0.1
		},
		{
			"id": "event_fallen_angel_inspires_rec_film_2007",
			"type": "Event",
			"name": "Fallen Angel inspires Rec Film",
			"category": "milestone",
			"date": "2007-08-23",
			"relevance": 1
		},
		{
			"id": "event_moves_to_angel_guimera_2007",
			"type": "Event",
			"name": "Moves to Àngel Guimerà",
			"category": "milestone",
			"date": "2007-11-26",
			"relevance": 0.12
		},
		{
			"id": "event_ex7_interview_2008",
			"type": "Event",
			"name": "EX7 interview",
			"category": "milestone",
			"date": "2008-08-02",
			"url": "https://web.archive.org/web/20100403040601/http://www.ex7.org/entrevistas/cocobongo.html",
			"relevance": 0.08
		},
		{
			"id": "event_molina_s_yeti_2009",
			"type": "Event",
			"name": "Molina's Yeti",
			"category": "milestone",
			"date": "2009-03-10",
			"relevance": 0.08
		},
		{
			"id": "event_select_i_ed_index_book_2010",
			"type": "Event",
			"name": "Select I, Ed. Index Book",
			"category": "milestone",
			"date": "2010-11-04",
			"url": "https://web.archive.org/web/20100623061652/http://www.indexbook.es/libro.php?1084",
			"relevance": 1
		},
		{
			"id": "event_move_to_la_rambla_2011",
			"type": "Event",
			"name": "Move to La Rambla",
			"category": "milestone",
			"date": "2011-11-27",
			"relevance": 0.12
		},
		{
			"id": "event_psycho_images_appears_in_chilean_tv_show_2012",
			"type": "Event",
			"name": "Psycho-images appears in Chilean TV show",
			"category": "milestone",
			"date": "2012-11-02",
			"relevance": 0.1
		},
		{
			"id": "event_select_k_ed_index_book_2012",
			"type": "Event",
			"name": "Select K, Ed. Index Book",
			"category": "milestone",
			"date": "2012-11-15",
			"url": "https://www.youtube.com/watch?v=10m-RdlVFf4",
			"relevance": 0.3
		},
		{
			"id": "event_psycho_images_appears_in_chilean_tv_show_2013",
			"type": "Event",
			"name": "Psycho-images appears in Chilean TV show",
			"category": "milestone",
			"date": "2013-04-01",
			"url": "https://www.youtube.com/watch?v=VbweB1YTXBU&t=49",
			"relevance": 0.07
		},
		{
			"id": "event_become_s_c_p_2014",
			"type": "Event",
			"name": "Become S.C.P.",
			"category": "milestone",
			"date": "2014-01-01",
			"relevance": 0.1
		},
		{
			"id": "event_move_to_eix_macia_2014",
			"type": "Event",
			"name": "Move to Eix Macià",
			"category": "milestone",
			"date": "2014-11-08",
			"relevance": 0.1
		},
		{
			"id": "event_moves_to_les_valls_2017",
			"type": "Event",
			"name": "Moves to Les Valls",
			"category": "milestone",
			"date": "2017-01-22",
			"relevance": 0.12
		},
		{
			"id": "event_installing_farao_in_caixa_forum_barcelona_2018",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Barcelona",
			"category": "milestone",
			"date": "2018-06-08",
			"url": "https://caixaforum.org/es/barcelona/p/faraon-rey-de-egipto_a8083206",
			"relevance": 0.7
		},
		{
			"id": "event_installing_farao_in_caixa_forum_madrid_2018",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Madrid",
			"category": "milestone",
			"date": "2018-10-17",
			"url": "https://caixaforum.org/es/madrid/p/faraon-rey-de-egipto_a930863",
			"relevance": 0.3
		},
		{
			"id": "event_ruth_leaves_the_team_2018",
			"type": "Event",
			"name": "Ruth leaves the team",
			"category": "milestone",
			"date": "2018-11-01",
			"relevance": 0.02
		},
		{
			"id": "event_installing_farao_in_caixa_forum_girona_2019",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Girona",
			"category": "milestone",
			"date": "2019-02-20",
			"url": "https://caixaforum.org/es/girona/p/faraon-rey-de-egipto_a974612",
			"relevance": 0.1
		},
		{
			"id": "event_installing_farao_in_caixa_forum_sevilla_2019",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Sevilla",
			"category": "milestone",
			"date": "2019-09-27",
			"url": "https://caixaforum.org/es/sevilla/p/faraon-rey-de-egipto_a872385",
			"relevance": 0.1
		},
		{
			"id": "event_installing_farao_in_caixa_forum_tarragona_2020",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Tarragona",
			"category": "milestone",
			"date": "2020-06-01",
			"url": "https://caixaforum.org/es/tarragona/p/faraon-rey-de-egipto_a964829",
			"relevance": 0.1
		},
		{
			"id": "event_installing_farao_in_caixa_forum_zaragoza_2021",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Zaragoza",
			"category": "milestone",
			"date": "2021-09-16",
			"url": "https://caixaforum.org/es/zaragoza/p/faraon-rey-de-egipto_a29669925",
			"relevance": 0.1
		},
		{
			"id": "event_installing_farao_in_caixa_forum_palma_de_mallorca_2022",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Palma de Mallorca",
			"category": "milestone",
			"date": "2022-02-11",
			"url": "https://caixaforum.org/es/palma/p/faraon-rey-de-egipto_a29690360",
			"relevance": 0.1
		},
		{
			"id": "event_installing_farao_in_caixa_forum_valencia_2022",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Valencia",
			"category": "milestone",
			"date": "2022-06-22",
			"url": "https://caixaforum.org/es/valencia/p/faraon-rey-de-egipto_a65129625",
			"relevance": 0.1
		},
		{
			"id": "event_installing_farao_in_caixa_forum_lleida_2023",
			"type": "Event",
			"name": "Installing Faraò in Caixa Forum Lleida",
			"category": "milestone",
			"date": "2023-03-29",
			"url": "https://caixaforum.org/es/lleida/p/faraon-rey-de-egipto_a86592326",
			"relevance": 0.1
		},
		{
			"id": "event_techativity_2023",
			"type": "Event",
			"name": "Techativity",
			"category": "milestone",
			"date": "2023-08-04",
			"relevance": 0.1
		},
		{
			"id": "event_b_reel_becames_feelslike_2023",
			"type": "Event",
			"name": "B-Reel becames FeelsLike",
			"category": "milestone",
			"date": "2023-10-11",
			"url": "https://feelslike.studio",
			"relevance": 0.9
		},
		{
			"id": "award_smiling_face_silver_2003",
			"type": "Award",
			"name": "Smiling Face",
			"level": "Silver",
			"date": "2003-06-19",
			"relevance": 1
		},
		{
			"id": "award_smiling_face_gold_2003",
			"type": "Award",
			"name": "Smiling Face",
			"level": "Gold",
			"date": "2003-06-20",
			"relevance": 1
		},
		{
			"id": "award_festival_el_sol_shortlist_2010",
			"type": "Award",
			"name": "Festival el Sol",
			"level": "Shortlist",
			"date": "2010-06-09",
			"url": "https://elsolfestival.com/edic-anteriores/palmares",
			"relevance": 0.8
		},
		{
			"id": "award_sol_silver_2012",
			"type": "Award",
			"name": "Sol",
			"level": "Silver",
			"date": "2012-09-19",
			"url": "https://elsolfestival.com",
			"relevance": 0.8
		},
		{
			"id": "award_laus_silver_2013",
			"type": "Award",
			"name": "Laus",
			"level": "Silver",
			"date": "2013-06-25",
			"url": "http://www.adg-fad.org/es/laus/premios",
			"relevance": 1
		},
		{
			"id": "award_premios_eficacia_comunicacion_comercial_gold_2015",
			"type": "Award",
			"name": "Premios Eficacia - Comunicación Comercial",
			"level": "Gold",
			"date": "2015-01-10",
			"url": "https://www.premioseficacia.com/ediciones_anteriores/2015/palmares15.pdf",
			"relevance": 0.3
		},
		{
			"id": "award_css_nectar_sotd_2015",
			"type": "Award",
			"name": "CSS Nectar",
			"level": "SOTD",
			"date": "2015-07-01",
			"url": "https://cssnectar.com/css-gallery-inspiration/cocobongo-artworks",
			"relevance": 0.1
		},
		{
			"id": "award_french_design_sotd_2015",
			"type": "Award",
			"name": "French Design",
			"level": "SOTD",
			"date": "2015-07-02",
			"url": "https://frenchdesignindex.com",
			"relevance": 0.03
		},
		{
			"id": "award_unmatchedstyle_sotd_2015",
			"type": "Award",
			"name": "Unmatchedstyle",
			"level": "SOTD",
			"date": "2015-07-03",
			"url": "https://unmatchedstyle.com/gallery/cocobongo.php",
			"relevance": 0.03
		},
		{
			"id": "award_design_licks_sotd_2015",
			"type": "Award",
			"name": "Design Licks",
			"level": "SOTD",
			"date": "2015-07-14",
			"url": "https://designlicks.com/website/cocobongo-22325",
			"relevance": 0.03
		},
		{
			"id": "award_css_reel_sotd_2015",
			"type": "Award",
			"name": "CSS Reel",
			"level": "SOTD",
			"date": "2015-07-18",
			"relevance": 0.05
		},
		{
			"id": "award_premios_eficacia_reconocimiento_especial_investigacion_gold_2015",
			"type": "Award",
			"name": "Premios Eficacia - Reconocimiento Especial Investigación",
			"level": "Gold",
			"date": "2015-10-11",
			"url": "https://www.premioseficacia.com/ediciones_anteriores/2015/palmares15.pdf",
			"relevance": 0.2
		},
		{
			"id": "award_premios_eficacia_comunicacion_comercial_gold_2016",
			"type": "Award",
			"name": "Premios Eficacia - Comunicación Comercial",
			"level": "Gold",
			"date": "2016-10-01",
			"url": "https://www.premioseficacia.com/ediciones_anteriores/2016/palmares16.pdf",
			"relevance": 0.1
		},
		{
			"id": "award_fwa_sotd_2016",
			"type": "Award",
			"name": "FWA",
			"level": "SOTD",
			"date": "2016-12-05",
			"url": "https://thefwa.com/cases/fallen-angel-10th",
			"relevance": 1
		},
		{
			"id": "award_css_awards_sotd_2016",
			"type": "Award",
			"name": "CSS Awards",
			"level": "SOTD",
			"date": "2016-12-13",
			"url": "https://www.cssawards.net/website/fallen-angel-10th",
			"relevance": 0.18
		},
		{
			"id": "award_laus_bronze_2017",
			"type": "Award",
			"name": "Laus",
			"level": "Bronze",
			"date": "2017-06-06",
			"url": "https://www.adg-fad.org/es/laus/proyecto/fallen-angel-10th",
			"relevance": 1
		},
		{
			"id": "award_fwa_sotd_2018",
			"type": "Award",
			"name": "FWA",
			"level": "SOTD",
			"date": "2018-12-17",
			"url": "https://thefwa.com/cases/ugly-sweater-generator",
			"relevance": 1
		},
		{
			"id": "award_awwwards_sotd_2018",
			"type": "Award",
			"name": "Awwwards",
			"level": "SOTD",
			"date": "2018-12-25",
			"url": "https://www.awwwards.com/sites/ugly-christmas-sweater",
			"relevance": 1
		}
	],
	"edges": [
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_photoshop",
			"date": "1999-06-01",
			"relevance": 0.04
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_macromedia_freehand",
			"date": "2000-10-01",
			"relevance": 0.04
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_macromedia_adobe_flash",
			"date": "2001-07-01",
			"relevance": 0.8
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_actionscript",
			"date": "2002-01-01",
			"relevance": 0.35
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_dreamweaver",
			"date": "2002-04-01",
			"relevance": 0.04
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_html",
			"date": "2002-04-08",
			"relevance": 0.36
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_after_effects",
			"date": "2002-09-19",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_illustrator",
			"date": "2003-03-01",
			"relevance": 0.04
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_php",
			"date": "2004-02-01",
			"relevance": 0.08
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_mysql",
			"date": "2004-03-01",
			"relevance": 0.01
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_subethaedit",
			"date": "2004-03-04",
			"relevance": 0.001
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_css",
			"date": "2004-05-01",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_js",
			"date": "2006-02-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_textmate",
			"date": "2006-06-01",
			"relevance": 0.001
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_mootools",
			"date": "2007-09-01",
			"relevance": 0.3
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_wordpress",
			"date": "2008-07-01",
			"relevance": 0.6
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_gsap",
			"date": "2008-08-07",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_papervision3d",
			"date": "2009-02-01",
			"relevance": 0.9
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_pixel_bender",
			"date": "2009-09-01",
			"relevance": 0.75
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_phpstorm",
			"date": "2009-10-01",
			"relevance": 0.001
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_jquery",
			"date": "2011-09-01",
			"relevance": 0.4
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_sublime_text",
			"date": "2011-10-01",
			"relevance": 0.001
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_air",
			"date": "2012-04-01",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_arduino",
			"date": "2013-01-01",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_drupal",
			"date": "2013-04-01",
			"relevance": 0.6
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_less",
			"date": "2014-07-01",
			"relevance": 0.3
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_d3",
			"date": "2014-10-01",
			"relevance": 0.9
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_sass",
			"date": "2014-11-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_grunt",
			"date": "2015-01-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_git",
			"date": "2015-01-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_three_js",
			"date": "2015-02-05",
			"relevance": 0.94
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_webgl",
			"date": "2015-08-01",
			"relevance": 0.75
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_cordova",
			"date": "2015-12-01",
			"relevance": 0.5
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_visual_studio_code",
			"date": "2016-01-01",
			"relevance": 0.001
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_pug",
			"date": "2016-06-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_glsl",
			"date": "2016-07-01",
			"relevance": 0.95
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_stylus",
			"date": "2016-07-01",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_pixi_js",
			"date": "2016-08-01",
			"relevance": 0.9
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_gulp",
			"date": "2017-01-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_lightroom",
			"date": "2017-03-01",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_node_js",
			"date": "2017-07-01",
			"relevance": 0.5
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_adobe_xd",
			"date": "2017-07-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_lottie",
			"date": "2017-08-15",
			"relevance": 0.65
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_mapbox",
			"date": "2017-12-01",
			"relevance": 0.8
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_electron",
			"date": "2018-01-20",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_anime_js",
			"date": "2018-06-06",
			"relevance": 0.5
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_matter_js",
			"date": "2018-10-01",
			"relevance": 0.92
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_vue",
			"date": "2018-10-01",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_spark_ar",
			"date": "2019-03-01",
			"relevance": 0.95
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_graphql",
			"date": "2019-05-01",
			"relevance": 0.8
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_react",
			"date": "2019-06-01",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_invision",
			"date": "2019-06-29",
			"relevance": 0.08
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_ffmpeg",
			"date": "2019-09-10",
			"relevance": 0.78
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_figma",
			"date": "2019-09-12",
			"relevance": 0.35
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_webpack",
			"date": "2019-11-01",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_c",
			"date": "2019-12-01",
			"relevance": 0.5
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_unity",
			"date": "2019-12-01",
			"relevance": 0.92
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_svelte",
			"date": "2019-12-12",
			"relevance": 0.99
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_lens_studio",
			"date": "2020-02-12",
			"relevance": 0.95
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_strapi",
			"date": "2020-05-01",
			"relevance": 0.9
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_johnny_five",
			"date": "2020-06-03",
			"relevance": 0.97
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_esbuild",
			"date": "2021-01-12",
			"relevance": 0.15
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_theatre_js",
			"date": "2021-10-04",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_vite",
			"date": "2021-11-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_hubspot",
			"date": "2022-06-10",
			"relevance": 0.7
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_blender",
			"date": "2023-04-26",
			"relevance": 0.85
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_tailwind",
			"date": "2024-01-01",
			"relevance": 0.2
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_dato_cms",
			"date": "2024-04-01",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_cursor",
			"date": "2024-09-22",
			"relevance": 0.001
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_google_antigravity",
			"date": "2025-11-03",
			"relevance": 0.1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_claude",
			"date": "2026-02-01",
			"relevance": 1
		},
		{
			"type": "KNOWS_SKILL",
			"from": "person_andros_guirado",
			"to": "skill_microsoft_azure",
			"date": "2026-02-28",
			"relevance": 0.2
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_in_line",
			"date": "2001-07-10",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_in_line",
			"to": "organization_freelance"
		},
		{
			"type": "USED_SKILL",
			"from": "project_in_line",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_in_line",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_in_line",
			"to": "skill_macromedia_freehand"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_prensas",
			"date": "2002-07-01",
			"relevance": 0.07
		},
		{
			"type": "BUILT_AT",
			"from": "project_prensas",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_prensas",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "USED_SKILL",
			"from": "project_prensas",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_prensas",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_prensas",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_prensas",
			"to": "skill_dreamweaver"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_chairs_weddings",
			"date": "2002-10-01",
			"relevance": 0.07
		},
		{
			"type": "BUILT_AT",
			"from": "project_chairs_weddings",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_chairs_weddings",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "USED_SKILL",
			"from": "project_chairs_weddings",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_chairs_weddings",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_chairs_weddings",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_chairs_weddings",
			"to": "skill_dreamweaver"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_beetle_dream",
			"date": "2003-04-30",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_beetle_dream",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_beetle_dream",
			"to": "client_volkswagen"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_beetle_dream",
			"to": "organization_bcd"
		},
		{
			"type": "USED_SKILL",
			"from": "project_beetle_dream",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cocobongo_s_site_03",
			"date": "2003-07-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cocobongo_s_site_03",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cocobongo_s_site_03",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_03",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_03",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fec_reus_04",
			"date": "2004-01-06",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fec_reus_04",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fec_reus_04",
			"to": "client_pocc"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fec_reus_04",
			"to": "organization_valdrada"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_04",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_04",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_04",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mates_shoes",
			"date": "2004-04-05",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mates_shoes",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mates_shoes",
			"to": "client_mates_shoes"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mates_shoes",
			"to": "organization_valdrada"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mates_shoes",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mates_shoes",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_furkinder_website",
			"date": "2004-06-20",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_furkinder_website",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_furkinder_website",
			"to": "client_furkinder"
		},
		{
			"type": "USED_SKILL",
			"from": "project_furkinder_website",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_furkinder_website",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_furkinder_website",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_furkinder_website",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_furkinder_website",
			"to": "skill_subethaedit"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_52",
			"date": "2004-09-15",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_52",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_52",
			"to": "client_localia_tv"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_52",
			"to": "organization_xnografics"
		},
		{
			"type": "USED_SKILL",
			"from": "project_52",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_52",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_52",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_habit_attractions",
			"date": "2004-10-15",
			"relevance": 0.4
		},
		{
			"type": "BUILT_AT",
			"from": "project_habit_attractions",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_habit_attractions",
			"to": "client_habit_fashion"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_habit_attractions",
			"to": "organization_xnografics"
		},
		{
			"type": "USED_SKILL",
			"from": "project_habit_attractions",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_habit_attractions",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fec_reus_05",
			"date": "2005-02-06",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fec_reus_05",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fec_reus_05",
			"to": "client_pocc"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fec_reus_05",
			"to": "organization_valdrada"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_05",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_05",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_05",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_monlleure",
			"date": "2005-03-17",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_monlleure",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_monlleure",
			"to": "client_monlleure_associacio"
		},
		{
			"type": "USED_SKILL",
			"from": "project_monlleure",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_monlleure",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_kane_nyc",
			"date": "2005-04-09",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_kane_nyc",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_kane_nyc",
			"to": "client_kane_nyc"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_kane_nyc",
			"to": "organization_vasava"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_kane_nyc",
			"to": "organization_seisgrados"
		},
		{
			"type": "USED_SKILL",
			"from": "project_kane_nyc",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_kane_nyc",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_kane_nyc",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_kane_nyc",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "USED_SKILL",
			"from": "project_kane_nyc",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_kane_nyc",
			"to": "skill_subethaedit"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cocobongo_s_site_05",
			"date": "2005-06-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cocobongo_s_site_05",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cocobongo_s_site_05",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_05",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_05",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_05",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_05",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_tekken_5_ironfist_tournament",
			"date": "2005-06-29",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "client_sony_playstation"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "organization_xnografics"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "organization_seisgrados"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tekken_5_ironfist_tournament",
			"to": "skill_subethaedit"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_impladent",
			"date": "2005-09-20",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_impladent",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_impladent",
			"to": "client_impladent"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_impladent",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "USED_SKILL",
			"from": "project_impladent",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_impladent",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_impladent",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_guerrero_partners",
			"date": "2005-12-01",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_guerrero_partners",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_guerrero_partners",
			"to": "client_guerrero_partners"
		},
		{
			"type": "USED_SKILL",
			"from": "project_guerrero_partners",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_guerrero_partners",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_sagrera_website",
			"date": "2006-02-05",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_sagrera_website",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_sagrera_website",
			"to": "client_sagrera"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_sagrera_website",
			"to": "organization_toormix"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sagrera_website",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sagrera_website",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sagrera_website",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sagrera_website",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sagrera_website",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sagrera_website",
			"to": "skill_subethaedit"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fec_reus_06",
			"date": "2006-03-01",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_fec_reus_06",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fec_reus_06",
			"to": "client_pocc"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fec_reus_06",
			"to": "organization_valdrada"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_06",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_06",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_06",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_john_smith_sports",
			"date": "2006-03-07",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_john_smith_sports",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_john_smith_sports",
			"to": "client_john_smith"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_john_smith_sports",
			"to": "organization_xnografics"
		},
		{
			"type": "USED_SKILL",
			"from": "project_john_smith_sports",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_john_smith_sports",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_concurso_de_mates",
			"date": "2006-03-20",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_concurso_de_mates",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_concurso_de_mates",
			"to": "client_john_smith"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_concurso_de_mates",
			"to": "organization_xnografics"
		},
		{
			"type": "USED_SKILL",
			"from": "project_concurso_de_mates",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_concurso_de_mates",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_concurso_de_mates",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_concurso_de_mates",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_concurso_de_mates",
			"to": "skill_subethaedit"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cyberdogs",
			"date": "2006-05-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cyberdogs",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cyberdogs",
			"to": "client_cdmon"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cyberdogs",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_the_misty_blue_se_infiel",
			"date": "2006-05-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_the_misty_blue_se_infiel",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_the_misty_blue_se_infiel",
			"to": "client_nordic_mist"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_the_misty_blue_se_infiel",
			"to": "organization_vasava"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_the_misty_blue_se_infiel",
			"to": "organization_seisgrados"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_misty_blue_se_infiel",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_misty_blue_se_infiel",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_misty_blue_se_infiel",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fallen_angel",
			"date": "2006-06-06",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fallen_angel",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fallen_angel",
			"to": "client_diesel"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_phlus",
			"date": "2006-07-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_phlus",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_phlus",
			"to": "client_plataforma_logistica_huesca_sur"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_phlus",
			"to": "organization_bassat_ogilvy"
		},
		{
			"type": "USED_SKILL",
			"from": "project_phlus",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_phlus",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_eddie_saeta",
			"date": "2006-07-19",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_eddie_saeta",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_eddie_saeta",
			"to": "client_eddie_saeta"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eddie_saeta",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eddie_saeta",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eddie_saeta",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eddie_saeta",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eddie_saeta",
			"to": "skill_subethaedit"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_un_lloc_un_mon",
			"date": "2006-10-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_un_lloc_un_mon",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_un_lloc_un_mon",
			"to": "client_un_lloc_un_mon"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_un_lloc_un_mon",
			"to": "organization_david_resplandi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_lloc_un_mon",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_lloc_un_mon",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_gloria_calsina_website",
			"date": "2006-11-26",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_gloria_calsina_website",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_gloria_calsina_website",
			"to": "client_dra_gloria_calsina"
		},
		{
			"type": "USED_SKILL",
			"from": "project_gloria_calsina_website",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_gloria_calsina_website",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_gloria_calsina_website",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_gloria_calsina_website",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_gloria_calsina_website",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_gloria_calsina_website",
			"to": "skill_textmate"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_siluetes_nadal",
			"date": "2006-12-24",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_siluetes_nadal",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_siluetes_nadal",
			"to": "client_hotel_ommm"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_siluetes_nadal",
			"to": "organization_run_design"
		},
		{
			"type": "USED_SKILL",
			"from": "project_siluetes_nadal",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_clinica_birbe_website",
			"date": "2007-01-23",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_clinica_birbe_website",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_clinica_birbe_website",
			"to": "client_clinica_birbe"
		},
		{
			"type": "USED_SKILL",
			"from": "project_clinica_birbe_website",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_clinica_birbe_website",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_clinica_birbe_website",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_clinica_birbe_website",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_clinica_birbe_website",
			"to": "skill_textmate"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fallen_angel_making_of",
			"date": "2007-02-02",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fallen_angel_making_of",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fallen_angel_making_of",
			"to": "client_diesel"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_making_of",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_making_of",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_making_of",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_making_of",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fec_reus_07",
			"date": "2007-02-06",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fec_reus_07",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fec_reus_07",
			"to": "client_pocc"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fec_reus_07",
			"to": "organization_valdrada"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_07",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_07",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fec_reus_07",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_ad180",
			"date": "2007-02-26",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_ad180",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_ad180",
			"to": "client_ad180"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_ad180",
			"to": "organization_pavlov"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ad180",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ad180",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_passat",
			"date": "2007-03-07",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_passat",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_passat",
			"to": "client_volkswagen"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_passat",
			"to": "organization_tribal_ddb"
		},
		{
			"type": "USED_SKILL",
			"from": "project_passat",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_passat",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cocobongo_s_site_07",
			"date": "2007-04-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cocobongo_s_site_07",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cocobongo_s_site_07",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_07",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_07",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_07",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_07",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_07",
			"to": "skill_textmate"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_juega_con_el_tiempo",
			"date": "2007-04-30",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_juega_con_el_tiempo",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_juega_con_el_tiempo",
			"to": "client_volkswagen"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_juega_con_el_tiempo",
			"to": "organization_tribal_ddb"
		},
		{
			"type": "USED_SKILL",
			"from": "project_juega_con_el_tiempo",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_juega_con_el_tiempo",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_juega_con_el_tiempo",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_golf_por_250",
			"date": "2007-06-08",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_golf_por_250",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_golf_por_250",
			"to": "client_volkswagen"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_golf_por_250",
			"to": "organization_tribal_ddb"
		},
		{
			"type": "USED_SKILL",
			"from": "project_golf_por_250",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_golf_por_250",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_retrovespa",
			"date": "2007-07-02",
			"relevance": 0.07
		},
		{
			"type": "BUILT_AT",
			"from": "project_retrovespa",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_retrovespa",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_retrovespa",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_retrovespa",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_axel_n_rose",
			"date": "2007-08-23",
			"relevance": 0.08
		},
		{
			"type": "BUILT_AT",
			"from": "project_axel_n_rose",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_axel_n_rose",
			"to": "client_axel_n_rose"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_axel_n_rose",
			"to": "organization_xnografics"
		},
		{
			"type": "USED_SKILL",
			"from": "project_axel_n_rose",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_axel_n_rose",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_tiguan",
			"date": "2007-12-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_tiguan",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_tiguan",
			"to": "client_volkswagen"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_tiguan",
			"to": "organization_tribal_ddb"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tiguan",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tiguan",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_seisgrados",
			"date": "2008-02-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_seisgrados",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_seisgrados",
			"to": "organization_seisgrados"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_mootools"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_seisgrados",
			"to": "skill_textmate"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_blue_motion",
			"date": "2008-04-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_blue_motion",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_blue_motion",
			"to": "client_volkswagen"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_blue_motion",
			"to": "organization_tribal_ddb"
		},
		{
			"type": "USED_SKILL",
			"from": "project_blue_motion",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_blue_motion",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_blue_motion",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_screensaver_bones",
			"date": "2008-06-18",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_screensaver_bones",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_screensaver_bones",
			"to": "client_aclasta"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_screensaver_bones",
			"to": "organization_pavlov"
		},
		{
			"type": "USED_SKILL",
			"from": "project_screensaver_bones",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_screensaver_bones",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_las_reglas_han_cambiado",
			"date": "2008-07-08",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_las_reglas_han_cambiado",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_las_reglas_han_cambiado",
			"to": "client_cruzcampo"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_las_reglas_han_cambiado",
			"to": "organization_ogilvy_one_interactive"
		},
		{
			"type": "USED_SKILL",
			"from": "project_las_reglas_han_cambiado",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_las_reglas_han_cambiado",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_coco_s_island_blog",
			"date": "2008-08-29",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_coco_s_island_blog",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_coco_s_island_blog",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coco_s_island_blog",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coco_s_island_blog",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coco_s_island_blog",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coco_s_island_blog",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coco_s_island_blog",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coco_s_island_blog",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_raices",
			"date": "2008-09-15",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_raices",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_raices",
			"to": "client_camper"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_raices",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raices",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raices",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raices",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_ajuntament_de_barcelona",
			"date": "2008-12-15",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_ajuntament_de_barcelona",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_ajuntament_de_barcelona",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_ajuntament_de_barcelona",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ajuntament_de_barcelona",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ajuntament_de_barcelona",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ajuntament_de_barcelona",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ajuntament_de_barcelona",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ajuntament_de_barcelona",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_junta_de_andalucia",
			"date": "2009-01-03",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_junta_de_andalucia",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_junta_de_andalucia",
			"to": "client_junta_de_andalucia"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_junta_de_andalucia",
			"to": "organization_ais_spain"
		},
		{
			"type": "USED_SKILL",
			"from": "project_junta_de_andalucia",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_junta_de_andalucia",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_junta_de_andalucia",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cherry_world",
			"date": "2009-02-03",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cherry_world",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cherry_world",
			"to": "client_intima_cherry"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_cherry_world",
			"to": "organization_pavlov"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cherry_world",
			"to": "skill_papervision3d"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cherry_world",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cherry_world",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cherry_world",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cherry_world",
			"to": "skill_textmate"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mediterranean_sneakers",
			"date": "2009-03-04",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mediterranean_sneakers",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mediterranean_sneakers",
			"to": "client_camper"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mediterranean_sneakers",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mediterranean_sneakers",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mediterranean_sneakers",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mediterranean_sneakers",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_your_special_edition",
			"date": "2009-06-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_your_special_edition",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_your_special_edition",
			"to": "client_bmw"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_your_special_edition",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_your_special_edition",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_your_special_edition",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_your_special_edition",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_your_special_edition",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_your_special_edition",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_your_special_edition",
			"to": "skill_textmate"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_trash",
			"date": "2009-10-01",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_trash",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_trash",
			"to": "client_carles_majo"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_trash",
			"to": "organization_david_resplandi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_trash",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_trash",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_trash",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_trash",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_trash",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_screensavers",
			"date": "2009-11-09",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_screensavers",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_screensavers",
			"to": "client_lg"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_screensavers",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_screensavers",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_screensavers",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_screensavers",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_christmas_09",
			"date": "2009-12-15",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_christmas_09",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_christmas_09",
			"to": "client_mango"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_christmas_09",
			"to": "organization_nopiun"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_09",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_09",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_09",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_09",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_09",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_09",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_game_tuberias",
			"date": "2010-03-01",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_game_tuberias",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_game_tuberias",
			"to": "client_nocilla"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_game_tuberias",
			"to": "organization_ais_spain"
		},
		{
			"type": "USED_SKILL",
			"from": "project_game_tuberias",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_game_tuberias",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_big_fish",
			"date": "2010-03-03",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_big_fish",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_big_fish",
			"to": "client_big_fish"
		},
		{
			"type": "USED_SKILL",
			"from": "project_big_fish",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_big_fish",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_big_fish",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_big_fish",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_un_martini_con_martin",
			"date": "2010-03-08",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_un_martini_con_martin",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_un_martini_con_martin",
			"to": "client_martini"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_un_martini_con_martin",
			"to": "organization_seisgrados"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_martini_con_martin",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_martini_con_martin",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_martini_con_martin",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_martini_con_martin",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_martini_con_martin",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_martini_con_martin",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fiestas_limon",
			"date": "2010-04-10",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fiestas_limon",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fiestas_limon",
			"to": "client_bacardi"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fiestas_limon",
			"to": "organization_seisgrados"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fiestas_limon",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fiestas_limon",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fiestas_limon",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fiestas_limon",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_la_diversion_nunca_termina",
			"date": "2010-04-23",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_la_diversion_nunca_termina",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_la_diversion_nunca_termina",
			"to": "client_nocilla"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_la_diversion_nunca_termina",
			"to": "organization_ais_spain"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_diversion_nunca_termina",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_diversion_nunca_termina",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_diversion_nunca_termina",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_got_milk",
			"date": "2010-05-25",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_got_milk",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_got_milk",
			"to": "client_california_milk_processor_board"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_got_milk",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_got_milk",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_got_milk",
			"to": "skill_adobe_pixel_bender"
		},
		{
			"type": "USED_SKILL",
			"from": "project_got_milk",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_got_milk",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_got_milk",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cocobongo_s_site_10",
			"date": "2010-07-14",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cocobongo_s_site_10",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cocobongo_s_site_10",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_10",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_10",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_10",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_10",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_10",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_10",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_extraordinary_crafts",
			"date": "2010-08-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_extraordinary_crafts",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_extraordinary_crafts",
			"to": "client_camper"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_extraordinary_crafts",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_extraordinary_crafts",
			"to": "skill_papervision3d"
		},
		{
			"type": "USED_SKILL",
			"from": "project_extraordinary_crafts",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_extraordinary_crafts",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_extraordinary_crafts",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_christmas_10",
			"date": "2010-12-12",
			"relevance": 0.14
		},
		{
			"type": "BUILT_AT",
			"from": "project_christmas_10",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_christmas_10",
			"to": "client_mango"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_10",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_10",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_10",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_10",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_10",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_10",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_wellness",
			"date": "2011-01-19",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_wellness",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_wellness",
			"to": "client_roca"
		},
		{
			"type": "USED_SKILL",
			"from": "project_wellness",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_wellness",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_wellness",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_wellness",
			"to": "skill_phpstorm"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_flagship_shibuya",
			"date": "2011-04-15",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_flagship_shibuya",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_flagship_shibuya",
			"to": "client_bershka"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_flagship_shibuya",
			"to": "organization_alex_montiel"
		},
		{
			"type": "USED_SKILL",
			"from": "project_flagship_shibuya",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_flagship_shibuya",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_flagship_shibuya",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_flagship_shibuya",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_11250_secretos",
			"date": "2011-11-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_11250_secretos",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_11250_secretos",
			"to": "client_torres"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_11250_secretos",
			"to": "client_jean_leon"
		},
		{
			"type": "USED_SKILL",
			"from": "project_11250_secretos",
			"to": "skill_papervision3d"
		},
		{
			"type": "USED_SKILL",
			"from": "project_11250_secretos",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_11250_secretos",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_11250_secretos",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_11250_secretos",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_11250_secretos",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_face_dancers",
			"date": "2012-03-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_face_dancers",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_face_dancers",
			"to": "client_san_miguel"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_face_dancers",
			"to": "client_primavera_sound"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_face_dancers",
			"to": "organization_mr_john_sample"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_face_dancers",
			"to": "organization_s_c_p_f"
		},
		{
			"type": "USED_SKILL",
			"from": "project_face_dancers",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_face_dancers",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_face_dancers",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_face_dancers",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_face_dancers",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_face_dancers",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_microbio_gentleman_v_1",
			"date": "2012-05-07",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_microbio_gentleman_v_1",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_microbio_gentleman_v_1",
			"to": "client_microbio_gentleman"
		},
		{
			"type": "USED_SKILL",
			"from": "project_microbio_gentleman_v_1",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_microbio_gentleman_v_1",
			"to": "skill_actionscript"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_de_mujer_a_mujer",
			"date": "2012-12-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_de_mujer_a_mujer",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_de_mujer_a_mujer",
			"to": "client_fundacion_vicente_ferrer"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_de_mujer_a_mujer",
			"to": "organization_jorge_martinez"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_tricentenari_bcn",
			"date": "2013-06-05",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_tricentenari_bcn",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_tricentenari_bcn",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_tricentenari_bcn",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_tricentenari_bcn",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_re_set",
			"date": "2014-02-13",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_re_set",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_re_set",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_re_set",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_re_set",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_re_set",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_re_set",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_re_set",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_re_set",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_re_set",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_rig_wizards",
			"date": "2014-05-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_rig_wizards",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_rig_wizards",
			"to": "client_rig_wizards"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_rig_wizards",
			"to": "organization_herraiz_soto"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rig_wizards",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rig_wizards",
			"to": "skill_adobe_pixel_bender"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rig_wizards",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rig_wizards",
			"to": "skill_gsap"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_the_ride_ibiza",
			"date": "2014-05-19",
			"relevance": 0.08
		},
		{
			"type": "BUILT_AT",
			"from": "project_the_ride_ibiza",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_the_ride_ibiza",
			"to": "client_the_ride_ibiza"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_ride_ibiza",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_ride_ibiza",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_ride_ibiza",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_ride_ibiza",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_ride_ibiza",
			"to": "skill_php"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_triangle_mesh",
			"date": "2014-10-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_triangle_mesh",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_triangle_mesh",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_triangle_mesh",
			"to": "skill_adobe_air"
		},
		{
			"type": "USED_SKILL",
			"from": "project_triangle_mesh",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_triangle_mesh",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_ahora_no_podemos_parar",
			"date": "2014-10-09",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_ahora_no_podemos_parar",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_ahora_no_podemos_parar",
			"to": "client_unicef"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_ahora_no_podemos_parar",
			"to": "organization_mr_john_sample"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_ahora_no_podemos_parar",
			"to": "organization_s_c_p_f"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ahora_no_podemos_parar",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_memoria_tricentenari_bcn",
			"date": "2014-11-13",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_memoria_tricentenari_bcn",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_memoria_tricentenari_bcn",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_memoria_tricentenari_bcn",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_memoria_tricentenari_bcn",
			"to": "skill_d3"
		},
		{
			"type": "USED_SKILL",
			"from": "project_memoria_tricentenari_bcn",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_memoria_tricentenari_bcn",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_memoria_tricentenari_bcn",
			"to": "skill_js"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_14",
			"date": "2014-11-17",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_14",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_14",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_14",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_14",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_la_otra_carta",
			"date": "2014-12-10",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_la_otra_carta",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_la_otra_carta",
			"to": "client_ikea"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_la_otra_carta",
			"to": "organization_mrm_mccann"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_otra_carta",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_otra_carta",
			"to": "skill_adobe_pixel_bender"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_otra_carta",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_otra_carta",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_otra_carta",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_hotel_amour",
			"date": "2015-02-14",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_hotel_amour",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_hotel_amour",
			"to": "client_ikea"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_hotel_amour",
			"to": "organization_mrm_mccann"
		},
		{
			"type": "USED_SKILL",
			"from": "project_hotel_amour",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_hotel_amour",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_hotel_amour",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_hotel_amour",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_llum_bcn_santa_eulalia_15",
			"date": "2015-02-14",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_15",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_terracitas",
			"date": "2015-03-25",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_terracitas",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_terracitas",
			"to": "client_ikea"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_terracitas",
			"to": "organization_mrm_mccann"
		},
		{
			"type": "USED_SKILL",
			"from": "project_terracitas",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_terracitas",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_terracitas",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_terracitas",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_de_mujer_a_mujer_onlife",
			"date": "2015-04-13",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "client_fundacion_vicente_ferrer"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_de_mujer_a_mujer_onlife",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mon_llibre_15",
			"date": "2015-04-23",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mon_llibre_15",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mon_llibre_15",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mon_llibre_15",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_15",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_espectacool_app_website",
			"date": "2015-05-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_espectacool_app_website",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_espectacool_app_website",
			"to": "client_club_vips"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_espectacool_app_website",
			"to": "organization_mrm_mccann"
		},
		{
			"type": "USED_SKILL",
			"from": "project_espectacool_app_website",
			"to": "skill_macromedia_adobe_flash"
		},
		{
			"type": "USED_SKILL",
			"from": "project_espectacool_app_website",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_espectacool_app_website",
			"to": "skill_actionscript"
		},
		{
			"type": "USED_SKILL",
			"from": "project_espectacool_app_website",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_espectacool_app_website",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_espectacool_app_website",
			"to": "skill_git"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_amigos_de_las_terrazas",
			"date": "2015-05-02",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_amigos_de_las_terrazas",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_amigos_de_las_terrazas",
			"to": "client_ikea"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_amigos_de_las_terrazas",
			"to": "organization_mrm_mccann"
		},
		{
			"type": "USED_SKILL",
			"from": "project_amigos_de_las_terrazas",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_amigos_de_las_terrazas",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_amigos_de_las_terrazas",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_amigos_de_las_terrazas",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cocobongo_s_site_15",
			"date": "2015-06-26",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_cocobongo_s_site_15",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cocobongo_s_site_15",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_15",
			"to": "skill_sublime_text"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_why",
			"date": "2015-09-24",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_why",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_why",
			"to": "client_rob_duncan"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_why",
			"to": "organization_mucho_san_francisco"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_why",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_15",
			"date": "2015-11-10",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_15",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_15",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_15",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_15",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_peoxel",
			"date": "2016-01-06",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_peoxel",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_peoxel",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_cordova"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_peoxel",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_llum_bcn_santa_eulalia_16",
			"date": "2016-02-14",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_16",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mon_llibre_16",
			"date": "2016-04-23",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mon_llibre_16",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mon_llibre_16",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mon_llibre_16",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_16",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_20_aniversario",
			"date": "2016-05-23",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_20_aniversario",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_20_aniversario",
			"to": "client_fundacion_vicente_ferrer"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_20_aniversario",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_muevete",
			"date": "2016-07-15",
			"relevance": 0.9
		},
		{
			"type": "BUILT_AT",
			"from": "project_muevete",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_muevete",
			"to": "client_font_vella"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_muevete",
			"to": "organization_vinizius_young_rubicam"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_muevete",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fallen_angel_10th",
			"date": "2016-09-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fallen_angel_10th",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fallen_angel_10th",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fallen_angel_10th",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_16",
			"date": "2016-11-10",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_16",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_16",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_16",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_16",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_coblentz_xmas_16",
			"date": "2016-12-20",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_coblentz_xmas_16",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_coblentz_xmas_16",
			"to": "client_coblentz_patch_duffy_bass"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_coblentz_xmas_16",
			"to": "organization_mucho_san_francisco"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coblentz_xmas_16",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coblentz_xmas_16",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coblentz_xmas_16",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coblentz_xmas_16",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coblentz_xmas_16",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_coblentz_xmas_16",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_llum_bcn_santa_eulalia_17",
			"date": "2017-02-14",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_17",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_el_tourmalet",
			"date": "2017-03-01",
			"relevance": 0.18
		},
		{
			"type": "BUILT_AT",
			"from": "project_el_tourmalet",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_el_tourmalet",
			"to": "client_el_tourmalet"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_tourmalet",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mon_llibre_17",
			"date": "2017-04-23",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mon_llibre_17",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mon_llibre_17",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mon_llibre_17",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_17",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_nug_arquitectes",
			"date": "2017-05-10",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_nug_arquitectes",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_nug_arquitectes",
			"to": "client_nug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_nug_arquitectes",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_17",
			"date": "2017-11-11",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_17",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_17",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_17",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_17",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_dau_6e_festival_del_joc",
			"date": "2017-11-17",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_dau_6e_festival_del_joc",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_dau_6e_festival_del_joc",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_dau_6e_festival_del_joc",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_gulp"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_6e_festival_del_joc",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_llum_bcn_santa_eulalia_18",
			"date": "2018-02-14",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_18",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fabriques_de_creacio",
			"date": "2018-03-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_fabriques_de_creacio",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fabriques_de_creacio",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fabriques_de_creacio",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabriques_de_creacio",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cromosoma_13",
			"date": "2018-03-08",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_cromosoma_13",
			"to": "organization_freelance"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cromosoma_13",
			"to": "organization_david_resplandi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cromosoma_13",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cromosoma_13",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cromosoma_13",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cromosoma_13",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cromosoma_13",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cromosoma_13",
			"to": "skill_pug"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mon_llibre_18",
			"date": "2018-04-23",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mon_llibre_18",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mon_llibre_18",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mon_llibre_18",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_18",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_cocobongo_s_site_18_udpate",
			"date": "2018-05-01",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_less"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_cocobongo_s_site_18_udpate",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_poesia_18",
			"date": "2018-05-10",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_poesia_18",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_poesia_18",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_poesia_18",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_18",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_farao",
			"date": "2018-06-28",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_farao",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_farao",
			"to": "client_caixa_forum"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_electron"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_adobe_after_effects"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_adobe_illustrator"
		},
		{
			"type": "USED_SKILL",
			"from": "project_farao",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_museu_etnologic_i_de_cultures_del_mon",
			"date": "2018-07-20",
			"relevance": 0.18
		},
		{
			"type": "BUILT_AT",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_museu_etnologic_i_de_cultures_del_mon",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_18",
			"date": "2018-11-10",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_18",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_18",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_18",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_18",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_dau_7e_festival_del_joc",
			"date": "2018-11-17",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_dau_7e_festival_del_joc",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_dau_7e_festival_del_joc",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_dau_7e_festival_del_joc",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_gulp"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_7e_festival_del_joc",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_la_panera",
			"date": "2018-11-21",
			"relevance": 0.18
		},
		{
			"type": "BUILT_AT",
			"from": "project_la_panera",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_la_panera",
			"to": "client_la_panera"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_la_panera",
			"to": "organization_bildi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_vue"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_la_panera",
			"to": "skill_grunt"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_ugly_christmas_sweater_generator",
			"date": "2018-12-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ugly_christmas_sweater_generator",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_christmas_shop",
			"date": "2018-12-20",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_christmas_shop",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_christmas_shop",
			"to": "client_tous"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_shop",
			"to": "skill_adobe_lightroom"
		},
		{
			"type": "USED_SKILL",
			"from": "project_christmas_shop",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_llum_bcn_santa_eulalia_19",
			"date": "2019-02-14",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_llum_bcn_santa_eulalia_19",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mon_llibre_19",
			"date": "2019-04-23",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mon_llibre_19",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mon_llibre_19",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mon_llibre_19",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_19",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_poesia_19",
			"date": "2019-05-08",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_poesia_19",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_poesia_19",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_poesia_19",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_19",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_25",
			"date": "2019-05-10",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_25",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_25",
			"to": "client_marta_cerda"
		},
		{
			"type": "USED_SKILL",
			"from": "project_25",
			"to": "skill_matter_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_25",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_25",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_25",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_raise",
			"date": "2019-06-29",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_raise",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_raise",
			"to": "client_hero"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_raise",
			"to": "skill_invision"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_19",
			"date": "2019-11-10",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_19",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_19",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_19",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_19",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_unidos_por_un_decimo",
			"date": "2019-11-11",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_unidos_por_un_decimo",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_unidos_por_un_decimo",
			"to": "client_loteria_de_navidad"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_unidos_por_un_decimo",
			"to": "organization_dec_bbdo"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_unidos_por_un_decimo",
			"to": "organization_contrapunto_bbdo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_anime_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_webpack"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_unidos_por_un_decimo",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bcn_novel_la_historica_20",
			"date": "2019-11-14",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bcn_novel_la_historica_20",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bcn_novel_la_historica_20",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_bcn_novel_la_historica_20",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bcn_novel_la_historica_20",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_dau_8e_festival_del_joc",
			"date": "2019-11-23",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_dau_8e_festival_del_joc",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_dau_8e_festival_del_joc",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_dau_8e_festival_del_joc",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_8e_festival_del_joc",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_dibuixa_19",
			"date": "2019-12-12",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_dibuixa_19",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_dibuixa_19",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_dibuixa_19",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_webpack"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_19",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_santa_eulalia_20",
			"date": "2020-02-14",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_santa_eulalia_20",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_santa_eulalia_20",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_santa_eulalia_20",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_jquery"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_20",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_rescue_squad",
			"date": "2020-02-20",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_rescue_squad",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_rescue_squad",
			"to": "client_rescue_squad_la_cerdanya"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_rescue_squad",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_80_s_chinface_filter",
			"date": "2020-03-03",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_80_s_chinface_filter",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_80_s_chinface_filter",
			"to": "skill_lens_studio"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_bildi",
			"date": "2020-04-23",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_bildi",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_bildi",
			"to": "organization_bildi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_vue"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_matter_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_anime_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_bildi",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_androsguirado_dev",
			"date": "2020-05-15",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_androsguirado_dev",
			"to": "organization_freelance"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_strapi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_androsguirado_dev",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_el_marxant_d_art_streetescape",
			"date": "2020-07-17",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_marxant_d_art_streetescape",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_the_art_of_blocks",
			"date": "2020-08-18",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_the_art_of_blocks",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_the_art_of_blocks",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_ffmpeg"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_the_art_of_blocks",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_l_herencia_del_bandoler_streetescape",
			"date": "2020-09-12",
			"relevance": 0.18
		},
		{
			"type": "BUILT_AT",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_del_bandoler_streetescape",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_oxigen_streetescape",
			"date": "2020-10-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_oxigen_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_oxigen_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_oxigen_streetescape",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_oxigen_streetescape",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_dibuixa_20",
			"date": "2020-10-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_dibuixa_20",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_dibuixa_20",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_dibuixa_20",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_webpack"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_20",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_poesia_20",
			"date": "2020-10-13",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_poesia_20",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_poesia_20",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_poesia_20",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_20",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_dau_9e_festival_del_joc",
			"date": "2020-11-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_dau_9e_festival_del_joc",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_dau_9e_festival_del_joc",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_dau_9e_festival_del_joc",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_grunt"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_9e_festival_del_joc",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_el_futuro_es_apasionante",
			"date": "2020-11-10",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_el_futuro_es_apasionante",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_el_futuro_es_apasionante",
			"to": "client_vodafone"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_el_futuro_es_apasionante",
			"to": "organization_quoco"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_el_futuro_es_apasionante",
			"to": "organization_wink_ttd"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_el_futuro_es_apasionante",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_santa_eulalia_21",
			"date": "2021-02-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_santa_eulalia_21",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_santa_eulalia_21",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_santa_eulalia_21",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_santa_eulalia_21",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_holograms",
			"date": "2021-02-02",
			"relevance": 0.3
		},
		{
			"type": "BUILT_AT",
			"from": "project_holograms",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_holograms",
			"to": "organization_cocobongo"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_arduino"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_electron"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_johnny_five"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_webpack"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_holograms",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_fotografes",
			"date": "2021-02-16",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_fotografes",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_fotografes",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_fotografes",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_fotografes",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mon_llibre_21",
			"date": "2021-03-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mon_llibre_21",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mon_llibre_21",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_mon_llibre_21",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_webpack"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mon_llibre_21",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_un_estiu_lector",
			"date": "2021-03-20",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_un_estiu_lector",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_un_estiu_lector",
			"to": "client_lecxit"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_un_estiu_lector",
			"to": "organization_fundacio_jaume_bofill"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_un_estiu_lector",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_families_aliades_de_la_lectura",
			"date": "2021-03-20",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_families_aliades_de_la_lectura",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_families_aliades_de_la_lectura",
			"to": "client_lecxit"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_families_aliades_de_la_lectura",
			"to": "organization_fundacio_jaume_bofill"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_families_aliades_de_la_lectura",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_configurador_de_reuniones",
			"date": "2021-04-15",
			"relevance": 0.7
		},
		{
			"type": "BUILT_AT",
			"from": "project_configurador_de_reuniones",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_configurador_de_reuniones",
			"to": "client_fixe"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_strapi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_graphql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_node_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_configurador_de_reuniones",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_projecte_geminis_streetescape",
			"date": "2021-05-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_projecte_geminis_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_projecte_geminis_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_projecte_geminis_streetescape",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_projecte_geminis_streetescape",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_poesia_21",
			"date": "2021-05-10",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_poesia_21",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_poesia_21",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_poesia_21",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_poesia_21",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mala_vella_streetescape",
			"date": "2021-06-01",
			"relevance": 0.18
		},
		{
			"type": "BUILT_AT",
			"from": "project_mala_vella_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mala_vella_streetescape",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mala_vella_streetescape",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mala_vella_streetescape",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_dau_10e_festival_del_joc",
			"date": "2021-10-01",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_dau_10e_festival_del_joc",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_dau_10e_festival_del_joc",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_dau_10e_festival_del_joc",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_mysql"
		},
		{
			"type": "USED_SKILL",
			"from": "project_dau_10e_festival_del_joc",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_barcelona_dibuixa_21",
			"date": "2021-10-07",
			"relevance": 0.1
		},
		{
			"type": "BUILT_AT",
			"from": "project_barcelona_dibuixa_21",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_barcelona_dibuixa_21",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_barcelona_dibuixa_21",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_webpack"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_barcelona_dibuixa_21",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_fabra_i_coats",
			"date": "2021-11-25",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_fabra_i_coats",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_fabra_i_coats",
			"to": "client_ajuntament_de_barcelona"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_fabra_i_coats",
			"to": "organization_icub"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_drupal"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_php"
		},
		{
			"type": "USED_SKILL",
			"from": "project_fabra_i_coats",
			"to": "skill_mysql"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_sonora",
			"date": "2022-05-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_sonora",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_sonora",
			"to": "client_wink"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_vue"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_ffmpeg"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_node_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_sonora",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_minisite_demo_day_22",
			"date": "2022-06-10",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_minisite_demo_day_22",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_minisite_demo_day_22",
			"to": "client_kids_us"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_hubspot"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_minisite_demo_day_22",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_eeze",
			"date": "2022-12-26",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_eeze",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_eeze",
			"to": "client_mediapro"
		},
		{
			"type": "VIA_AGENCY",
			"from": "project_eeze",
			"to": "organization_la_sustancia"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_esbuild"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_eeze",
			"to": "skill_php"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_silent",
			"date": "2023-04-20",
			"relevance": 0.8
		},
		{
			"type": "BUILT_AT",
			"from": "project_silent",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_silent",
			"to": "client_cia_sargantana"
		},
		{
			"type": "USED_SKILL",
			"from": "project_silent",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_silent",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_silent",
			"to": "skill_webgl"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_resplandi_valiente",
			"date": "2023-08-04",
			"relevance": 0.4
		},
		{
			"type": "BUILT_AT",
			"from": "project_resplandi_valiente",
			"to": "organization_freelance"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_resplandi_valiente",
			"to": "organization_david_resplandi"
		},
		{
			"type": "USED_SKILL",
			"from": "project_resplandi_valiente",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_resplandi_valiente",
			"to": "skill_pixi_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_resplandi_valiente",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_resplandi_valiente",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_resplandi_valiente",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_resplandi_valiente",
			"to": "skill_js"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_lv_accessories_23",
			"date": "2023-11-20",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_lv_accessories_23",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_lv_accessories_23",
			"to": "client_louis_vuitton"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_vue"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_node_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_accessories_23",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_suno_valentine_s_day",
			"date": "2024-01-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_suno_valentine_s_day",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_suno_valentine_s_day",
			"to": "client_suno"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_blender"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_adobe_photoshop"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_valentine_s_day",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_moonfall",
			"date": "2024-01-02",
			"relevance": 0.2
		},
		{
			"type": "BUILT_AT",
			"from": "project_moonfall",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_moonfall",
			"to": "client_moonfall_productions"
		},
		{
			"type": "USED_SKILL",
			"from": "project_moonfall",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_moonfall",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_moonfall",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_moonfall",
			"to": "skill_php"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_suno_musical_memories",
			"date": "2024-02-28",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_suno_musical_memories",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_suno_musical_memories",
			"to": "client_suno"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_musical_memories",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_illumination",
			"date": "2024-02-29",
			"relevance": 0.6
		},
		{
			"type": "BUILT_AT",
			"from": "project_illumination",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_illumination",
			"to": "client_illumination"
		},
		{
			"type": "USED_SKILL",
			"from": "project_illumination",
			"to": "skill_wordpress"
		},
		{
			"type": "USED_SKILL",
			"from": "project_illumination",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_illumination",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_illumination",
			"to": "skill_php"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_suno_blog",
			"date": "2024-03-20",
			"relevance": 0.4
		},
		{
			"type": "BUILT_AT",
			"from": "project_suno_blog",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_suno_blog",
			"to": "client_suno"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_blog",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_blog",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_blog",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_blog",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_blog",
			"to": "skill_dato_cms"
		},
		{
			"type": "USED_SKILL",
			"from": "project_suno_blog",
			"to": "skill_js"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_arcade",
			"date": "2024-05-15",
			"relevance": 0.6
		},
		{
			"type": "BUILT_AT",
			"from": "project_arcade",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_arcade",
			"to": "client_arcade"
		},
		{
			"type": "USED_SKILL",
			"from": "project_arcade",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_arcade",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_arcade",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_arcade",
			"to": "skill_tailwind"
		},
		{
			"type": "USED_SKILL",
			"from": "project_arcade",
			"to": "skill_js"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_lvmh_prize_24",
			"date": "2024-08-01",
			"relevance": 0.75
		},
		{
			"type": "BUILT_AT",
			"from": "project_lvmh_prize_24",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_lvmh_prize_24",
			"to": "client_louis_vuitton"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_24",
			"to": "skill_react"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_lv_watch_prize_25",
			"date": "2024-10-20",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_lv_watch_prize_25",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_lv_watch_prize_25",
			"to": "client_louis_vuitton"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_vue"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_lottie"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_node_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_25",
			"to": "skill_cursor"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_l_herencia_perduda",
			"date": "2024-10-20",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_l_herencia_perduda",
			"to": "organization_cocobongo"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_l_herencia_perduda",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_anime_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_herencia_perduda",
			"to": "skill_cursor"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_feelslike",
			"date": "2024-11-19",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_feelslike",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_feelslike",
			"to": "organization_feelslike"
		},
		{
			"type": "USED_SKILL",
			"from": "project_feelslike",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_feelslike",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_feelslike",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_feelslike",
			"to": "skill_dato_cms"
		},
		{
			"type": "USED_SKILL",
			"from": "project_feelslike",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_feelslike",
			"to": "skill_sass"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_ch_holidays_campaign",
			"date": "2025-12-18",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_ch_holidays_campaign",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_ch_holidays_campaign",
			"to": "client_carolina_herrera"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_anime_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_vite"
		},
		{
			"type": "USED_SKILL",
			"from": "project_ch_holidays_campaign",
			"to": "skill_cursor"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_lvmh_prize_26",
			"date": "2026-02-16",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_lvmh_prize_26",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_lvmh_prize_26",
			"to": "client_louis_vuitton"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_claude"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_node_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_microsoft_azure"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_tailwind"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lvmh_prize_26",
			"to": "skill_google_antigravity"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_lv_watch_prize_26",
			"date": "2026-03-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_lv_watch_prize_26",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_lv_watch_prize_26",
			"to": "client_louis_vuitton"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_vue"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_claude"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_glsl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_node_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_sass"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_lv_watch_prize_26",
			"to": "skill_git"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_l_enigma_de_la_mostra",
			"date": "2026-04-23",
			"relevance": 0.5
		},
		{
			"type": "BUILT_AT",
			"from": "project_l_enigma_de_la_mostra",
			"to": "organization_freelance"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_l_enigma_de_la_mostra",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_claude"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_enigma_de_la_mostra",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_l_avenir",
			"date": "2026-05-09",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_l_avenir",
			"to": "organization_freelance"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_l_avenir",
			"to": "client_estrambotic"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_claude"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_svelte"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_mapbox"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_stylus"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_pug"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_l_avenir",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "WORKED_ON",
			"from": "person_andros_guirado",
			"to": "project_mahjong_stars",
			"date": "2026-06-01",
			"relevance": 1
		},
		{
			"type": "BUILT_AT",
			"from": "project_mahjong_stars",
			"to": "organization_feelslike"
		},
		{
			"type": "FOR_CLIENT",
			"from": "project_mahjong_stars",
			"to": "client_mahjong_stars"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_react"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_claude"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_three_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_unity"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_webgl"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_anime_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_html"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_figma"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_css"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_gsap"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_tailwind"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_git"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_vite"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_js"
		},
		{
			"type": "USED_SKILL",
			"from": "project_mahjong_stars",
			"to": "skill_visual_studio_code"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_primaria_1986",
			"date": "1986-09-15",
			"relevance": 0.18
		},
		{
			"type": "AT",
			"from": "event_primaria_1986",
			"to": "organization_c_p_samuntada"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_comic_1994",
			"date": "1994-10-01",
			"relevance": 0.5
		},
		{
			"type": "AT",
			"from": "event_comic_1994",
			"to": "organization_escola_joso"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_eso_1996",
			"date": "1996-09-15",
			"relevance": 0.18
		},
		{
			"type": "AT",
			"from": "event_eso_1996",
			"to": "organization_escola_industrial"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_batchillerat_artistic_1998",
			"date": "1998-09-15",
			"relevance": 0.5
		},
		{
			"type": "AT",
			"from": "event_batchillerat_artistic_1998",
			"to": "organization_jaume_viladoms"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_grau_superior_en_grafica_publicitaria_2000",
			"date": "2000-09-15",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_grau_superior_en_grafica_publicitaria_2000",
			"to": "organization_escola_illa"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_animation_with_flash_2001",
			"date": "2001-07-01",
			"relevance": 0.18
		},
		{
			"type": "AT",
			"from": "event_animation_with_flash_2001",
			"to": "organization_escola_illa"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_first_design_job_2001",
			"date": "2001-08-15",
			"relevance": 0.3
		},
		{
			"type": "AT",
			"from": "event_first_design_job_2001",
			"to": "organization_haro_comunicacion"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_grau_superior_en_il_lustracio_2002",
			"date": "2002-09-15",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_grau_superior_en_il_lustracio_2002",
			"to": "organization_escola_illa"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_i_join_cocobongo_2003",
			"date": "2003-03-01",
			"relevance": 0.5
		},
		{
			"type": "AT",
			"from": "event_i_join_cocobongo_2003",
			"to": "organization_cocobongo"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_adg_laus_2006",
			"date": "2006-03-10",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_adg_laus_2006",
			"to": "organization_adg_laus"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_postgrau_disseny_interactiu_2009",
			"date": "2009-01-01",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_postgrau_disseny_interactiu_2009",
			"to": "organization_elisava"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_postgrau_disseny_interactiu_2010",
			"date": "2010-01-01",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_postgrau_disseny_interactiu_2010",
			"to": "organization_elisava"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_after_effects_expresiones_para_motion_graphics_2017",
			"date": "2017-05-04",
			"relevance": 0.1
		},
		{
			"type": "AT",
			"from": "event_after_effects_expresiones_para_motion_graphics_2017",
			"to": "organization_domestika"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_fwa_2020",
			"date": "2020-02-20",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_fwa_2020",
			"to": "organization_fwa"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_visualizacion_de_datos_para_proyectos_editoriales_2021",
			"date": "2021-01-12",
			"relevance": 0.12
		},
		{
			"type": "AT",
			"from": "event_visualizacion_de_datos_para_proyectos_editoriales_2021",
			"to": "organization_domestika"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_visualizacion_de_datos_y_diseno_de_la_informacion_crea_un_modelo_visual_2022",
			"date": "2022-01-06",
			"relevance": 0.12
		},
		{
			"type": "AT",
			"from": "event_visualizacion_de_datos_y_diseno_de_la_informacion_crea_un_modelo_visual_2022",
			"to": "organization_domestika"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_curso_de_infografia_periodstica_jaime_serra_2022",
			"date": "2022-06-22",
			"relevance": 0.1
		},
		{
			"type": "AT",
			"from": "event_curso_de_infografia_periodstica_jaime_serra_2022",
			"to": "organization_instituto_de_formacion_de_rtve"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_shader_prototyping_2022",
			"date": "2022-10-25",
			"relevance": 0.12
		},
		{
			"type": "AT",
			"from": "event_shader_prototyping_2022",
			"to": "organization_patricio_gonzalez_vivo"
		},
		{
			"type": "PARTICIPATED_IN",
			"from": "person_andros_guirado",
			"to": "event_i_join_b_reel_2023",
			"date": "2023-02-13",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_i_join_b_reel_2023",
			"to": "organization_feelslike"
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_campus_crea_2005",
			"date": "2005-07-01",
			"relevance": 1
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_bcn_mad_festival_2007",
			"date": "2007-11-01",
			"relevance": 0.9
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_bcn_visual_sound_2008",
			"date": "2008-02-01",
			"relevance": 0.9
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_tertulia_interactiva_5_1_2010",
			"date": "2010-06-29",
			"relevance": 1
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_bims_2012",
			"date": "2012-03-27",
			"relevance": 0.9
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_dia_mundial_del_disseny_grafic_2018",
			"date": "2018-05-04",
			"relevance": 1
		},
		{
			"type": "SPOKE_AT",
			"from": "person_andros_guirado",
			"to": "event_b_reel_x_brut_2023",
			"date": "2023-10-06",
			"relevance": 1
		},
		{
			"type": "AT",
			"from": "event_cocobongo_s_creation_2002",
			"to": "organization_cocobongo",
			"date": "2002-09-20"
		},
		{
			"type": "AT",
			"from": "event_moves_to_la_nau_2002",
			"to": "organization_cocobongo",
			"date": "2002-11-01"
		},
		{
			"type": "AT",
			"from": "event_alfred_leaves_the_team_2003",
			"to": "organization_cocobongo",
			"date": "2003-07-01"
		},
		{
			"type": "AT",
			"from": "event_moves_to_via_massague_2003",
			"to": "organization_cocobongo",
			"date": "2003-09-01"
		},
		{
			"type": "AT",
			"from": "event_we_are_sponsored_by_cdmon_2004",
			"to": "organization_cocobongo",
			"date": "2004-11-14"
		},
		{
			"type": "AT",
			"from": "event_oriol_joins_the_team_2005",
			"to": "organization_cocobongo",
			"date": "2005-02-10"
		},
		{
			"type": "AT",
			"from": "event_chuso_leaves_the_team_2005",
			"to": "organization_cocobongo",
			"date": "2005-03-01"
		},
		{
			"type": "AT",
			"from": "event_select_c_ed_index_book_2005",
			"to": "organization_cocobongo",
			"date": "2005-04-20"
		},
		{
			"type": "AT",
			"from": "event_h_magazine_2005",
			"to": "organization_cocobongo",
			"date": "2005-12-13"
		},
		{
			"type": "AT",
			"from": "event_select_d_ed_index_book_2006",
			"to": "organization_cocobongo",
			"date": "2006-02-23"
		},
		{
			"type": "AT",
			"from": "event_fallen_angel_appears_in_cuarto_milenio_2006",
			"to": "organization_cocobongo",
			"date": "2006-09-01"
		},
		{
			"type": "AT",
			"from": "event_become_s_l_2007",
			"to": "organization_cocobongo",
			"date": "2007-04-01"
		},
		{
			"type": "AT",
			"from": "event_fallen_angel_inspires_rec_film_2007",
			"to": "organization_cocobongo",
			"date": "2007-08-23"
		},
		{
			"type": "AT",
			"from": "event_moves_to_angel_guimera_2007",
			"to": "organization_cocobongo",
			"date": "2007-11-26"
		},
		{
			"type": "AT",
			"from": "event_ex7_interview_2008",
			"to": "organization_cocobongo",
			"date": "2008-08-02"
		},
		{
			"type": "AT",
			"from": "event_molina_s_yeti_2009",
			"to": "organization_cocobongo",
			"date": "2009-03-10"
		},
		{
			"type": "AT",
			"from": "event_select_i_ed_index_book_2010",
			"to": "organization_cocobongo",
			"date": "2010-11-04"
		},
		{
			"type": "AT",
			"from": "event_move_to_la_rambla_2011",
			"to": "organization_cocobongo",
			"date": "2011-11-27"
		},
		{
			"type": "AT",
			"from": "event_psycho_images_appears_in_chilean_tv_show_2012",
			"to": "organization_cocobongo",
			"date": "2012-11-02"
		},
		{
			"type": "AT",
			"from": "event_select_k_ed_index_book_2012",
			"to": "organization_cocobongo",
			"date": "2012-11-15"
		},
		{
			"type": "AT",
			"from": "event_psycho_images_appears_in_chilean_tv_show_2013",
			"to": "organization_cocobongo",
			"date": "2013-04-01"
		},
		{
			"type": "AT",
			"from": "event_become_s_c_p_2014",
			"to": "organization_cocobongo",
			"date": "2014-01-01"
		},
		{
			"type": "AT",
			"from": "event_move_to_eix_macia_2014",
			"to": "organization_cocobongo",
			"date": "2014-11-08"
		},
		{
			"type": "AT",
			"from": "event_moves_to_les_valls_2017",
			"to": "organization_cocobongo",
			"date": "2017-01-22"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_barcelona_2018",
			"to": "organization_cocobongo",
			"date": "2018-06-08"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_madrid_2018",
			"to": "organization_cocobongo",
			"date": "2018-10-17"
		},
		{
			"type": "AT",
			"from": "event_ruth_leaves_the_team_2018",
			"to": "organization_cocobongo",
			"date": "2018-11-01"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_girona_2019",
			"to": "organization_cocobongo",
			"date": "2019-02-20"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_sevilla_2019",
			"to": "organization_cocobongo",
			"date": "2019-09-27"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_tarragona_2020",
			"to": "organization_cocobongo",
			"date": "2020-06-01"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_zaragoza_2021",
			"to": "organization_cocobongo",
			"date": "2021-09-16"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_palma_de_mallorca_2022",
			"to": "organization_cocobongo",
			"date": "2022-02-11"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_valencia_2022",
			"to": "organization_cocobongo",
			"date": "2022-06-22"
		},
		{
			"type": "AT",
			"from": "event_installing_farao_in_caixa_forum_lleida_2023",
			"to": "organization_cocobongo",
			"date": "2023-03-29"
		},
		{
			"type": "AT",
			"from": "event_techativity_2023",
			"to": "organization_feelslike",
			"date": "2023-08-04"
		},
		{
			"type": "AT",
			"from": "event_b_reel_becames_feelslike_2023",
			"to": "organization_feelslike",
			"date": "2023-10-11"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_smiling_face_silver_2003",
			"date": "2003-06-19",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_smiling_face_silver_2003",
			"to": "project_beetle_dream",
			"date": "2003-06-19"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_smiling_face_gold_2003",
			"date": "2003-06-20",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_smiling_face_gold_2003",
			"to": "project_beetle_dream",
			"date": "2003-06-20"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_festival_el_sol_shortlist_2010",
			"date": "2010-06-09",
			"relevance": 0.8
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_festival_el_sol_shortlist_2010",
			"to": "project_la_diversion_nunca_termina",
			"date": "2010-06-09"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_sol_silver_2012",
			"date": "2012-09-19",
			"relevance": 0.8
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_sol_silver_2012",
			"to": "project_face_dancers",
			"date": "2012-09-19"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_laus_silver_2013",
			"date": "2013-06-25",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_laus_silver_2013",
			"to": "project_face_dancers",
			"date": "2013-06-25"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_premios_eficacia_comunicacion_comercial_gold_2015",
			"date": "2015-01-10",
			"relevance": 0.3
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_premios_eficacia_comunicacion_comercial_gold_2015",
			"to": "project_la_otra_carta",
			"date": "2015-01-10"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_css_nectar_sotd_2015",
			"date": "2015-07-01",
			"relevance": 0.1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_css_nectar_sotd_2015",
			"to": "project_cocobongo_s_site_15",
			"date": "2015-07-01"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_french_design_sotd_2015",
			"date": "2015-07-02",
			"relevance": 0.03
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_french_design_sotd_2015",
			"to": "project_cocobongo_s_site_15",
			"date": "2015-07-02"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_unmatchedstyle_sotd_2015",
			"date": "2015-07-03",
			"relevance": 0.03
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_unmatchedstyle_sotd_2015",
			"to": "project_cocobongo_s_site_15",
			"date": "2015-07-03"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_design_licks_sotd_2015",
			"date": "2015-07-14",
			"relevance": 0.03
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_design_licks_sotd_2015",
			"to": "project_cocobongo_s_site_15",
			"date": "2015-07-14"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_css_reel_sotd_2015",
			"date": "2015-07-18",
			"relevance": 0.05
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_css_reel_sotd_2015",
			"to": "project_cocobongo_s_site_15",
			"date": "2015-07-18"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_premios_eficacia_reconocimiento_especial_investigacion_gold_2015",
			"date": "2015-10-11",
			"relevance": 0.2
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_premios_eficacia_reconocimiento_especial_investigacion_gold_2015",
			"to": "project_la_otra_carta",
			"date": "2015-10-11"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_premios_eficacia_comunicacion_comercial_gold_2016",
			"date": "2016-10-01",
			"relevance": 0.1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_premios_eficacia_comunicacion_comercial_gold_2016",
			"to": "project_amigos_de_las_terrazas",
			"date": "2016-10-01"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_fwa_sotd_2016",
			"date": "2016-12-05",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_fwa_sotd_2016",
			"to": "project_fallen_angel_10th",
			"date": "2016-12-05"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_css_awards_sotd_2016",
			"date": "2016-12-13",
			"relevance": 0.18
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_css_awards_sotd_2016",
			"to": "project_fallen_angel_10th",
			"date": "2016-12-13"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_laus_bronze_2017",
			"date": "2017-06-06",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_laus_bronze_2017",
			"to": "project_fallen_angel_10th",
			"date": "2017-06-06"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_fwa_sotd_2018",
			"date": "2018-12-17",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_fwa_sotd_2018",
			"to": "project_ugly_christmas_sweater_generator",
			"date": "2018-12-17"
		},
		{
			"type": "RECEIVED",
			"from": "person_andros_guirado",
			"to": "award_awwwards_sotd_2018",
			"date": "2018-12-25",
			"relevance": 1
		},
		{
			"type": "AWARDED_FOR",
			"from": "award_awwwards_sotd_2018",
			"to": "project_ugly_christmas_sweater_generator",
			"date": "2018-12-25"
		}
	]
}
