<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">

	<graph id="G">
		
		<edge source="a" target="b"/>
		<edge source="a" target="c"/>
		
		<edge source="b" target="a"/>
		<edge source="b" target="c"/>
		<edge source="b" target="d"/>
		<edge source="b" target="g"/>
		
		<edge source="c" target="a"/>
		<edge source="c" target="b"/>
		<edge source="c" target="d"/>
		<edge source="c" target="e"/>
		
		<edge source="d" target="b"/>
		<edge source="d" target="c"/>
		<edge source="d" target="e"/>
		<edge source="d" target="g"/>
		<edge source="d" target="f"/>
		
		<edge source="e" target="c"/>
		<edge source="e" target="d"/>
		<edge source="e" target="f"/>
		<edge source="e" target="j"/>
		<edge source="e" target="k"/>
		
		<edge source="f" target="e"/>
		<edge source="f" target="d"/>
		<edge source="f" target="g"/>
		<edge source="f" target="h"/>
		<edge source="f" target="i"/>
		<edge source="f" target="j"/>
		
		<edge source="g" target="b"/>
		<edge source="g" target="d"/>
		<edge source="g" target="f"/>
		<edge source="g" target="h"/>
		
		<edge source="h" target="g"/>
		<edge source="h" target="f"/>
		<edge source="h" target="i"/>
		
		<edge source="i" target="h"/>
		<edge source="i" target="f"/>
		<edge source="i" target="j"/>
		<edge source="i" target="m"/>
		<edge source="i" target="n"/>

		<edge source="j" target="e"/>
		<edge source="j" target="f"/>
		<edge source="j" target="i"/>
		<edge source="j" target="m"/>
		<edge source="j" target="l"/>
		<edge source="j" target="k"/>
		
		<edge source="k" target="e"/>
		<edge source="k" target="j"/>
		<edge source="k" target="l"/>
		
		<edge source="l" target="k"/>
		<edge source="l" target="j"/>
		<edge source="l" target="m"/>
		
		<edge source="m" target="l"/>
		<edge source="m" target="j"/>
		<edge source="m" target="i"/>
		<edge source="m" target="n"/>
		<edge source="m" target="o"/>
		<edge source="m" target="p"/>
		
		<edge source="n" target="i"/>
		<edge source="n" target="m"/>
		<edge source="n" target="o"/>
		
		<edge source="o" target="n"/>
		<edge source="o" target="m"/>
		<edge source="o" target="p"/>
		<edge source="o" target="r"/>

		<edge source="p" target="m"/>
		<edge source="p" target="o"/>
		<edge source="p" target="r"/>

		<edge source="r" target="p"/>
		<edge source="r" target="o"/>
		

	</graph>
</graphml>