mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-21 21:57:56 +01:00
Control attributes order for freemind serialization.
This commit is contained in:
parent
f4f97d3112
commit
6c1188314b
@ -78,7 +78,7 @@ The following code is an example of how to add attach to the div dragImageNode t
|
||||
designer.addDraggedNode(event, node);
|
||||
});
|
||||
|
||||
In the example, a new node is created with text "Node Text !!!!" and a note and a link associated to it when the user drop the node. Something to pay attention is the node.setMetadata("{}"), this attributes will be persisted during the serialization. Here you can store all the data you need.
|
||||
In the example, a new node is created with text "Node Text !!!!" and a note and a link associated to it when the user drop the node. Something to pay attention is the node.setMetadata("{}"), this delegated will be persisted during the serialization. Here you can store all the data you need.
|
||||
|
||||
2) Support for dragging Images: Similar to the point 1,drag support is registered to the div dragImageNode.
|
||||
|
||||
|
14
java.iml
Normal file
14
java.iml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
|
||||
<output url="file://$MODULE_DIR$/target/classes" />
|
||||
<output-test url="file://$MODULE_DIR$/target/test-classes" />
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
|
@ -89,7 +89,7 @@ function testElementFill()
|
||||
assertEquals(opacity, fill.opacity);
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
// Set delegated
|
||||
elem.setAttribute('fillColor', color);
|
||||
elem.setAttribute('fillOpacity', opacity);
|
||||
|
||||
|
BIN
wise-editor/src/main/webapp/images/logo-135x135.png
Normal file
BIN
wise-editor/src/main/webapp/images/logo-135x135.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
wise-editor/src/main/webapp/images/logo-head-only.png
Normal file
BIN
wise-editor/src/main/webapp/images/logo-head-only.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
@ -18,12 +18,17 @@
|
||||
|
||||
package com.wisemapping.importer;
|
||||
|
||||
import java.io.OutputStream;
|
||||
|
||||
import org.apache.xml.serialize.OutputFormat;
|
||||
import org.apache.xml.serialize.XMLSerializer;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.w3c.dom.Document;
|
||||
import org.xml.sax.Attributes;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.TreeMap;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public class JaxbCDATAMarshaller {
|
||||
@ -46,10 +51,106 @@ public class JaxbCDATAMarshaller {
|
||||
of.setEncoding("UTF-8");
|
||||
|
||||
// create the serializer
|
||||
XMLSerializer result = new XMLSerializer(of);
|
||||
XMLSerializer result = new XMLSerializer(of) {
|
||||
@Override
|
||||
public void startElement(String s, String s1, String s2, Attributes attributes) throws SAXException {
|
||||
super.startElement(s, s1, s2, new SortedAttributesDecorator(attributes));
|
||||
}
|
||||
};
|
||||
result.setOutputByteStream(out);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
private static class SortedAttributesDecorator implements Attributes {
|
||||
|
||||
final Map<Integer, Integer> sortedToUnsorted = new HashMap<Integer, Integer>();
|
||||
final Map<Integer, Integer> unsortedToSorted = new HashMap<Integer, Integer>();
|
||||
|
||||
private Attributes delegated;
|
||||
|
||||
SortedAttributesDecorator(final Attributes delegated) {
|
||||
this.delegated = delegated;
|
||||
int length = this.getLength();
|
||||
|
||||
// Sort by local part ...
|
||||
final Map<String, Integer> sortedMap = new TreeMap<String, Integer>();
|
||||
for (int i = 0; i < length; i++) {
|
||||
final String localName = delegated.getLocalName(i);
|
||||
sortedMap.put(localName, i);
|
||||
}
|
||||
|
||||
Set<String> keySet = sortedMap.keySet();
|
||||
int sortedIndex = 0;
|
||||
for (String key : keySet) {
|
||||
final Integer unsortedIndex = sortedMap.get(key);
|
||||
sortedToUnsorted.put(sortedIndex, unsortedIndex);
|
||||
unsortedToSorted.put(unsortedIndex, sortedIndex);
|
||||
sortedIndex++;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getLength() {
|
||||
return delegated.getLength();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getURI(int index) {
|
||||
return delegated.getURI(sortedToUnsorted.get(index));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getLocalName(int index) {
|
||||
return delegated.getLocalName(sortedToUnsorted.get(index));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getQName(int index) {
|
||||
return delegated.getQName(sortedToUnsorted.get(index));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getType(int index) {
|
||||
return delegated.getType(sortedToUnsorted.get(index));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getValue(int index) {
|
||||
return delegated.getValue(sortedToUnsorted.get(index));
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getIndex(String uri, String localName) {
|
||||
int unsorted = delegated.getIndex(uri, localName);
|
||||
return unsortedToSorted.get(unsorted);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getIndex(String qName) {
|
||||
int unsorted = delegated.getIndex(qName);
|
||||
return unsortedToSorted.get(unsorted);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getType(String uri, String localName) {
|
||||
return delegated.getType(uri, localName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getType(String qName) {
|
||||
return delegated.getType(qName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getValue(String uri, String localName) {
|
||||
return delegated.getValue(uri, localName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getValue(String qName) {
|
||||
return delegated.getValue(qName);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="This is the root node" ID="ID_0">
|
||||
<node TEXT="Child Level 1 Right 1" POSITION="right" ID="ID_1"/>
|
||||
<node TEXT="Child Level 1 Left 1" POSITION="left" ID="ID_2">
|
||||
<node TEXT="Child Level 2 Left 11" POSITION="left" ID="ID_3"/>
|
||||
<node TEXT="Child Level 2 Left 12" POSITION="left" ID="ID_4"/>
|
||||
<node ID="ID_0" TEXT="This is the root node">
|
||||
<node ID="ID_1" POSITION="right" TEXT="Child Level 1 Right 1"/>
|
||||
<node ID="ID_2" POSITION="left" TEXT="Child Level 1 Left 1">
|
||||
<node ID="ID_3" POSITION="left" TEXT="Child Level 2 Left 11"/>
|
||||
<node ID="ID_4" POSITION="left" TEXT="Child Level 2 Left 12"/>
|
||||
</node>
|
||||
<node TEXT="Child Level 1 Right 2" POSITION="right" ID="ID_5"/>
|
||||
<node TEXT="Child Level 1 Left 2" POSITION="left" ID="ID_6">
|
||||
<node TEXT="Child Level 2 Left 21 " POSITION="left" ID="ID_7"/>
|
||||
<node TEXT="Child Level 2 Left 22" POSITION="left" ID="ID_8"/>
|
||||
<node ID="ID_5" POSITION="right" TEXT="Child Level 1 Right 2"/>
|
||||
<node ID="ID_6" POSITION="left" TEXT="Child Level 1 Left 2">
|
||||
<node ID="ID_7" POSITION="left" TEXT="Child Level 2 Left 21 "/>
|
||||
<node ID="ID_8" POSITION="left" TEXT="Child Level 2 Left 22"/>
|
||||
</node>
|
||||
</node>
|
||||
</map>
|
@ -1,28 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[This is the root node]]></text>
|
||||
<topic id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Child Level 1 Right 1]]></text>
|
||||
</topic>
|
||||
<topic id="2" position="-200,0" order="0" shape="line">
|
||||
<topic id="2" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Child Level 1 Left 1]]></text>
|
||||
<topic id="3" position="-290,-25" order="0" shape="line">
|
||||
<topic id="3" order="0" position="-290,-25" shape="line">
|
||||
<text><![CDATA[Child Level 2 Left 11]]></text>
|
||||
</topic>
|
||||
<topic id="4" position="-290,0" order="1" shape="line">
|
||||
<topic id="4" order="1" position="-290,0" shape="line">
|
||||
<text><![CDATA[Child Level 2 Left 12]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="5" position="200,100" order="4" shape="line">
|
||||
<topic id="5" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[Child Level 1 Right 2]]></text>
|
||||
</topic>
|
||||
<topic id="6" position="-200,100" order="4" shape="line">
|
||||
<topic id="6" order="4" position="-200,100" shape="line">
|
||||
<text><![CDATA[Child Level 1 Left 2]]></text>
|
||||
<topic id="7" position="-290,75" order="0" shape="line">
|
||||
<topic id="7" order="0" position="-290,75" shape="line">
|
||||
<text><![CDATA[Child Level 2 Left 21 ]]></text>
|
||||
</topic>
|
||||
<topic id="8" position="-290,100" order="1" shape="line">
|
||||
<topic id="8" order="1" position="-290,100" shape="line">
|
||||
<text><![CDATA[Child Level 2 Left 22]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
|
@ -1,63 +1,63 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Baugruppe :: Systemanforderungen" ID="ID_0">
|
||||
<node TEXT="[1] Motor …" POSITION="right" ID="ID_1">
|
||||
<node TEXT="[27] Isolationssystem …" POSITION="right" ID="ID_2"/>
|
||||
<node TEXT="8[2] …" POSITION="right" ID="ID_3"/>
|
||||
<node TEXT="[170] Multiumrichterbetrieb …" POSITION="right" ID="ID_4"/>
|
||||
<node TEXT="[22] Thermistor …" POSITION="right" ID="ID_5"/>
|
||||
<node TEXT="[2] Stecker …" POSITION="right" ID="ID_6">
|
||||
<node TEXT="[169] …" POSITION="right" ID="ID_7"/>
|
||||
<node TEXT="[5] Kabel …" POSITION="right" ID="ID_8"/>
|
||||
<node TEXT="8[31] Strombuchse …" POSITION="right" ID="ID_9">
|
||||
<node TEXT="8[2] Stecker …" POSITION="right" ID="ID_10"/>
|
||||
<node TEXT="8[173] Stecker …" POSITION="right" ID="ID_11"/>
|
||||
<node ID="ID_0" TEXT="Baugruppe :: Systemanforderungen">
|
||||
<node ID="ID_1" POSITION="right" TEXT="[1] Motor …">
|
||||
<node ID="ID_2" POSITION="right" TEXT="[27] Isolationssystem …"/>
|
||||
<node ID="ID_3" POSITION="right" TEXT="8[2] …"/>
|
||||
<node ID="ID_4" POSITION="right" TEXT="[170] Multiumrichterbetrieb …"/>
|
||||
<node ID="ID_5" POSITION="right" TEXT="[22] Thermistor …"/>
|
||||
<node ID="ID_6" POSITION="right" TEXT="[2] Stecker …">
|
||||
<node ID="ID_7" POSITION="right" TEXT="[169] …"/>
|
||||
<node ID="ID_8" POSITION="right" TEXT="[5] Kabel …"/>
|
||||
<node ID="ID_9" POSITION="right" TEXT="8[31] Strombuchse …">
|
||||
<node ID="ID_10" POSITION="right" TEXT="8[2] Stecker …"/>
|
||||
<node ID="ID_11" POSITION="right" TEXT="8[173] Stecker …"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="8[173] Stecker …" POSITION="right" ID="ID_12">
|
||||
<node TEXT="8[2] Stecker …" POSITION="right" ID="ID_13"/>
|
||||
<node ID="ID_12" POSITION="right" TEXT="8[173] Stecker …">
|
||||
<node ID="ID_13" POSITION="right" TEXT="8[2] Stecker …"/>
|
||||
</node>
|
||||
<node TEXT="8[1] …" POSITION="right" ID="ID_14"/>
|
||||
<node TEXT="8[5] …" POSITION="right" ID="ID_15"/>
|
||||
<node ID="ID_14" POSITION="right" TEXT="8[1] …"/>
|
||||
<node ID="ID_15" POSITION="right" TEXT="8[5] …"/>
|
||||
</node>
|
||||
<node TEXT="[185] Motor …" POSITION="right" ID="ID_16"/>
|
||||
<node TEXT="3 Umrichter" POSITION="right" ID="ID_17">
|
||||
<node TEXT="[31] Strombuchse …" POSITION="right" ID="ID_18"/>
|
||||
<node TEXT="8[2] Stecker …" POSITION="right" ID="ID_19">
|
||||
<node TEXT="8[31] Strombuchse …" POSITION="right" ID="ID_20"/>
|
||||
<node TEXT="8[173] Stecker …" POSITION="right" ID="ID_21"/>
|
||||
<node ID="ID_16" POSITION="right" TEXT="[185] Motor …"/>
|
||||
<node ID="ID_17" POSITION="right" TEXT="3 Umrichter">
|
||||
<node ID="ID_18" POSITION="right" TEXT="[31] Strombuchse …"/>
|
||||
<node ID="ID_19" POSITION="right" TEXT="8[2] Stecker …">
|
||||
<node ID="ID_20" POSITION="right" TEXT="8[31] Strombuchse …"/>
|
||||
<node ID="ID_21" POSITION="right" TEXT="8[173] Stecker …"/>
|
||||
</node>
|
||||
<node TEXT="8[173] Stecker …" POSITION="right" ID="ID_22">
|
||||
<node TEXT="8[2] Stecker …" POSITION="right" ID="ID_23"/>
|
||||
<node ID="ID_22" POSITION="right" TEXT="8[173] Stecker …">
|
||||
<node ID="ID_23" POSITION="right" TEXT="8[2] Stecker …"/>
|
||||
</node>
|
||||
<node TEXT="[4] max. Außenleiterspannung …" POSITION="right" ID="ID_24"/>
|
||||
<node TEXT="[13]" POSITION="right" ID="ID_25">
|
||||
<node TEXT="[14]" POSITION="right" ID="ID_26">
|
||||
<node TEXT="[15] …" POSITION="right" ID="ID_27"/>
|
||||
<node TEXT="[16] …" POSITION="right" ID="ID_28"/>
|
||||
<node TEXT="[17] …" POSITION="right" ID="ID_29"/>
|
||||
<node ID="ID_24" POSITION="right" TEXT="[4] max. Außenleiterspannung …"/>
|
||||
<node ID="ID_25" POSITION="right" TEXT="[13]">
|
||||
<node ID="ID_26" POSITION="right" TEXT="[14]">
|
||||
<node ID="ID_27" POSITION="right" TEXT="[15] …"/>
|
||||
<node ID="ID_28" POSITION="right" TEXT="[16] …"/>
|
||||
<node ID="ID_29" POSITION="right" TEXT="[17] …"/>
|
||||
</node>
|
||||
<node TEXT="[18]" POSITION="right" ID="ID_30">
|
||||
<node TEXT="[19] …" POSITION="right" ID="ID_31"/>
|
||||
<node TEXT="[20] …" POSITION="right" ID="ID_32"/>
|
||||
<node TEXT="[21] …" POSITION="right" ID="ID_33"/>
|
||||
<node ID="ID_30" POSITION="right" TEXT="[18]">
|
||||
<node ID="ID_31" POSITION="right" TEXT="[19] …"/>
|
||||
<node ID="ID_32" POSITION="right" TEXT="[20] …"/>
|
||||
<node ID="ID_33" POSITION="right" TEXT="[21] …"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="3.3 Steuerung" POSITION="right" ID="ID_34"/>
|
||||
<node ID="ID_34" POSITION="right" TEXT="3.3 Steuerung"/>
|
||||
</node>
|
||||
<node TEXT="4 Bremse" POSITION="right" ID="ID_35">
|
||||
<node TEXT="[172] Bremsansteuerung …" POSITION="right" ID="ID_36"/>
|
||||
<node TEXT="[173] Stecker …" POSITION="right" ID="ID_37">
|
||||
<node TEXT="[175] Kabel …" POSITION="right" ID="ID_38"/>
|
||||
<node TEXT="8[2] Stecker …" POSITION="right" ID="ID_39">
|
||||
<node TEXT="8[31] Strombuchse …" POSITION="right" ID="ID_40"/>
|
||||
<node TEXT="8[173] Stecker …" POSITION="right" ID="ID_41"/>
|
||||
<node ID="ID_35" POSITION="right" TEXT="4 Bremse">
|
||||
<node ID="ID_36" POSITION="right" TEXT="[172] Bremsansteuerung …"/>
|
||||
<node ID="ID_37" POSITION="right" TEXT="[173] Stecker …">
|
||||
<node ID="ID_38" POSITION="right" TEXT="[175] Kabel …"/>
|
||||
<node ID="ID_39" POSITION="right" TEXT="8[2] Stecker …">
|
||||
<node ID="ID_40" POSITION="right" TEXT="8[31] Strombuchse …"/>
|
||||
<node ID="ID_41" POSITION="right" TEXT="8[173] Stecker …"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="[178] Bremslufthebel …" POSITION="right" ID="ID_42"/>
|
||||
<node TEXT="[179] Reaktionszeit …" POSITION="right" ID="ID_43"/>
|
||||
<node TEXT="[180] Bremsmoment …" POSITION="right" ID="ID_44"/>
|
||||
<node TEXT="[181] Notbetriebsart …" POSITION="right" ID="ID_45"/>
|
||||
<node TEXT="[182] Bremsüberwachung …" POSITION="right" ID="ID_46"/>
|
||||
<node ID="ID_42" POSITION="right" TEXT="[178] Bremslufthebel …"/>
|
||||
<node ID="ID_43" POSITION="right" TEXT="[179] Reaktionszeit …"/>
|
||||
<node ID="ID_44" POSITION="right" TEXT="[180] Bremsmoment …"/>
|
||||
<node ID="ID_45" POSITION="right" TEXT="[181] Notbetriebsart …"/>
|
||||
<node ID="ID_46" POSITION="right" TEXT="[182] Bremsüberwachung …"/>
|
||||
</node>
|
||||
</node>
|
||||
</map>
|
@ -1,142 +1,142 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[Baugruppe :: Systemanforderungen]]></text>
|
||||
<topic id="1" position="200,-100" order="3" shape="line">
|
||||
<topic id="1" order="3" position="200,-100" shape="line">
|
||||
<text><![CDATA[[1] Motor …]]></text>
|
||||
<topic id="2" position="290,-200" order="0" shape="line">
|
||||
<topic id="2" order="0" position="290,-200" shape="line">
|
||||
<text><![CDATA[[27] Isolationssystem …]]></text>
|
||||
</topic>
|
||||
<topic id="3" position="290,-175" order="1" shape="line">
|
||||
<topic id="3" order="1" position="290,-175" shape="line">
|
||||
<text><![CDATA[8[2] …]]></text>
|
||||
</topic>
|
||||
<topic id="4" position="290,-150" order="2" shape="line">
|
||||
<topic id="4" order="2" position="290,-150" shape="line">
|
||||
<text><![CDATA[[170] Multiumrichterbetrieb …]]></text>
|
||||
</topic>
|
||||
<topic id="5" position="290,-125" order="3" shape="line">
|
||||
<topic id="5" order="3" position="290,-125" shape="line">
|
||||
<text><![CDATA[[22] Thermistor …]]></text>
|
||||
</topic>
|
||||
<topic id="6" position="290,-100" order="4" shape="line">
|
||||
<topic id="6" order="4" position="290,-100" shape="line">
|
||||
<text><![CDATA[[2] Stecker …]]></text>
|
||||
<topic id="7" position="380,-125" order="0" shape="line">
|
||||
<topic id="7" order="0" position="380,-125" shape="line">
|
||||
<text><![CDATA[[169] …]]></text>
|
||||
</topic>
|
||||
<topic id="8" position="380,-100" order="1" shape="line">
|
||||
<topic id="8" order="1" position="380,-100" shape="line">
|
||||
<text><![CDATA[[5] Kabel …]]></text>
|
||||
</topic>
|
||||
<topic id="9" position="380,-75" order="2" shape="line">
|
||||
<topic id="9" order="2" position="380,-75" shape="line">
|
||||
<text><![CDATA[8[31] Strombuchse …]]></text>
|
||||
<topic id="10" position="470,-100" order="0" shape="line">
|
||||
<topic id="10" order="0" position="470,-100" shape="line">
|
||||
<text><![CDATA[8[2] Stecker …]]></text>
|
||||
</topic>
|
||||
<topic id="11" position="470,-75" order="1" shape="line">
|
||||
<topic id="11" order="1" position="470,-75" shape="line">
|
||||
<text><![CDATA[8[173] Stecker …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="12" position="290,-75" order="5" shape="line">
|
||||
<topic id="12" order="5" position="290,-75" shape="line">
|
||||
<text><![CDATA[8[173] Stecker …]]></text>
|
||||
<topic id="13" position="380,-75" order="0" shape="line">
|
||||
<topic id="13" order="0" position="380,-75" shape="line">
|
||||
<text><![CDATA[8[2] Stecker …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="14" position="290,-50" order="6" shape="line">
|
||||
<topic id="14" order="6" position="290,-50" shape="line">
|
||||
<text><![CDATA[8[1] …]]></text>
|
||||
</topic>
|
||||
<topic id="15" position="290,-25" order="7" shape="line">
|
||||
<topic id="15" order="7" position="290,-25" shape="line">
|
||||
<text><![CDATA[8[5] …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="16" position="200,0" order="0" shape="line">
|
||||
<topic id="16" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[[185] Motor …]]></text>
|
||||
</topic>
|
||||
<topic id="17" position="200,100" order="4" shape="line">
|
||||
<topic id="17" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[3 Umrichter]]></text>
|
||||
<topic id="18" position="290,25" order="0" shape="line">
|
||||
<topic id="18" order="0" position="290,25" shape="line">
|
||||
<text><![CDATA[[31] Strombuchse …]]></text>
|
||||
</topic>
|
||||
<topic id="19" position="290,50" order="1" shape="line">
|
||||
<topic id="19" order="1" position="290,50" shape="line">
|
||||
<text><![CDATA[8[2] Stecker …]]></text>
|
||||
<topic id="20" position="380,25" order="0" shape="line">
|
||||
<topic id="20" order="0" position="380,25" shape="line">
|
||||
<text><![CDATA[8[31] Strombuchse …]]></text>
|
||||
</topic>
|
||||
<topic id="21" position="380,50" order="1" shape="line">
|
||||
<topic id="21" order="1" position="380,50" shape="line">
|
||||
<text><![CDATA[8[173] Stecker …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="22" position="290,75" order="2" shape="line">
|
||||
<topic id="22" order="2" position="290,75" shape="line">
|
||||
<text><![CDATA[8[173] Stecker …]]></text>
|
||||
<topic id="23" position="380,75" order="0" shape="line">
|
||||
<topic id="23" order="0" position="380,75" shape="line">
|
||||
<text><![CDATA[8[2] Stecker …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="24" position="290,100" order="3" shape="line">
|
||||
<topic id="24" order="3" position="290,100" shape="line">
|
||||
<text><![CDATA[[4] max. Außenleiterspannung …]]></text>
|
||||
</topic>
|
||||
<topic id="25" position="290,125" order="4" shape="line">
|
||||
<topic id="25" order="4" position="290,125" shape="line">
|
||||
<text><![CDATA[[13]]]></text>
|
||||
<topic id="26" position="380,100" order="0" shape="line">
|
||||
<topic id="26" order="0" position="380,100" shape="line">
|
||||
<text><![CDATA[[14]]]></text>
|
||||
<topic id="27" position="470,75" order="0" shape="line">
|
||||
<topic id="27" order="0" position="470,75" shape="line">
|
||||
<text><![CDATA[[15] …]]></text>
|
||||
</topic>
|
||||
<topic id="28" position="470,100" order="1" shape="line">
|
||||
<topic id="28" order="1" position="470,100" shape="line">
|
||||
<text><![CDATA[[16] …]]></text>
|
||||
</topic>
|
||||
<topic id="29" position="470,125" order="2" shape="line">
|
||||
<topic id="29" order="2" position="470,125" shape="line">
|
||||
<text><![CDATA[[17] …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="30" position="380,125" order="1" shape="line">
|
||||
<topic id="30" order="1" position="380,125" shape="line">
|
||||
<text><![CDATA[[18]]]></text>
|
||||
<topic id="31" position="470,100" order="0" shape="line">
|
||||
<topic id="31" order="0" position="470,100" shape="line">
|
||||
<text><![CDATA[[19] …]]></text>
|
||||
</topic>
|
||||
<topic id="32" position="470,125" order="1" shape="line">
|
||||
<topic id="32" order="1" position="470,125" shape="line">
|
||||
<text><![CDATA[[20] …]]></text>
|
||||
</topic>
|
||||
<topic id="33" position="470,150" order="2" shape="line">
|
||||
<topic id="33" order="2" position="470,150" shape="line">
|
||||
<text><![CDATA[[21] …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="34" position="290,150" order="5" shape="line">
|
||||
<topic id="34" order="5" position="290,150" shape="line">
|
||||
<text><![CDATA[3.3 Steuerung]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="35" position="200,200" order="8" shape="line">
|
||||
<topic id="35" order="8" position="200,200" shape="line">
|
||||
<text><![CDATA[4 Bremse]]></text>
|
||||
<topic id="36" position="290,125" order="0" shape="line">
|
||||
<topic id="36" order="0" position="290,125" shape="line">
|
||||
<text><![CDATA[[172] Bremsansteuerung …]]></text>
|
||||
</topic>
|
||||
<topic id="37" position="290,150" order="1" shape="line">
|
||||
<topic id="37" order="1" position="290,150" shape="line">
|
||||
<text><![CDATA[[173] Stecker …]]></text>
|
||||
<topic id="38" position="380,125" order="0" shape="line">
|
||||
<topic id="38" order="0" position="380,125" shape="line">
|
||||
<text><![CDATA[[175] Kabel …]]></text>
|
||||
</topic>
|
||||
<topic id="39" position="380,150" order="1" shape="line">
|
||||
<topic id="39" order="1" position="380,150" shape="line">
|
||||
<text><![CDATA[8[2] Stecker …]]></text>
|
||||
<topic id="40" position="470,125" order="0" shape="line">
|
||||
<topic id="40" order="0" position="470,125" shape="line">
|
||||
<text><![CDATA[8[31] Strombuchse …]]></text>
|
||||
</topic>
|
||||
<topic id="41" position="470,150" order="1" shape="line">
|
||||
<topic id="41" order="1" position="470,150" shape="line">
|
||||
<text><![CDATA[8[173] Stecker …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="42" position="290,175" order="2" shape="line">
|
||||
<topic id="42" order="2" position="290,175" shape="line">
|
||||
<text><![CDATA[[178] Bremslufthebel …]]></text>
|
||||
</topic>
|
||||
<topic id="43" position="290,200" order="3" shape="line">
|
||||
<topic id="43" order="3" position="290,200" shape="line">
|
||||
<text><![CDATA[[179] Reaktionszeit …]]></text>
|
||||
</topic>
|
||||
<topic id="44" position="290,225" order="4" shape="line">
|
||||
<topic id="44" order="4" position="290,225" shape="line">
|
||||
<text><![CDATA[[180] Bremsmoment …]]></text>
|
||||
</topic>
|
||||
<topic id="45" position="290,250" order="5" shape="line">
|
||||
<topic id="45" order="5" position="290,250" shape="line">
|
||||
<text><![CDATA[[181] Notbetriebsart …]]></text>
|
||||
</topic>
|
||||
<topic id="46" position="290,275" order="6" shape="line">
|
||||
<topic id="46" order="6" position="290,275" shape="line">
|
||||
<text><![CDATA[[182] Bremsüberwachung …]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
|
@ -1,38 +1,38 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Fonts" ID="ID_0">
|
||||
<node TEXT="Styles" POSITION="right" ID="ID_1">
|
||||
<node TEXT="Bold" POSITION="right" ID="ID_2">
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node ID="ID_0" TEXT="Fonts">
|
||||
<node ID="ID_1" POSITION="right" TEXT="Styles">
|
||||
<node ID="ID_2" POSITION="right" TEXT="Bold">
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
<node TEXT="Italic" POSITION="right" ID="ID_3">
|
||||
<font SIZE="8" NAME="Arial" ITALIC="true"/>
|
||||
<node ID="ID_3" POSITION="right" TEXT="Italic">
|
||||
<font ITALIC="true" NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Sizes" POSITION="left" ID="ID_4">
|
||||
<node TEXT="Normal----" POSITION="left" ID="ID_5">
|
||||
<font SIZE="6" NAME="Arial"/>
|
||||
<node ID="ID_4" POSITION="left" TEXT="Sizes">
|
||||
<node ID="ID_5" POSITION="left" TEXT="Normal----">
|
||||
<font NAME="Arial" SIZE="6"/>
|
||||
</node>
|
||||
<node TEXT="Normal---" POSITION="left" ID="ID_6">
|
||||
<font SIZE="6" NAME="Arial"/>
|
||||
<node ID="ID_6" POSITION="left" TEXT="Normal---">
|
||||
<font NAME="Arial" SIZE="6"/>
|
||||
</node>
|
||||
<node TEXT="Normal--" POSITION="left" ID="ID_7">
|
||||
<font SIZE="6" NAME="Arial"/>
|
||||
<node ID="ID_7" POSITION="left" TEXT="Normal--">
|
||||
<font NAME="Arial" SIZE="6"/>
|
||||
</node>
|
||||
<node TEXT="Normal-" POSITION="left" ID="ID_8">
|
||||
<font SIZE="6" NAME="Arial"/>
|
||||
<node ID="ID_8" POSITION="left" TEXT="Normal-">
|
||||
<font NAME="Arial" SIZE="6"/>
|
||||
</node>
|
||||
<node TEXT="Normal" POSITION="left" ID="ID_9"/>
|
||||
<node TEXT="Nomal+" POSITION="left" ID="ID_10">
|
||||
<font SIZE="8" NAME="Arial"/>
|
||||
<node ID="ID_9" POSITION="left" TEXT="Normal"/>
|
||||
<node ID="ID_10" POSITION="left" TEXT="Nomal+">
|
||||
<font NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
<node TEXT="Normal++" POSITION="left" ID="ID_11">
|
||||
<font SIZE="8" NAME="Arial"/>
|
||||
<node ID="ID_11" POSITION="left" TEXT="Normal++">
|
||||
<font NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
<node TEXT="Normal+++" POSITION="left" ID="ID_12">
|
||||
<font SIZE="8" NAME="Arial"/>
|
||||
<node ID="ID_12" POSITION="left" TEXT="Normal+++">
|
||||
<font NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
<node TEXT="Normal++++" POSITION="left" ID="ID_13">
|
||||
<font SIZE="10" NAME="Arial"/>
|
||||
<node ID="ID_13" POSITION="left" TEXT="Normal++++">
|
||||
<font NAME="Arial" SIZE="10"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,53 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[Fonts]]></text>
|
||||
<topic id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Styles]]></text>
|
||||
<topic id="2" position="290,-25" order="0"
|
||||
fontStyle="Arial;8;;bold;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;bold;;" id="2" order="0"
|
||||
position="290,-25" shape="line">
|
||||
<text><![CDATA[Bold]]></text>
|
||||
</topic>
|
||||
<topic id="3" position="290,0" order="1"
|
||||
fontStyle="Arial;8;;;italic;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;italic;" id="3" order="1"
|
||||
position="290,0" shape="line">
|
||||
<text><![CDATA[Italic]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="4" position="-200,0" order="0" shape="line">
|
||||
<topic id="4" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Sizes]]></text>
|
||||
<topic id="5" position="-290,-100" order="0"
|
||||
fontStyle="Arial;6;;;;" shape="line">
|
||||
<topic fontStyle="Arial;6;;;;" id="5" order="0"
|
||||
position="-290,-100" shape="line">
|
||||
<text><![CDATA[Normal----]]></text>
|
||||
</topic>
|
||||
<topic id="6" position="-290,-75" order="1"
|
||||
fontStyle="Arial;6;;;;" shape="line">
|
||||
<topic fontStyle="Arial;6;;;;" id="6" order="1"
|
||||
position="-290,-75" shape="line">
|
||||
<text><![CDATA[Normal---]]></text>
|
||||
</topic>
|
||||
<topic id="7" position="-290,-50" order="2"
|
||||
fontStyle="Arial;6;;;;" shape="line">
|
||||
<topic fontStyle="Arial;6;;;;" id="7" order="2"
|
||||
position="-290,-50" shape="line">
|
||||
<text><![CDATA[Normal--]]></text>
|
||||
</topic>
|
||||
<topic id="8" position="-290,-25" order="3"
|
||||
fontStyle="Arial;6;;;;" shape="line">
|
||||
<topic fontStyle="Arial;6;;;;" id="8" order="3"
|
||||
position="-290,-25" shape="line">
|
||||
<text><![CDATA[Normal-]]></text>
|
||||
</topic>
|
||||
<topic id="9" position="-290,0" order="4" shape="line">
|
||||
<topic id="9" order="4" position="-290,0" shape="line">
|
||||
<text><![CDATA[Normal]]></text>
|
||||
</topic>
|
||||
<topic id="10" position="-290,25" order="5"
|
||||
fontStyle="Arial;8;;;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;;" id="10" order="5"
|
||||
position="-290,25" shape="line">
|
||||
<text><![CDATA[Nomal+]]></text>
|
||||
</topic>
|
||||
<topic id="11" position="-290,50" order="6"
|
||||
fontStyle="Arial;8;;;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;;" id="11" order="6"
|
||||
position="-290,50" shape="line">
|
||||
<text><![CDATA[Normal++]]></text>
|
||||
</topic>
|
||||
<topic id="12" position="-290,75" order="7"
|
||||
fontStyle="Arial;8;;;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;;" id="12" order="7"
|
||||
position="-290,75" shape="line">
|
||||
<text><![CDATA[Normal+++]]></text>
|
||||
</topic>
|
||||
<topic id="13" position="-290,100" order="8"
|
||||
fontStyle="Arial;10;;;;" shape="line">
|
||||
<topic fontStyle="Arial;10;;;;" id="13" order="8"
|
||||
position="-290,100" shape="line">
|
||||
<text><![CDATA[Normal++++]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="i18n" ID="ID_0">
|
||||
<node TEXT="Este es un é con acento" POSITION="right" ID="ID_1"/>
|
||||
<node TEXT="Este es una ñ" POSITION="left" ID="ID_2"/>
|
||||
<node TEXT="這是一個樣本 Japanise。" POSITION="right" ID="ID_3"/>
|
||||
<node ID="ID_0" TEXT="i18n">
|
||||
<node ID="ID_1" POSITION="right" TEXT="Este es un é con acento"/>
|
||||
<node ID="ID_2" POSITION="left" TEXT="Este es una ñ"/>
|
||||
<node ID="ID_3" POSITION="right" TEXT="這是一個樣本 Japanise。"/>
|
||||
</node>
|
||||
</map>
|
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[i18n]]></text>
|
||||
<topic id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Este es un é con acento]]></text>
|
||||
</topic>
|
||||
<topic id="2" position="-200,0" order="0" shape="line">
|
||||
<topic id="2" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Este es una ñ]]></text>
|
||||
</topic>
|
||||
<topic id="3" position="200,100" order="4" shape="line">
|
||||
<topic id="3" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[這是一個樣本 Japanise。]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="أَبْجَدِيَّة عَرَبِيَّة" ID="ID_0">
|
||||
<node TEXT="أَبْجَدِيَّة عَرَبِ" POSITION="right" ID="ID_1">
|
||||
<node ID="ID_0" TEXT="أَبْجَدِيَّة عَرَبِيَّة">
|
||||
<node ID="ID_1" POSITION="right" TEXT="أَبْجَدِيَّة عَرَبِ">
|
||||
<richcontent TYPE="NOTE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -10,7 +10,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_2">
|
||||
<node ID="ID_2" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
|
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[أَبْجَدِيَّة عَرَبِيَّة]]></text>
|
||||
<topic id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[أَبْجَدِيَّة عَرَبِ]]></text>
|
||||
<note>
|
||||
<text><![CDATA[This is a not in languange أَبْجَدِيَّة عَرَبِ]]></text>
|
||||
</note>
|
||||
</topic>
|
||||
<topic id="2" position="-200,0" order="0" shape="line">
|
||||
<topic id="2" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Long text node:
|
||||
أَبْجَدِيَّة عَرَب]]></text>
|
||||
</topic>
|
||||
|
@ -1,195 +1,195 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="This is the root node" ID="ID_0">
|
||||
<node TEXT="Simbols" POSITION="right" ID="ID_1">
|
||||
<node TEXT="Warning" POSITION="right" ID="ID_2">
|
||||
<node ID="ID_0" TEXT="This is the root node">
|
||||
<node ID="ID_1" POSITION="right" TEXT="Simbols">
|
||||
<node ID="ID_2" POSITION="right" TEXT="Warning">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="No Ok" POSITION="right" ID="ID_3">
|
||||
<node ID="ID_3" POSITION="right" TEXT="No Ok">
|
||||
<icon BUILTIN="button_cancel"/>
|
||||
</node>
|
||||
<node TEXT="Ok" POSITION="right" ID="ID_4">
|
||||
<node ID="ID_4" POSITION="right" TEXT="Ok">
|
||||
<icon BUILTIN="button_ok"/>
|
||||
</node>
|
||||
<node TEXT="Info" POSITION="right" ID="ID_5">
|
||||
<node ID="ID_5" POSITION="right" TEXT="Info">
|
||||
<icon BUILTIN="info"/>
|
||||
</node>
|
||||
<node TEXT="No Entry" POSITION="right" ID="ID_6">
|
||||
<node ID="ID_6" POSITION="right" TEXT="No Entry">
|
||||
<icon BUILTIN="closed"/>
|
||||
</node>
|
||||
<node TEXT="Stop" POSITION="right" ID="ID_7">
|
||||
<node ID="ID_7" POSITION="right" TEXT="Stop">
|
||||
<icon BUILTIN="stop-sign"/>
|
||||
</node>
|
||||
<node TEXT="Lamp" POSITION="right" ID="ID_8">
|
||||
<node ID="ID_8" POSITION="right" TEXT="Lamp">
|
||||
<icon BUILTIN="idea"/>
|
||||
</node>
|
||||
<node TEXT="! Simbol" POSITION="right" ID="ID_9"/>
|
||||
<node TEXT="Question Mark" POSITION="right" ID="ID_10">
|
||||
<node ID="ID_9" POSITION="right" TEXT="! Simbol"/>
|
||||
<node ID="ID_10" POSITION="right" TEXT="Question Mark">
|
||||
<icon BUILTIN="help"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Numbers" POSITION="left" ID="ID_11" FOLDED="true">
|
||||
<node TEXT="1" POSITION="left" ID="ID_12">
|
||||
<node FOLDED="true" ID="ID_11" POSITION="left" TEXT="Numbers">
|
||||
<node ID="ID_12" POSITION="left" TEXT="1">
|
||||
<icon BUILTIN="full-1"/>
|
||||
</node>
|
||||
<node TEXT="2" POSITION="left" ID="ID_13">
|
||||
<node ID="ID_13" POSITION="left" TEXT="2">
|
||||
<icon BUILTIN="full-2"/>
|
||||
</node>
|
||||
<node TEXT="3" POSITION="left" ID="ID_14">
|
||||
<node ID="ID_14" POSITION="left" TEXT="3">
|
||||
<icon BUILTIN="full-3"/>
|
||||
</node>
|
||||
<node TEXT="4" POSITION="left" ID="ID_15">
|
||||
<node ID="ID_15" POSITION="left" TEXT="4">
|
||||
<icon BUILTIN="full-4"/>
|
||||
</node>
|
||||
<node TEXT="5" POSITION="left" ID="ID_16">
|
||||
<node ID="ID_16" POSITION="left" TEXT="5">
|
||||
<icon BUILTIN="full-5"/>
|
||||
</node>
|
||||
<node TEXT="6" POSITION="left" ID="ID_17">
|
||||
<node ID="ID_17" POSITION="left" TEXT="6">
|
||||
<icon BUILTIN="full-6"/>
|
||||
</node>
|
||||
<node TEXT="7" POSITION="left" ID="ID_18"/>
|
||||
<node TEXT="8" POSITION="left" ID="ID_19"/>
|
||||
<node TEXT="9" POSITION="left" ID="ID_20"/>
|
||||
<node TEXT="0" POSITION="left" ID="ID_21">
|
||||
<node ID="ID_18" POSITION="left" TEXT="7"/>
|
||||
<node ID="ID_19" POSITION="left" TEXT="8"/>
|
||||
<node ID="ID_20" POSITION="left" TEXT="9"/>
|
||||
<node ID="ID_21" POSITION="left" TEXT="0">
|
||||
<icon BUILTIN="full-0"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Trafic" POSITION="right" ID="ID_22">
|
||||
<node TEXT="Read" POSITION="right" ID="ID_23"/>
|
||||
<node TEXT="Green" POSITION="right" ID="ID_24"/>
|
||||
<node TEXT="Yellow" POSITION="right" ID="ID_25"/>
|
||||
<node ID="ID_22" POSITION="right" TEXT="Trafic">
|
||||
<node ID="ID_23" POSITION="right" TEXT="Read"/>
|
||||
<node ID="ID_24" POSITION="right" TEXT="Green"/>
|
||||
<node ID="ID_25" POSITION="right" TEXT="Yellow"/>
|
||||
</node>
|
||||
<node TEXT="Arrow" POSITION="left" ID="ID_26" FOLDED="true">
|
||||
<node TEXT="Back" POSITION="left" ID="ID_27">
|
||||
<node FOLDED="true" ID="ID_26" POSITION="left" TEXT="Arrow">
|
||||
<node ID="ID_27" POSITION="left" TEXT="Back">
|
||||
<icon BUILTIN="back"/>
|
||||
</node>
|
||||
<node TEXT="Forward" POSITION="left" ID="ID_28">
|
||||
<node ID="ID_28" POSITION="left" TEXT="Forward">
|
||||
<icon BUILTIN="forward"/>
|
||||
</node>
|
||||
<node TEXT="Up" POSITION="left" ID="ID_29">
|
||||
<node ID="ID_29" POSITION="left" TEXT="Up">
|
||||
<icon BUILTIN="up"/>
|
||||
</node>
|
||||
<node TEXT="Down" POSITION="left" ID="ID_30">
|
||||
<node ID="ID_30" POSITION="left" TEXT="Down">
|
||||
<icon BUILTIN="down"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Smiles" POSITION="right" ID="ID_31" FOLDED="true">
|
||||
<node TEXT="Smile" POSITION="right" ID="ID_32">
|
||||
<node FOLDED="true" ID="ID_31" POSITION="right" TEXT="Smiles">
|
||||
<node ID="ID_32" POSITION="right" TEXT="Smile">
|
||||
<icon BUILTIN="ksmiletris"/>
|
||||
</node>
|
||||
<node TEXT="No Mind" POSITION="right" ID="ID_33">
|
||||
<node ID="ID_33" POSITION="right" TEXT="No Mind">
|
||||
<icon BUILTIN="smiley-neutral"/>
|
||||
</node>
|
||||
<node TEXT="Surprise" POSITION="right" ID="ID_34">
|
||||
<node ID="ID_34" POSITION="right" TEXT="Surprise">
|
||||
<icon BUILTIN="smiley-oh"/>
|
||||
</node>
|
||||
<node TEXT="Sad" POSITION="right" ID="ID_35"/>
|
||||
<node TEXT="Angry" POSITION="right" ID="ID_36"/>
|
||||
<node ID="ID_35" POSITION="right" TEXT="Sad"/>
|
||||
<node ID="ID_36" POSITION="right" TEXT="Angry"/>
|
||||
</node>
|
||||
<node TEXT="People" POSITION="left" ID="ID_37" FOLDED="true">
|
||||
<node TEXT="Family" POSITION="left" ID="ID_38"/>
|
||||
<node TEXT="Female1" POSITION="left" ID="ID_39">
|
||||
<node FOLDED="true" ID="ID_37" POSITION="left" TEXT="People">
|
||||
<node ID="ID_38" POSITION="left" TEXT="Family"/>
|
||||
<node ID="ID_39" POSITION="left" TEXT="Female1">
|
||||
<icon BUILTIN="female1"/>
|
||||
</node>
|
||||
<node TEXT="Female2" POSITION="left" ID="ID_40">
|
||||
<node ID="ID_40" POSITION="left" TEXT="Female2">
|
||||
<icon BUILTIN="female2"/>
|
||||
</node>
|
||||
<node TEXT="Male1" POSITION="left" ID="ID_41">
|
||||
<node ID="ID_41" POSITION="left" TEXT="Male1">
|
||||
<icon BUILTIN="male1"/>
|
||||
</node>
|
||||
<node TEXT="Male2" POSITION="left" ID="ID_42">
|
||||
<node ID="ID_42" POSITION="left" TEXT="Male2">
|
||||
<icon BUILTIN="male2"/>
|
||||
</node>
|
||||
<node TEXT="Females" POSITION="left" ID="ID_43"/>
|
||||
<node TEXT="Group" POSITION="left" ID="ID_44">
|
||||
<node ID="ID_43" POSITION="left" TEXT="Females"/>
|
||||
<node ID="ID_44" POSITION="left" TEXT="Group">
|
||||
<icon BUILTIN="group"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Flags" POSITION="right" ID="ID_45" FOLDED="true">
|
||||
<node TEXT="Black" POSITION="right" ID="ID_46"/>
|
||||
<node TEXT="Blue" POSITION="right" ID="ID_47">
|
||||
<node FOLDED="true" ID="ID_45" POSITION="right" TEXT="Flags">
|
||||
<node ID="ID_46" POSITION="right" TEXT="Black"/>
|
||||
<node ID="ID_47" POSITION="right" TEXT="Blue">
|
||||
<icon BUILTIN="flag-blue"/>
|
||||
</node>
|
||||
<node TEXT="Green" POSITION="right" ID="ID_48">
|
||||
<node ID="ID_48" POSITION="right" TEXT="Green">
|
||||
<icon BUILTIN="flag-green"/>
|
||||
</node>
|
||||
<node TEXT="Orange" POSITION="right" ID="ID_49">
|
||||
<node ID="ID_49" POSITION="right" TEXT="Orange">
|
||||
<icon BUILTIN="flag-orange"/>
|
||||
</node>
|
||||
<node TEXT="Pink" POSITION="right" ID="ID_50">
|
||||
<node ID="ID_50" POSITION="right" TEXT="Pink">
|
||||
<icon BUILTIN="flag-pink"/>
|
||||
</node>
|
||||
<node TEXT="Red" POSITION="right" ID="ID_51"/>
|
||||
<node TEXT="Yellow" POSITION="right" ID="ID_52">
|
||||
<node ID="ID_51" POSITION="right" TEXT="Red"/>
|
||||
<node ID="ID_52" POSITION="right" TEXT="Yellow">
|
||||
<icon BUILTIN="flag-yellow"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Time" POSITION="left" ID="ID_53" FOLDED="true">
|
||||
<node TEXT="Calendar" POSITION="left" ID="ID_54">
|
||||
<node FOLDED="true" ID="ID_53" POSITION="left" TEXT="Time">
|
||||
<node ID="ID_54" POSITION="left" TEXT="Calendar">
|
||||
<icon BUILTIN="calendar"/>
|
||||
</node>
|
||||
<node TEXT="Digial Clock" POSITION="left" ID="ID_55">
|
||||
<node ID="ID_55" POSITION="left" TEXT="Digial Clock">
|
||||
<icon BUILTIN="clock"/>
|
||||
</node>
|
||||
<node TEXT="Hourglass" POSITION="left" ID="ID_56">
|
||||
<node ID="ID_56" POSITION="left" TEXT="Hourglass">
|
||||
<icon BUILTIN="hourglass"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Suff" POSITION="right" ID="ID_57">
|
||||
<node TEXT="Broken" POSITION="right" ID="ID_58"/>
|
||||
<node TEXT="WiseIcon" POSITION="right" ID="ID_59"/>
|
||||
<node TEXT="ICQ/Flower" POSITION="right" ID="ID_60">
|
||||
<node ID="ID_57" POSITION="right" TEXT="Suff">
|
||||
<node ID="ID_58" POSITION="right" TEXT="Broken"/>
|
||||
<node ID="ID_59" POSITION="right" TEXT="WiseIcon"/>
|
||||
<node ID="ID_60" POSITION="right" TEXT="ICQ/Flower">
|
||||
<icon BUILTIN="licq"/>
|
||||
</node>
|
||||
<node TEXT="Linux/Pinguin" POSITION="right" ID="ID_61">
|
||||
<node ID="ID_61" POSITION="right" TEXT="Linux/Pinguin">
|
||||
<icon BUILTIN="penguin"/>
|
||||
</node>
|
||||
<node TEXT="Star" POSITION="right" ID="ID_62">
|
||||
<node ID="ID_62" POSITION="right" TEXT="Star">
|
||||
<icon BUILTIN="bookmark"/>
|
||||
</node>
|
||||
<node TEXT="Reminder" POSITION="right" ID="ID_63">
|
||||
<node ID="ID_63" POSITION="right" TEXT="Reminder">
|
||||
<icon BUILTIN="bell"/>
|
||||
</node>
|
||||
<node TEXT="Zoom" POSITION="right" ID="ID_64">
|
||||
<node ID="ID_64" POSITION="right" TEXT="Zoom">
|
||||
<icon BUILTIN="xmag"/>
|
||||
</node>
|
||||
<node TEXT="Magic" POSITION="right" ID="ID_65">
|
||||
<node ID="ID_65" POSITION="right" TEXT="Magic">
|
||||
<icon BUILTIN="wizard"/>
|
||||
</node>
|
||||
<node TEXT="Music" POSITION="right" ID="ID_66">
|
||||
<node ID="ID_66" POSITION="right" TEXT="Music">
|
||||
<icon BUILTIN="knotify"/>
|
||||
</node>
|
||||
<node TEXT="Pen" POSITION="right" ID="ID_67">
|
||||
<node ID="ID_67" POSITION="right" TEXT="Pen">
|
||||
<icon BUILTIN="pencil"/>
|
||||
</node>
|
||||
<node TEXT="Key" POSITION="right" ID="ID_68">
|
||||
<node ID="ID_68" POSITION="right" TEXT="Key">
|
||||
<icon BUILTIN="password"/>
|
||||
</node>
|
||||
<node TEXT="House" POSITION="right" ID="ID_69">
|
||||
<node ID="ID_69" POSITION="right" TEXT="House">
|
||||
<icon BUILTIN="gohome"/>
|
||||
</node>
|
||||
<node TEXT="Phone" POSITION="right" ID="ID_70">
|
||||
<node ID="ID_70" POSITION="right" TEXT="Phone">
|
||||
<icon BUILTIN="kaddressbook"/>
|
||||
</node>
|
||||
<node TEXT="Do not Forget" POSITION="right" ID="ID_71"/>
|
||||
<node TEXT="Bomb" POSITION="right" ID="ID_72">
|
||||
<node ID="ID_71" POSITION="right" TEXT="Do not Forget"/>
|
||||
<node ID="ID_72" POSITION="right" TEXT="Bomb">
|
||||
<icon BUILTIN="clanbomber"/>
|
||||
</node>
|
||||
<node TEXT="Clip" POSITION="right" ID="ID_73">
|
||||
<node ID="ID_73" POSITION="right" TEXT="Clip">
|
||||
<icon BUILTIN="attach"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Mail" POSITION="left" ID="ID_74">
|
||||
<node TEXT="Envelop" POSITION="left" ID="ID_75">
|
||||
<node ID="ID_74" POSITION="left" TEXT="Mail">
|
||||
<node ID="ID_75" POSITION="left" TEXT="Envelop">
|
||||
<icon BUILTIN="Mail"/>
|
||||
</node>
|
||||
<node TEXT="E-Mail" POSITION="left" ID="ID_76"/>
|
||||
<node TEXT="List" POSITION="left" ID="ID_77">
|
||||
<node ID="ID_76" POSITION="left" TEXT="E-Mail"/>
|
||||
<node ID="ID_77" POSITION="left" TEXT="List">
|
||||
<icon BUILTIN="list"/>
|
||||
</node>
|
||||
<node TEXT="Refine" POSITION="left" ID="ID_78">
|
||||
<node ID="ID_78" POSITION="left" TEXT="Refine">
|
||||
<icon BUILTIN="edit"/>
|
||||
</node>
|
||||
<node TEXT="Mailbox" POSITION="left" ID="ID_79">
|
||||
<node ID="ID_79" POSITION="left" TEXT="Mailbox">
|
||||
<icon BUILTIN="korn"/>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,292 +1,292 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[This is the root node]]></text>
|
||||
<topic id="1" position="200,-200" order="7" shape="line">
|
||||
<topic id="1" order="7" position="200,-200" shape="line">
|
||||
<text><![CDATA[Simbols]]></text>
|
||||
<topic id="2" position="290,-300" order="0" shape="line">
|
||||
<topic id="2" order="0" position="290,-300" shape="line">
|
||||
<text><![CDATA[Warning]]></text>
|
||||
<icon id="sign_warning"/>
|
||||
</topic>
|
||||
<topic id="3" position="290,-275" order="1" shape="line">
|
||||
<topic id="3" order="1" position="290,-275" shape="line">
|
||||
<text><![CDATA[No Ok]]></text>
|
||||
<icon id="tick_cross"/>
|
||||
</topic>
|
||||
<topic id="4" position="290,-250" order="2" shape="line">
|
||||
<topic id="4" order="2" position="290,-250" shape="line">
|
||||
<text><![CDATA[Ok]]></text>
|
||||
<icon id="tick_tick"/>
|
||||
</topic>
|
||||
<topic id="5" position="290,-225" order="3" shape="line">
|
||||
<topic id="5" order="3" position="290,-225" shape="line">
|
||||
<text><![CDATA[Info]]></text>
|
||||
<icon id="sign_info"/>
|
||||
</topic>
|
||||
<topic id="6" position="290,-200" order="4" shape="line">
|
||||
<topic id="6" order="4" position="290,-200" shape="line">
|
||||
<text><![CDATA[No Entry]]></text>
|
||||
<icon id="onoff_delete"/>
|
||||
</topic>
|
||||
<topic id="7" position="290,-175" order="5" shape="line">
|
||||
<topic id="7" order="5" position="290,-175" shape="line">
|
||||
<text><![CDATA[Stop]]></text>
|
||||
<icon id="sign_stop"/>
|
||||
</topic>
|
||||
<topic id="8" position="290,-150" order="6" shape="line">
|
||||
<topic id="8" order="6" position="290,-150" shape="line">
|
||||
<text><![CDATA[Lamp]]></text>
|
||||
<icon id="bulb_light_on"/>
|
||||
</topic>
|
||||
<topic id="9" position="290,-125" order="7" shape="line">
|
||||
<topic id="9" order="7" position="290,-125" shape="line">
|
||||
<text><![CDATA[! Simbol]]></text>
|
||||
</topic>
|
||||
<topic id="10" position="290,-100" order="8" shape="line">
|
||||
<topic id="10" order="8" position="290,-100" shape="line">
|
||||
<text><![CDATA[Question Mark]]></text>
|
||||
<icon id="sign_help"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="11" position="-200,-200" order="7" shape="line">
|
||||
<topic id="11" order="7" position="-200,-200" shape="line" shrink="true">
|
||||
<text><![CDATA[Numbers]]></text>
|
||||
<topic id="12" position="-290,-325" order="0" shape="line">
|
||||
<topic id="12" order="0" position="-290,-325" shape="line">
|
||||
<text><![CDATA[1]]></text>
|
||||
<icon id="bullet_blue"/>
|
||||
</topic>
|
||||
<topic id="13" position="-290,-300" order="1" shape="line">
|
||||
<topic id="13" order="1" position="-290,-300" shape="line">
|
||||
<text><![CDATA[2]]></text>
|
||||
<icon id="bullet_green"/>
|
||||
</topic>
|
||||
<topic id="14" position="-290,-275" order="2" shape="line">
|
||||
<topic id="14" order="2" position="-290,-275" shape="line">
|
||||
<text><![CDATA[3]]></text>
|
||||
<icon id="bullet_orange"/>
|
||||
</topic>
|
||||
<topic id="15" position="-290,-250" order="3" shape="line">
|
||||
<topic id="15" order="3" position="-290,-250" shape="line">
|
||||
<text><![CDATA[4]]></text>
|
||||
<icon id="bullet_red"/>
|
||||
</topic>
|
||||
<topic id="16" position="-290,-225" order="4" shape="line">
|
||||
<topic id="16" order="4" position="-290,-225" shape="line">
|
||||
<text><![CDATA[5]]></text>
|
||||
<icon id="bullet_pink"/>
|
||||
</topic>
|
||||
<topic id="17" position="-290,-200" order="5" shape="line">
|
||||
<topic id="17" order="5" position="-290,-200" shape="line">
|
||||
<text><![CDATA[6]]></text>
|
||||
<icon id="bullet_purple"/>
|
||||
</topic>
|
||||
<topic id="18" position="-290,-175" order="6" shape="line">
|
||||
<topic id="18" order="6" position="-290,-175" shape="line">
|
||||
<text><![CDATA[7]]></text>
|
||||
</topic>
|
||||
<topic id="19" position="-290,-150" order="7" shape="line">
|
||||
<topic id="19" order="7" position="-290,-150" shape="line">
|
||||
<text><![CDATA[8]]></text>
|
||||
</topic>
|
||||
<topic id="20" position="-290,-125" order="8" shape="line">
|
||||
<topic id="20" order="8" position="-290,-125" shape="line">
|
||||
<text><![CDATA[9]]></text>
|
||||
</topic>
|
||||
<topic id="21" position="-290,-100" order="9" shape="line">
|
||||
<topic id="21" order="9" position="-290,-100" shape="line">
|
||||
<text><![CDATA[0]]></text>
|
||||
<icon id="bullet_black"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="22" position="200,-100" order="3" shape="line">
|
||||
<topic id="22" order="3" position="200,-100" shape="line">
|
||||
<text><![CDATA[Trafic]]></text>
|
||||
<topic id="23" position="290,-125" order="0" shape="line">
|
||||
<topic id="23" order="0" position="290,-125" shape="line">
|
||||
<text><![CDATA[Read]]></text>
|
||||
</topic>
|
||||
<topic id="24" position="290,-100" order="1" shape="line">
|
||||
<topic id="24" order="1" position="290,-100" shape="line">
|
||||
<text><![CDATA[Green]]></text>
|
||||
</topic>
|
||||
<topic id="25" position="290,-75" order="2" shape="line">
|
||||
<topic id="25" order="2" position="290,-75" shape="line">
|
||||
<text><![CDATA[Yellow]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="26" position="-200,-100" order="3" shape="line">
|
||||
<topic id="26" order="3" position="-200,-100" shape="line" shrink="true">
|
||||
<text><![CDATA[Arrow]]></text>
|
||||
<topic id="27" position="-290,-150" order="0" shape="line">
|
||||
<topic id="27" order="0" position="-290,-150" shape="line">
|
||||
<text><![CDATA[Back]]></text>
|
||||
<icon id="arrow_right"/>
|
||||
</topic>
|
||||
<topic id="28" position="-290,-125" order="1" shape="line">
|
||||
<topic id="28" order="1" position="-290,-125" shape="line">
|
||||
<text><![CDATA[Forward]]></text>
|
||||
<icon id="arrow_left"/>
|
||||
</topic>
|
||||
<topic id="29" position="-290,-100" order="2" shape="line">
|
||||
<topic id="29" order="2" position="-290,-100" shape="line">
|
||||
<text><![CDATA[Up]]></text>
|
||||
<icon id="arrow_up"/>
|
||||
</topic>
|
||||
<topic id="30" position="-290,-75" order="3" shape="line">
|
||||
<topic id="30" order="3" position="-290,-75" shape="line">
|
||||
<text><![CDATA[Down]]></text>
|
||||
<icon id="arrow_down"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="31" position="200,0" order="0" shape="line">
|
||||
<topic id="31" order="0" position="200,0" shape="line" shrink="true">
|
||||
<text><![CDATA[Smiles]]></text>
|
||||
<topic id="32" position="290,-50" order="0" shape="line">
|
||||
<topic id="32" order="0" position="290,-50" shape="line">
|
||||
<text><![CDATA[Smile]]></text>
|
||||
<icon id="face_smile"/>
|
||||
</topic>
|
||||
<topic id="33" position="290,-25" order="1" shape="line">
|
||||
<topic id="33" order="1" position="290,-25" shape="line">
|
||||
<text><![CDATA[No Mind]]></text>
|
||||
<icon id="face_plain"/>
|
||||
</topic>
|
||||
<topic id="34" position="290,0" order="2" shape="line">
|
||||
<topic id="34" order="2" position="290,0" shape="line">
|
||||
<text><![CDATA[Surprise]]></text>
|
||||
<icon id="face_surprise"/>
|
||||
</topic>
|
||||
<topic id="35" position="290,25" order="3" shape="line">
|
||||
<topic id="35" order="3" position="290,25" shape="line">
|
||||
<text><![CDATA[Sad]]></text>
|
||||
</topic>
|
||||
<topic id="36" position="290,50" order="4" shape="line">
|
||||
<topic id="36" order="4" position="290,50" shape="line">
|
||||
<text><![CDATA[Angry]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="37" position="-200,0" order="0" shape="line">
|
||||
<topic id="37" order="0" position="-200,0" shape="line" shrink="true">
|
||||
<text><![CDATA[People]]></text>
|
||||
<topic id="38" position="-290,-75" order="0" shape="line">
|
||||
<topic id="38" order="0" position="-290,-75" shape="line">
|
||||
<text><![CDATA[Family]]></text>
|
||||
</topic>
|
||||
<topic id="39" position="-290,-50" order="1" shape="line">
|
||||
<topic id="39" order="1" position="-290,-50" shape="line">
|
||||
<text><![CDATA[Female1]]></text>
|
||||
<icon id="people_female1"/>
|
||||
</topic>
|
||||
<topic id="40" position="-290,-25" order="2" shape="line">
|
||||
<topic id="40" order="2" position="-290,-25" shape="line">
|
||||
<text><![CDATA[Female2]]></text>
|
||||
<icon id="people_female2"/>
|
||||
</topic>
|
||||
<topic id="41" position="-290,0" order="3" shape="line">
|
||||
<topic id="41" order="3" position="-290,0" shape="line">
|
||||
<text><![CDATA[Male1]]></text>
|
||||
<icon id="people_male1"/>
|
||||
</topic>
|
||||
<topic id="42" position="-290,25" order="4" shape="line">
|
||||
<topic id="42" order="4" position="-290,25" shape="line">
|
||||
<text><![CDATA[Male2]]></text>
|
||||
<icon id="people_male2"/>
|
||||
</topic>
|
||||
<topic id="43" position="-290,50" order="5" shape="line">
|
||||
<topic id="43" order="5" position="-290,50" shape="line">
|
||||
<text><![CDATA[Females]]></text>
|
||||
</topic>
|
||||
<topic id="44" position="-290,75" order="6" shape="line">
|
||||
<topic id="44" order="6" position="-290,75" shape="line">
|
||||
<text><![CDATA[Group]]></text>
|
||||
<icon id="people_group"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="45" position="200,100" order="4" shape="line">
|
||||
<topic id="45" order="4" position="200,100" shape="line" shrink="true">
|
||||
<text><![CDATA[Flags]]></text>
|
||||
<topic id="46" position="290,25" order="0" shape="line">
|
||||
<topic id="46" order="0" position="290,25" shape="line">
|
||||
<text><![CDATA[Black]]></text>
|
||||
</topic>
|
||||
<topic id="47" position="290,50" order="1" shape="line">
|
||||
<topic id="47" order="1" position="290,50" shape="line">
|
||||
<text><![CDATA[Blue]]></text>
|
||||
<icon id="flag_blue"/>
|
||||
</topic>
|
||||
<topic id="48" position="290,75" order="2" shape="line">
|
||||
<topic id="48" order="2" position="290,75" shape="line">
|
||||
<text><![CDATA[Green]]></text>
|
||||
<icon id="flag_green"/>
|
||||
</topic>
|
||||
<topic id="49" position="290,100" order="3" shape="line">
|
||||
<topic id="49" order="3" position="290,100" shape="line">
|
||||
<text><![CDATA[Orange]]></text>
|
||||
<icon id="flag_orange"/>
|
||||
</topic>
|
||||
<topic id="50" position="290,125" order="4" shape="line">
|
||||
<topic id="50" order="4" position="290,125" shape="line">
|
||||
<text><![CDATA[Pink]]></text>
|
||||
<icon id="flag_pink"/>
|
||||
</topic>
|
||||
<topic id="51" position="290,150" order="5" shape="line">
|
||||
<topic id="51" order="5" position="290,150" shape="line">
|
||||
<text><![CDATA[Red]]></text>
|
||||
</topic>
|
||||
<topic id="52" position="290,175" order="6" shape="line">
|
||||
<topic id="52" order="6" position="290,175" shape="line">
|
||||
<text><![CDATA[Yellow]]></text>
|
||||
<icon id="flag_yellow"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="53" position="-200,100" order="4" shape="line">
|
||||
<topic id="53" order="4" position="-200,100" shape="line" shrink="true">
|
||||
<text><![CDATA[Time]]></text>
|
||||
<topic id="54" position="-290,75" order="0" shape="line">
|
||||
<topic id="54" order="0" position="-290,75" shape="line">
|
||||
<text><![CDATA[Calendar]]></text>
|
||||
<icon id="time_calendar"/>
|
||||
</topic>
|
||||
<topic id="55" position="-290,100" order="1" shape="line">
|
||||
<topic id="55" order="1" position="-290,100" shape="line">
|
||||
<text><![CDATA[Digial Clock]]></text>
|
||||
<icon id="onoff_clock"/>
|
||||
</topic>
|
||||
<topic id="56" position="-290,125" order="2" shape="line">
|
||||
<topic id="56" order="2" position="-290,125" shape="line">
|
||||
<text><![CDATA[Hourglass]]></text>
|
||||
<icon id="time_hourglass"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="57" position="200,200" order="8" shape="line">
|
||||
<topic id="57" order="8" position="200,200" shape="line">
|
||||
<text><![CDATA[Suff]]></text>
|
||||
<topic id="58" position="290,0" order="0" shape="line">
|
||||
<topic id="58" order="0" position="290,0" shape="line">
|
||||
<text><![CDATA[Broken]]></text>
|
||||
</topic>
|
||||
<topic id="59" position="290,25" order="1" shape="line">
|
||||
<topic id="59" order="1" position="290,25" shape="line">
|
||||
<text><![CDATA[WiseIcon]]></text>
|
||||
</topic>
|
||||
<topic id="60" position="290,50" order="2" shape="line">
|
||||
<topic id="60" order="2" position="290,50" shape="line">
|
||||
<text><![CDATA[ICQ/Flower]]></text>
|
||||
<icon id="onoff_status_online"/>
|
||||
</topic>
|
||||
<topic id="61" position="290,75" order="3" shape="line">
|
||||
<topic id="61" order="3" position="290,75" shape="line">
|
||||
<text><![CDATA[Linux/Pinguin]]></text>
|
||||
<icon id="soft_penguin"/>
|
||||
</topic>
|
||||
<topic id="62" position="290,100" order="4" shape="line">
|
||||
<topic id="62" order="4" position="290,100" shape="line">
|
||||
<text><![CDATA[Star]]></text>
|
||||
<icon id="object_star"/>
|
||||
</topic>
|
||||
<topic id="63" position="290,125" order="5" shape="line">
|
||||
<topic id="63" order="5" position="290,125" shape="line">
|
||||
<text><![CDATA[Reminder]]></text>
|
||||
<icon id="object_bell"/>
|
||||
</topic>
|
||||
<topic id="64" position="290,150" order="6" shape="line">
|
||||
<topic id="64" order="6" position="290,150" shape="line">
|
||||
<text><![CDATA[Zoom]]></text>
|
||||
<icon id="object_magnifier"/>
|
||||
</topic>
|
||||
<topic id="65" position="290,175" order="7" shape="line">
|
||||
<topic id="65" order="7" position="290,175" shape="line">
|
||||
<text><![CDATA[Magic]]></text>
|
||||
<icon id="object_wizard"/>
|
||||
</topic>
|
||||
<topic id="66" position="290,200" order="8" shape="line">
|
||||
<topic id="66" order="8" position="290,200" shape="line">
|
||||
<text><![CDATA[Music]]></text>
|
||||
<icon id="object_music"/>
|
||||
</topic>
|
||||
<topic id="67" position="290,225" order="9" shape="line">
|
||||
<topic id="67" order="9" position="290,225" shape="line">
|
||||
<text><![CDATA[Pen]]></text>
|
||||
<icon id="object_pencil"/>
|
||||
</topic>
|
||||
<topic id="68" position="290,250" order="10" shape="line">
|
||||
<topic id="68" order="10" position="290,250" shape="line">
|
||||
<text><![CDATA[Key]]></text>
|
||||
<icon id="object_key"/>
|
||||
</topic>
|
||||
<topic id="69" position="290,275" order="11" shape="line">
|
||||
<topic id="69" order="11" position="290,275" shape="line">
|
||||
<text><![CDATA[House]]></text>
|
||||
<icon id="object_house"/>
|
||||
</topic>
|
||||
<topic id="70" position="290,300" order="12" shape="line">
|
||||
<topic id="70" order="12" position="290,300" shape="line">
|
||||
<text><![CDATA[Phone]]></text>
|
||||
<icon id="object_phone"/>
|
||||
</topic>
|
||||
<topic id="71" position="290,325" order="13" shape="line">
|
||||
<topic id="71" order="13" position="290,325" shape="line">
|
||||
<text><![CDATA[Do not Forget]]></text>
|
||||
</topic>
|
||||
<topic id="72" position="290,350" order="14" shape="line">
|
||||
<topic id="72" order="14" position="290,350" shape="line">
|
||||
<text><![CDATA[Bomb]]></text>
|
||||
<icon id="object_clanbomber"/>
|
||||
</topic>
|
||||
<topic id="73" position="290,375" order="15" shape="line">
|
||||
<topic id="73" order="15" position="290,375" shape="line">
|
||||
<text><![CDATA[Clip]]></text>
|
||||
<icon id="object_clip"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="74" position="-200,200" order="8" shape="line">
|
||||
<topic id="74" order="8" position="-200,200" shape="line">
|
||||
<text><![CDATA[Mail]]></text>
|
||||
<topic id="75" position="-290,150" order="0" shape="line">
|
||||
<topic id="75" order="0" position="-290,150" shape="line">
|
||||
<text><![CDATA[Envelop]]></text>
|
||||
<icon id="mail_envelop"/>
|
||||
</topic>
|
||||
<topic id="76" position="-290,175" order="1" shape="line">
|
||||
<topic id="76" order="1" position="-290,175" shape="line">
|
||||
<text><![CDATA[E-Mail]]></text>
|
||||
</topic>
|
||||
<topic id="77" position="-290,200" order="2" shape="line">
|
||||
<topic id="77" order="2" position="-290,200" shape="line">
|
||||
<text><![CDATA[List]]></text>
|
||||
<icon id="mail_list"/>
|
||||
</topic>
|
||||
<topic id="78" position="-290,225" order="3" shape="line">
|
||||
<topic id="78" order="3" position="-290,225" shape="line">
|
||||
<text><![CDATA[Refine]]></text>
|
||||
<icon id="mail_edit"/>
|
||||
</topic>
|
||||
<topic id="79" position="-290,250" order="4" shape="line">
|
||||
<topic id="79" order="4" position="-290,250" shape="line">
|
||||
<text><![CDATA[Mailbox]]></text>
|
||||
<icon id="mail_mailbox"/>
|
||||
</topic>
|
||||
|
@ -1,9 +1,9 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Node Links" LINK="http://www.google.com" ID="ID_0">
|
||||
<node ID="ID_0" LINK="http://www.google.com" TEXT="Node Links">
|
||||
<icon BUILTIN="closed"/>
|
||||
<node TEXT="Link Topic" POSITION="right" LINK="http://www.bing.com" ID="ID_1" FOLDED="true">
|
||||
<node FOLDED="true" ID="ID_1" LINK="http://www.bing.com" POSITION="right" TEXT="Link Topic">
|
||||
<icon BUILTIN="info"/>
|
||||
<node TEXT="Link Topic Topic" POSITION="right" LINK="http://bing.com" ID="ID_2">
|
||||
<node ID="ID_2" LINK="http://bing.com" POSITION="right" TEXT="Link Topic Topic">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[Node Links]]></text>
|
||||
<icon id="onoff_delete"/>
|
||||
<link url="http://www.google.com"/>
|
||||
<topic shrink="true" id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line" shrink="true">
|
||||
<text><![CDATA[Link Topic]]></text>
|
||||
<icon id="sign_info"/>
|
||||
<link url="http://www.bing.com"/>
|
||||
<topic id="2" position="290,-25" order="0" shape="line">
|
||||
<topic id="2" order="0" position="290,-25" shape="line">
|
||||
<text><![CDATA[Link Topic Topic]]></text>
|
||||
<icon id="sign_warning"/>
|
||||
<link url="http://bing.com"/>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="I have HTML In Nodes" ID="ID_0">
|
||||
<node POSITION="right" ID="ID_1">
|
||||
<node ID="ID_0" TEXT="I have HTML In Nodes">
|
||||
<node ID="ID_1" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[I have HTML In Nodes]]></text>
|
||||
<topic id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Here is somefonts
|
||||
|
||||
Add color changes ...
|
||||
|
@ -1,44 +1,44 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Shapes" ID="ID_0">
|
||||
<node TEXT="Node Styles" POSITION="right" ID="ID_1">
|
||||
<node TEXT="Fork" POSITION="right" ID="ID_2">
|
||||
<node ID="ID_0" TEXT="Shapes">
|
||||
<node ID="ID_1" POSITION="right" TEXT="Node Styles">
|
||||
<node ID="ID_2" POSITION="right" TEXT="Fork">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="Bubble" STYLE="bubble" POSITION="right" ID="ID_3">
|
||||
<node ID="ID_3" POSITION="right" STYLE="bubble" TEXT="Bubble">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="As parent" POSITION="right" ID="ID_4">
|
||||
<node ID="ID_4" POSITION="right" TEXT="As parent">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="Combined" POSITION="right" ID="ID_5">
|
||||
<node ID="ID_5" POSITION="right" TEXT="Combined">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Node Background Color" STYLE="rectagle" POSITION="left" ID="ID_6" BACKGROUND_COLOR="#f20707">
|
||||
<node TEXT="Fork" STYLE="rectagle" POSITION="left" ID="ID_7" BACKGROUND_COLOR="#0000cc">
|
||||
<node BACKGROUND_COLOR="#f20707" ID="ID_6" POSITION="left" STYLE="rectagle" TEXT="Node Background Color">
|
||||
<node BACKGROUND_COLOR="#0000cc" ID="ID_7" POSITION="left" STYLE="rectagle" TEXT="Fork">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="Bubble" STYLE="bubble" POSITION="left" ID="ID_8" BACKGROUND_COLOR="#ccffcc">
|
||||
<node BACKGROUND_COLOR="#ccffcc" ID="ID_8" POSITION="left" STYLE="bubble" TEXT="Bubble">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="As parent" STYLE="rectagle" POSITION="left" ID="ID_9" BACKGROUND_COLOR="#00ffff">
|
||||
<node BACKGROUND_COLOR="#00ffff" ID="ID_9" POSITION="left" STYLE="rectagle" TEXT="As parent">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="Combined" STYLE="rectagle" POSITION="left" ID="ID_10" BACKGROUND_COLOR="#990099">
|
||||
<node BACKGROUND_COLOR="#990099" ID="ID_10" POSITION="left" STYLE="rectagle" TEXT="Combined">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Node Text Color" STYLE="rectagle" POSITION="left" ID="ID_11" BACKGROUND_COLOR="#f20707">
|
||||
<node TEXT="Fork" STYLE="rectagle" POSITION="left" ID="ID_12" COLOR="#ffff00" BACKGROUND_COLOR="#0000cc">
|
||||
<node BACKGROUND_COLOR="#f20707" ID="ID_11" POSITION="left" STYLE="rectagle" TEXT="Node Text Color">
|
||||
<node BACKGROUND_COLOR="#0000cc" COLOR="#ffff00" ID="ID_12" POSITION="left" STYLE="rectagle" TEXT="Fork">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="Bubble" STYLE="bubble" POSITION="left" ID="ID_13" COLOR="#ff6666" BACKGROUND_COLOR="#ccffcc">
|
||||
<node BACKGROUND_COLOR="#ccffcc" COLOR="#ff6666" ID="ID_13" POSITION="left" STYLE="bubble" TEXT="Bubble">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="As parent" STYLE="rectagle" POSITION="left" ID="ID_14" COLOR="#009999" BACKGROUND_COLOR="#00ffff">
|
||||
<node BACKGROUND_COLOR="#00ffff" COLOR="#009999" ID="ID_14" POSITION="left" STYLE="rectagle" TEXT="As parent">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
<node TEXT="Combined" STYLE="rectagle" POSITION="left" ID="ID_15" COLOR="#009999" BACKGROUND_COLOR="#990099">
|
||||
<node BACKGROUND_COLOR="#990099" COLOR="#009999" ID="ID_15" POSITION="left" STYLE="rectagle" TEXT="Combined">
|
||||
<edge COLOR="#808080"/>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,61 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[Shapes]]></text>
|
||||
<topic id="1" position="200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Node Styles]]></text>
|
||||
<topic id="2" position="290,-50" order="0" brColor="#808080" shape="line">
|
||||
<topic brColor="#808080" id="2" order="0" position="290,-50" shape="line">
|
||||
<text><![CDATA[Fork]]></text>
|
||||
</topic>
|
||||
<topic id="3" position="290,-25" order="1" brColor="#808080" shape="rounded rectagle">
|
||||
<topic brColor="#808080" id="3" order="1" position="290,-25" shape="rounded rectagle">
|
||||
<text><![CDATA[Bubble]]></text>
|
||||
</topic>
|
||||
<topic id="4" position="290,0" order="2" brColor="#808080" shape="line">
|
||||
<topic brColor="#808080" id="4" order="2" position="290,0" shape="line">
|
||||
<text><![CDATA[As parent]]></text>
|
||||
</topic>
|
||||
<topic id="5" position="290,25" order="3" brColor="#808080" shape="line">
|
||||
<topic brColor="#808080" id="5" order="3" position="290,25" shape="line">
|
||||
<text><![CDATA[Combined]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="6" position="-200,0" order="0" bgColor="#f20707" shape="rectagle">
|
||||
<topic bgColor="#f20707" id="6" order="0" position="-200,0" shape="rectagle">
|
||||
<text><![CDATA[Node Background Color]]></text>
|
||||
<topic id="7" position="-290,-50" order="0"
|
||||
brColor="#808080" bgColor="#0000cc" shape="rectagle">
|
||||
<topic bgColor="#0000cc" brColor="#808080" id="7" order="0"
|
||||
position="-290,-50" shape="rectagle">
|
||||
<text><![CDATA[Fork]]></text>
|
||||
</topic>
|
||||
<topic id="8" position="-290,-25" order="1"
|
||||
brColor="#808080" bgColor="#ccffcc" shape="rounded rectagle">
|
||||
<topic bgColor="#ccffcc" brColor="#808080" id="8" order="1"
|
||||
position="-290,-25" shape="rounded rectagle">
|
||||
<text><![CDATA[Bubble]]></text>
|
||||
</topic>
|
||||
<topic id="9" position="-290,0" order="2" brColor="#808080"
|
||||
bgColor="#00ffff" shape="rectagle">
|
||||
<topic bgColor="#00ffff" brColor="#808080" id="9" order="2"
|
||||
position="-290,0" shape="rectagle">
|
||||
<text><![CDATA[As parent]]></text>
|
||||
</topic>
|
||||
<topic id="10" position="-290,25" order="3"
|
||||
brColor="#808080" bgColor="#990099" shape="rectagle">
|
||||
<topic bgColor="#990099" brColor="#808080" id="10" order="3"
|
||||
position="-290,25" shape="rectagle">
|
||||
<text><![CDATA[Combined]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="11" position="-200,100" order="4" bgColor="#f20707" shape="rectagle">
|
||||
<topic bgColor="#f20707" id="11" order="4" position="-200,100" shape="rectagle">
|
||||
<text><![CDATA[Node Text Color]]></text>
|
||||
<topic id="12" position="-290,50" order="0"
|
||||
brColor="#808080" bgColor="#0000cc"
|
||||
fontStyle=";;#ffff00;;;" shape="rectagle">
|
||||
<topic bgColor="#0000cc" brColor="#808080"
|
||||
fontStyle=";;#ffff00;;;" id="12" order="0"
|
||||
position="-290,50" shape="rectagle">
|
||||
<text><![CDATA[Fork]]></text>
|
||||
</topic>
|
||||
<topic id="13" position="-290,75" order="1"
|
||||
brColor="#808080" bgColor="#ccffcc"
|
||||
fontStyle=";;#ff6666;;;" shape="rounded rectagle">
|
||||
<topic bgColor="#ccffcc" brColor="#808080"
|
||||
fontStyle=";;#ff6666;;;" id="13" order="1"
|
||||
position="-290,75" shape="rounded rectagle">
|
||||
<text><![CDATA[Bubble]]></text>
|
||||
</topic>
|
||||
<topic id="14" position="-290,100" order="2"
|
||||
brColor="#808080" bgColor="#00ffff"
|
||||
fontStyle=";;#009999;;;" shape="rectagle">
|
||||
<topic bgColor="#00ffff" brColor="#808080"
|
||||
fontStyle=";;#009999;;;" id="14" order="2"
|
||||
position="-290,100" shape="rectagle">
|
||||
<text><![CDATA[As parent]]></text>
|
||||
</topic>
|
||||
<topic id="15" position="-290,125" order="3"
|
||||
brColor="#808080" bgColor="#990099"
|
||||
fontStyle=";;#009999;;;" shape="rectagle">
|
||||
<topic bgColor="#990099" brColor="#808080"
|
||||
fontStyle=";;#009999;;;" id="15" order="3"
|
||||
position="-290,125" shape="rectagle">
|
||||
<text><![CDATA[Combined]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
|
40
wise-webapp/src/test/resources/data/freemind/note.mm
Normal file
40
wise-webapp/src/test/resources/data/freemind/note.mm
Normal file
@ -0,0 +1,40 @@
|
||||
<map version="0.9.0">
|
||||
<!-- To view this file, download free mind mapping software FreeMind from http://freemind.sourceforge.net -->
|
||||
<node CREATED="1354384149243" ID="ID_1240654369" MODIFIED="1354384774609" TEXT="Notes Support">
|
||||
<richcontent TYPE="NOTE"><html>
|
||||
<head>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
This is a HTML node.
|
||||
</p>
|
||||
<ol>
|
||||
<li>
|
||||
List of values
|
||||
</li>
|
||||
<li>
|
||||
List of values 2
|
||||
</li>
|
||||
</ol>
|
||||
<p>
|
||||
<i><b>This is bold </b></i>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<node CREATED="1354384204994" ID="ID_1523964881" MODIFIED="1354384740867" POSITION="right" TEXT="Child Node">
|
||||
<richcontent TYPE="NOTE"><html>
|
||||
<head>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
This is a simple note
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
</map>
|
23
wise-webapp/src/test/resources/data/freemind/note.mmr
Normal file
23
wise-webapp/src/test/resources/data/freemind/note.mmr
Normal file
@ -0,0 +1,23 @@
|
||||
<map version="0.9.0">
|
||||
<node ID="ID_0" TEXT="Notes Support">
|
||||
<richcontent TYPE="NOTE">
|
||||
<html>
|
||||
<head/>
|
||||
<body>
|
||||
<p>This is a HTML node. List of values List of values 2</p>
|
||||
<p>This is bold</p>
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<node ID="ID_1" POSITION="right" TEXT="Child Node">
|
||||
<richcontent TYPE="NOTE">
|
||||
<html>
|
||||
<head/>
|
||||
<body>
|
||||
<p>This is a simple note</p>
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
</map>
|
16
wise-webapp/src/test/resources/data/freemind/note.wxml
Normal file
16
wise-webapp/src/test/resources/data/freemind/note.wxml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[Notes Support]]></text>
|
||||
<note>
|
||||
<text><![CDATA[This is a HTML node. List of values List of values 2
|
||||
This is bold]]></text>
|
||||
</note>
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Child Node]]></text>
|
||||
<note>
|
||||
<text><![CDATA[This is a simple note]]></text>
|
||||
</note>
|
||||
</topic>
|
||||
</topic>
|
||||
</map>
|
@ -1,85 +1,85 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Numerosity" ID="ID_0">
|
||||
<node TEXT="Approximate Representations" POSITION="left" ID="ID_1">
|
||||
<node TEXT="Brain Regions" POSITION="left" ID="ID_2">
|
||||
<node TEXT="Parietal Cortex" POSITION="left" ID="ID_3">
|
||||
<node TEXT="Posterior Parietal Cortex (PPC)" POSITION="left" ID="ID_4">
|
||||
<node TEXT="Intraparietal Sulcus (IPS)" POSITION="left" ID="ID_5">
|
||||
<node TEXT="Neurons code for numerosity" POSITION="left" ID="ID_6">
|
||||
<node TEXT="Concept of Mental Number Line" POSITION="left" ID="ID_7">
|
||||
<node TEXT="Logarithmic Compression" POSITION="left" ID="ID_8">
|
||||
<node TEXT="Dehaine & Changeux, 1993" POSITION="left" ID="ID_9"/>
|
||||
<node TEXT="Nieder & Miller, 2003" POSITION="left" ID="ID_10"/>
|
||||
<node ID="ID_0" TEXT="Numerosity">
|
||||
<node ID="ID_1" POSITION="left" TEXT="Approximate Representations">
|
||||
<node ID="ID_2" POSITION="left" TEXT="Brain Regions">
|
||||
<node ID="ID_3" POSITION="left" TEXT="Parietal Cortex">
|
||||
<node ID="ID_4" POSITION="left" TEXT="Posterior Parietal Cortex (PPC)">
|
||||
<node ID="ID_5" POSITION="left" TEXT="Intraparietal Sulcus (IPS)">
|
||||
<node ID="ID_6" POSITION="left" TEXT="Neurons code for numerosity">
|
||||
<node ID="ID_7" POSITION="left" TEXT="Concept of Mental Number Line">
|
||||
<node ID="ID_8" POSITION="left" TEXT="Logarithmic Compression">
|
||||
<node ID="ID_9" POSITION="left" TEXT="Dehaine & Changeux, 1993"/>
|
||||
<node ID="ID_10" POSITION="left" TEXT="Nieder & Miller, 2003"/>
|
||||
</node>
|
||||
<node TEXT="Linear Scale with proportional increasing Std. Dev of Noise" POSITION="left" ID="ID_11">
|
||||
<node TEXT="aallistel & Gelman, 2000" POSITION="left" ID="ID_12"/>
|
||||
<node ID="ID_11" POSITION="left" TEXT="Linear Scale with proportional increasing Std. Dev of Noise">
|
||||
<node ID="ID_12" POSITION="left" TEXT="aallistel & Gelman, 2000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Nieder et al 2002" POSITION="left" ID="ID_13"/>
|
||||
<node TEXT="Sawamura et al, 2002" POSITION="left" ID="ID_14"/>
|
||||
<node TEXT="Nieder & Miller, 2003" POSITION="left" ID="ID_15">
|
||||
<arrowlink ENDARROW="Default" DESTINATION="ID_32"/>
|
||||
<node ID="ID_13" POSITION="left" TEXT="Nieder et al 2002"/>
|
||||
<node ID="ID_14" POSITION="left" TEXT="Sawamura et al, 2002"/>
|
||||
<node ID="ID_15" POSITION="left" TEXT="Nieder & Miller, 2003">
|
||||
<arrowlink DESTINATION="ID_32" ENDARROW="Default"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="lateral Intraparietal (LIP)" POSITION="left" ID="ID_16">
|
||||
<node TEXT="LIP neurons code for number with an accumulator-like coding scheme" POSITION="left" ID="ID_17">
|
||||
<node TEXT="Roitman et al, 2007" POSITION="left" ID="ID_18"/>
|
||||
<node ID="ID_16" POSITION="left" TEXT="lateral Intraparietal (LIP)">
|
||||
<node ID="ID_17" POSITION="left" TEXT="LIP neurons code for number with an accumulator-like coding scheme">
|
||||
<node ID="ID_18" POSITION="left" TEXT="Roitman et al, 2007"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Ventral Intraparietal (VIP)" POSITION="left" ID="ID_19">
|
||||
<node TEXT="Tudusciuc & Nieder, 2007" POSITION="left" ID="ID_20"/>
|
||||
<node TEXT="Abstract and likely to encode for auditory and visual numerosity" POSITION="left" ID="ID_21"/>
|
||||
<node TEXT="Likely fed by LIP numerosity accumulator codes" POSITION="left" ID="ID_22"/>
|
||||
<node ID="ID_19" POSITION="left" TEXT="Ventral Intraparietal (VIP)">
|
||||
<node ID="ID_20" POSITION="left" TEXT="Tudusciuc & Nieder, 2007"/>
|
||||
<node ID="ID_21" POSITION="left" TEXT="Abstract and likely to encode for auditory and visual numerosity"/>
|
||||
<node ID="ID_22" POSITION="left" TEXT="Likely fed by LIP numerosity accumulator codes"/>
|
||||
</node>
|
||||
<node TEXT="Horizontal Segment of the Intraparietal Sulcus (hIPS)" POSITION="left" ID="ID_23">
|
||||
<node TEXT="Core system for representing numerical quantity" POSITION="left" ID="ID_24">
|
||||
<node TEXT="Dahaene et all, 2003" POSITION="left" ID="ID_25"/>
|
||||
<node TEXT="Piazza et al, 2004" POSITION="left" ID="ID_26"/>
|
||||
<node TEXT="Piazza et al, 2006" POSITION="left" ID="ID_27"/>
|
||||
<node TEXT="Cantlon et al, 2006" POSITION="left" ID="ID_28"/>
|
||||
<node TEXT="Cappelletti et al, 2007" POSITION="left" ID="ID_29"/>
|
||||
<node TEXT="Dormal et al, 2008" POSITION="left" ID="ID_30"/>
|
||||
<node ID="ID_23" POSITION="left" TEXT="Horizontal Segment of the Intraparietal Sulcus (hIPS)">
|
||||
<node ID="ID_24" POSITION="left" TEXT="Core system for representing numerical quantity">
|
||||
<node ID="ID_25" POSITION="left" TEXT="Dahaene et all, 2003"/>
|
||||
<node ID="ID_26" POSITION="left" TEXT="Piazza et al, 2004"/>
|
||||
<node ID="ID_27" POSITION="left" TEXT="Piazza et al, 2006"/>
|
||||
<node ID="ID_28" POSITION="left" TEXT="Cantlon et al, 2006"/>
|
||||
<node ID="ID_29" POSITION="left" TEXT="Cappelletti et al, 2007"/>
|
||||
<node ID="ID_30" POSITION="left" TEXT="Dormal et al, 2008"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Prefrontal Cortex (PFC)" POSITION="left" ID="ID_31">
|
||||
<node TEXT="Codes and maintains numerosity information from intraparietal sulcus" POSITION="left" ID="ID_32"/>
|
||||
<node ID="ID_31" POSITION="left" TEXT="Prefrontal Cortex (PFC)">
|
||||
<node ID="ID_32" POSITION="left" TEXT="Codes and maintains numerosity information from intraparietal sulcus"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Computational Models" POSITION="left" ID="ID_33">
|
||||
<node TEXT="Grossberg & Repin, 2003" POSITION="left" ID="ID_34"/>
|
||||
<node TEXT="Verguts & Fias, 2005" POSITION="left" ID="ID_35"/>
|
||||
<node TEXT="Dehaene & Changeux, 1993" POSITION="left" ID="ID_36"/>
|
||||
<node ID="ID_33" POSITION="left" TEXT="Computational Models">
|
||||
<node ID="ID_34" POSITION="left" TEXT="Grossberg & Repin, 2003"/>
|
||||
<node ID="ID_35" POSITION="left" TEXT="Verguts & Fias, 2005"/>
|
||||
<node ID="ID_36" POSITION="left" TEXT="Dehaene & Changeux, 1993"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Exact Representations (Subitizing)" POSITION="right" ID="ID_37">
|
||||
<node TEXT="Parallel Visual Presentation with Pop-out" POSITION="right" ID="ID_38">
|
||||
<node TEXT="Trick & Pylyshyn, 1993" POSITION="right" ID="ID_39"/>
|
||||
<node TEXT="Posterior Parietal Map of a limited number of salient locations in the visual field" POSITION="right" ID="ID_40">
|
||||
<node TEXT="Piazza & Izard, 2009" POSITION="right" ID="ID_41"/>
|
||||
<node TEXT="Gottlieb, 2007" POSITION="right" ID="ID_42"/>
|
||||
<node ID="ID_37" POSITION="right" TEXT="Exact Representations (Subitizing)">
|
||||
<node ID="ID_38" POSITION="right" TEXT="Parallel Visual Presentation with Pop-out">
|
||||
<node ID="ID_39" POSITION="right" TEXT="Trick & Pylyshyn, 1993"/>
|
||||
<node ID="ID_40" POSITION="right" TEXT="Posterior Parietal Map of a limited number of salient locations in the visual field">
|
||||
<node ID="ID_41" POSITION="right" TEXT="Piazza & Izard, 2009"/>
|
||||
<node ID="ID_42" POSITION="right" TEXT="Gottlieb, 2007"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Exact Representations (Counting)" POSITION="right" ID="ID_43">
|
||||
<node TEXT="Serial Scanning" POSITION="right" ID="ID_44">
|
||||
<node TEXT="Attentional Deployment" POSITION="right" ID="ID_45">
|
||||
<node TEXT="Dorsal Stream (posterior parietal & lateral premotor cortices)" POSITION="right" ID="ID_46">
|
||||
<node TEXT="Butterworth, 2000" POSITION="right" ID="ID_47"/>
|
||||
<node TEXT="Piazza et al, 2003" POSITION="right" ID="ID_48"/>
|
||||
<node TEXT="Piazza et al, 2006" POSITION="right" ID="ID_49"/>
|
||||
<node ID="ID_43" POSITION="right" TEXT="Exact Representations (Counting)">
|
||||
<node ID="ID_44" POSITION="right" TEXT="Serial Scanning">
|
||||
<node ID="ID_45" POSITION="right" TEXT="Attentional Deployment">
|
||||
<node ID="ID_46" POSITION="right" TEXT="Dorsal Stream (posterior parietal & lateral premotor cortices)">
|
||||
<node ID="ID_47" POSITION="right" TEXT="Butterworth, 2000"/>
|
||||
<node ID="ID_48" POSITION="right" TEXT="Piazza et al, 2003"/>
|
||||
<node ID="ID_49" POSITION="right" TEXT="Piazza et al, 2006"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Working Memory" POSITION="right" ID="ID_50">
|
||||
<node TEXT="Subvocalization component of the verbal system" POSITION="right" ID="ID_51">
|
||||
<node TEXT="Logie & Baddeley, 1987" POSITION="right" ID="ID_52"/>
|
||||
<node TEXT="Hinton et al, 2004" POSITION="right" ID="ID_53"/>
|
||||
<node ID="ID_50" POSITION="right" TEXT="Working Memory">
|
||||
<node ID="ID_51" POSITION="right" TEXT="Subvocalization component of the verbal system">
|
||||
<node ID="ID_52" POSITION="right" TEXT="Logie & Baddeley, 1987"/>
|
||||
<node ID="ID_53" POSITION="right" TEXT="Hinton et al, 2004"/>
|
||||
</node>
|
||||
<node TEXT="Visio-spatial rehearsal loop in deaf children" POSITION="right" ID="ID_54">
|
||||
<node TEXT="Leybaert & Van Cutsem, 2002" POSITION="right" ID="ID_55"/>
|
||||
<node ID="ID_54" POSITION="right" TEXT="Visio-spatial rehearsal loop in deaf children">
|
||||
<node ID="ID_55" POSITION="right" TEXT="Leybaert & Van Cutsem, 2002"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,112 +1,109 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[Numerosity]]></text>
|
||||
<topic id="1" position="-200,0" order="0" shape="line">
|
||||
<topic id="1" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Approximate Representations]]></text>
|
||||
<topic id="2" position="-290,-25" order="0" shape="line">
|
||||
<topic id="2" order="0" position="-290,-25" shape="line">
|
||||
<text><![CDATA[Brain Regions]]></text>
|
||||
<topic id="3" position="-380,-50" order="0" shape="line">
|
||||
<topic id="3" order="0" position="-380,-50" shape="line">
|
||||
<text><![CDATA[Parietal Cortex]]></text>
|
||||
<topic id="4" position="-470,-50" order="0" shape="line">
|
||||
<topic id="4" order="0" position="-470,-50" shape="line">
|
||||
<text><![CDATA[Posterior Parietal Cortex (PPC)]]></text>
|
||||
<topic id="5" position="-560,-50" order="0" shape="line">
|
||||
<topic id="5" order="0" position="-560,-50" shape="line">
|
||||
<text><![CDATA[Intraparietal Sulcus (IPS)]]></text>
|
||||
<topic id="6" position="-650,-100" order="0" shape="line">
|
||||
<topic id="6" order="0" position="-650,-100" shape="line">
|
||||
<text><![CDATA[Neurons code for numerosity]]></text>
|
||||
<topic id="7" position="-740,-150"
|
||||
order="0" shape="line">
|
||||
<topic id="7" order="0"
|
||||
position="-740,-150" shape="line">
|
||||
<text><![CDATA[Concept of Mental Number Line]]></text>
|
||||
<topic id="8" position="-830,-175"
|
||||
order="0" shape="line">
|
||||
<topic id="8" order="0"
|
||||
position="-830,-175" shape="line">
|
||||
<text><![CDATA[Logarithmic Compression]]></text>
|
||||
<topic id="9"
|
||||
position="-920,-200"
|
||||
order="0" shape="line">
|
||||
<topic id="9" order="0"
|
||||
position="-920,-200" shape="line">
|
||||
<text><![CDATA[Dehaine & Changeux, 1993]]></text>
|
||||
</topic>
|
||||
<topic id="10"
|
||||
position="-920,-175"
|
||||
order="1" shape="line">
|
||||
<topic id="10" order="1"
|
||||
position="-920,-175" shape="line">
|
||||
<text><![CDATA[Nieder & Miller, 2003]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="11" position="-830,-150"
|
||||
order="1" shape="line">
|
||||
<topic id="11" order="1"
|
||||
position="-830,-150" shape="line">
|
||||
<text><![CDATA[Linear Scale with proportional increasing Std. Dev of Noise]]></text>
|
||||
<topic id="12"
|
||||
position="-920,-150"
|
||||
order="0" shape="line">
|
||||
<topic id="12" order="0"
|
||||
position="-920,-150" shape="line">
|
||||
<text><![CDATA[aallistel & Gelman, 2000]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="13" position="-740,-125"
|
||||
order="1" shape="line">
|
||||
<topic id="13" order="1"
|
||||
position="-740,-125" shape="line">
|
||||
<text><![CDATA[Nieder et al 2002]]></text>
|
||||
</topic>
|
||||
<topic id="14" position="-740,-100"
|
||||
order="2" shape="line">
|
||||
<topic id="14" order="2"
|
||||
position="-740,-100" shape="line">
|
||||
<text><![CDATA[Sawamura et al, 2002]]></text>
|
||||
</topic>
|
||||
<topic id="15" position="-740,-75"
|
||||
order="3" shape="line">
|
||||
<topic id="15" order="3"
|
||||
position="-740,-75" shape="line">
|
||||
<text><![CDATA[Nieder & Miller, 2003]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="16" position="-650,-75" order="1" shape="line">
|
||||
<topic id="16" order="1" position="-650,-75" shape="line">
|
||||
<text><![CDATA[lateral Intraparietal (LIP)]]></text>
|
||||
<topic id="17" position="-740,-75"
|
||||
order="0" shape="line">
|
||||
<topic id="17" order="0"
|
||||
position="-740,-75" shape="line">
|
||||
<text><![CDATA[LIP neurons code for number with an accumulator-like coding scheme]]></text>
|
||||
<topic id="18" position="-830,-75"
|
||||
order="0" shape="line">
|
||||
<topic id="18" order="0"
|
||||
position="-830,-75" shape="line">
|
||||
<text><![CDATA[Roitman et al, 2007]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="19" position="-650,-50" order="2" shape="line">
|
||||
<topic id="19" order="2" position="-650,-50" shape="line">
|
||||
<text><![CDATA[Ventral Intraparietal (VIP)]]></text>
|
||||
<topic id="20" position="-740,-75"
|
||||
order="0" shape="line">
|
||||
<topic id="20" order="0"
|
||||
position="-740,-75" shape="line">
|
||||
<text><![CDATA[Tudusciuc & Nieder, 2007]]></text>
|
||||
</topic>
|
||||
<topic id="21" position="-740,-50"
|
||||
order="1" shape="line">
|
||||
<topic id="21" order="1"
|
||||
position="-740,-50" shape="line">
|
||||
<text><![CDATA[Abstract and likely to encode for auditory and visual numerosity]]></text>
|
||||
</topic>
|
||||
<topic id="22" position="-740,-25"
|
||||
order="2" shape="line">
|
||||
<topic id="22" order="2"
|
||||
position="-740,-25" shape="line">
|
||||
<text><![CDATA[Likely fed by LIP numerosity accumulator codes]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="23" position="-650,-25" order="3" shape="line">
|
||||
<topic id="23" order="3" position="-650,-25" shape="line">
|
||||
<text><![CDATA[Horizontal Segment of the Intraparietal Sulcus (hIPS)]]></text>
|
||||
<topic id="24" position="-740,-25"
|
||||
order="0" shape="line">
|
||||
<topic id="24" order="0"
|
||||
position="-740,-25" shape="line">
|
||||
<text><![CDATA[Core system for representing numerical quantity]]></text>
|
||||
<topic id="25" position="-830,-100"
|
||||
order="0" shape="line">
|
||||
<topic id="25" order="0"
|
||||
position="-830,-100" shape="line">
|
||||
<text><![CDATA[Dahaene et all, 2003]]></text>
|
||||
</topic>
|
||||
<topic id="26" position="-830,-75"
|
||||
order="1" shape="line">
|
||||
<topic id="26" order="1"
|
||||
position="-830,-75" shape="line">
|
||||
<text><![CDATA[Piazza et al, 2004]]></text>
|
||||
</topic>
|
||||
<topic id="27" position="-830,-50"
|
||||
order="2" shape="line">
|
||||
<topic id="27" order="2"
|
||||
position="-830,-50" shape="line">
|
||||
<text><![CDATA[Piazza et al, 2006]]></text>
|
||||
</topic>
|
||||
<topic id="28" position="-830,-25"
|
||||
order="3" shape="line">
|
||||
<topic id="28" order="3"
|
||||
position="-830,-25" shape="line">
|
||||
<text><![CDATA[Cantlon et al, 2006]]></text>
|
||||
</topic>
|
||||
<topic id="29" position="-830,0"
|
||||
order="4" shape="line">
|
||||
<topic id="29" order="4"
|
||||
position="-830,0" shape="line">
|
||||
<text><![CDATA[Cappelletti et al, 2007]]></text>
|
||||
</topic>
|
||||
<topic id="30" position="-830,25"
|
||||
order="5" shape="line">
|
||||
<topic id="30" order="5"
|
||||
position="-830,25" shape="line">
|
||||
<text><![CDATA[Dormal et al, 2008]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
@ -114,84 +111,83 @@
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="31" position="-380,-25" order="1" shape="line">
|
||||
<topic id="31" order="1" position="-380,-25" shape="line">
|
||||
<text><![CDATA[Prefrontal Cortex (PFC)]]></text>
|
||||
<topic id="32" position="-470,-25" order="0" shape="line">
|
||||
<topic id="32" order="0" position="-470,-25" shape="line">
|
||||
<text><![CDATA[Codes and maintains numerosity information from intraparietal sulcus]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="33" position="-290,0" order="1" shape="line">
|
||||
<topic id="33" order="1" position="-290,0" shape="line">
|
||||
<text><![CDATA[Computational Models]]></text>
|
||||
<topic id="34" position="-380,-25" order="0" shape="line">
|
||||
<topic id="34" order="0" position="-380,-25" shape="line">
|
||||
<text><![CDATA[Grossberg & Repin, 2003]]></text>
|
||||
</topic>
|
||||
<topic id="35" position="-380,0" order="1" shape="line">
|
||||
<topic id="35" order="1" position="-380,0" shape="line">
|
||||
<text><![CDATA[Verguts & Fias, 2005]]></text>
|
||||
</topic>
|
||||
<topic id="36" position="-380,25" order="2" shape="line">
|
||||
<topic id="36" order="2" position="-380,25" shape="line">
|
||||
<text><![CDATA[Dehaene & Changeux, 1993]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="37" position="200,0" order="0" shape="line">
|
||||
<topic id="37" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Exact Representations (Subitizing)]]></text>
|
||||
<topic id="38" position="290,0" order="0" shape="line">
|
||||
<topic id="38" order="0" position="290,0" shape="line">
|
||||
<text><![CDATA[Parallel Visual Presentation with Pop-out]]></text>
|
||||
<topic id="39" position="380,-25" order="0" shape="line">
|
||||
<topic id="39" order="0" position="380,-25" shape="line">
|
||||
<text><![CDATA[Trick & Pylyshyn, 1993]]></text>
|
||||
</topic>
|
||||
<topic id="40" position="380,0" order="1" shape="line">
|
||||
<topic id="40" order="1" position="380,0" shape="line">
|
||||
<text><![CDATA[Posterior Parietal Map of a limited number of salient locations in the visual field]]></text>
|
||||
<topic id="41" position="470,-25" order="0" shape="line">
|
||||
<topic id="41" order="0" position="470,-25" shape="line">
|
||||
<text><![CDATA[Piazza & Izard, 2009]]></text>
|
||||
</topic>
|
||||
<topic id="42" position="470,0" order="1" shape="line">
|
||||
<topic id="42" order="1" position="470,0" shape="line">
|
||||
<text><![CDATA[Gottlieb, 2007]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="43" position="200,100" order="4" shape="line">
|
||||
<topic id="43" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[Exact Representations (Counting)]]></text>
|
||||
<topic id="44" position="290,75" order="0" shape="line">
|
||||
<topic id="44" order="0" position="290,75" shape="line">
|
||||
<text><![CDATA[Serial Scanning]]></text>
|
||||
<topic id="45" position="380,75" order="0" shape="line">
|
||||
<topic id="45" order="0" position="380,75" shape="line">
|
||||
<text><![CDATA[Attentional Deployment]]></text>
|
||||
<topic id="46" position="470,75" order="0" shape="line">
|
||||
<topic id="46" order="0" position="470,75" shape="line">
|
||||
<text><![CDATA[Dorsal Stream (posterior parietal & lateral premotor cortices)]]></text>
|
||||
<topic id="47" position="560,50" order="0" shape="line">
|
||||
<topic id="47" order="0" position="560,50" shape="line">
|
||||
<text><![CDATA[Butterworth, 2000]]></text>
|
||||
</topic>
|
||||
<topic id="48" position="560,75" order="1" shape="line">
|
||||
<topic id="48" order="1" position="560,75" shape="line">
|
||||
<text><![CDATA[Piazza et al, 2003]]></text>
|
||||
</topic>
|
||||
<topic id="49" position="560,100" order="2" shape="line">
|
||||
<topic id="49" order="2" position="560,100" shape="line">
|
||||
<text><![CDATA[Piazza et al, 2006]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="50" position="290,100" order="1" shape="line">
|
||||
<topic id="50" order="1" position="290,100" shape="line">
|
||||
<text><![CDATA[Working Memory]]></text>
|
||||
<topic id="51" position="380,75" order="0" shape="line">
|
||||
<topic id="51" order="0" position="380,75" shape="line">
|
||||
<text><![CDATA[Subvocalization component of the verbal system]]></text>
|
||||
<topic id="52" position="470,50" order="0" shape="line">
|
||||
<topic id="52" order="0" position="470,50" shape="line">
|
||||
<text><![CDATA[Logie & Baddeley, 1987]]></text>
|
||||
</topic>
|
||||
<topic id="53" position="470,75" order="1" shape="line">
|
||||
<topic id="53" order="1" position="470,75" shape="line">
|
||||
<text><![CDATA[Hinton et al, 2004]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="54" position="380,100" order="1" shape="line">
|
||||
<topic id="54" order="1" position="380,100" shape="line">
|
||||
<text><![CDATA[Visio-spatial rehearsal loop in deaf children]]></text>
|
||||
<topic id="55" position="470,100" order="0" shape="line">
|
||||
<topic id="55" order="0" position="470,100" shape="line">
|
||||
<text><![CDATA[Leybaert & Van Cutsem, 2002]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<relationship endArrow="true" lineType="3" destTopicId="32"
|
||||
srcTopicId="15" id="56"/>
|
||||
<relationship destTopicId="32" endArrow="true" id="56" lineType="3" srcTopicId="15"/>
|
||||
</map>
|
||||
|
@ -1,99 +1,99 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="California" ID="ID_0">
|
||||
<node TEXT="Northern California" POSITION="left" ID="ID_1">
|
||||
<node TEXT="Oakland/Berkeley" POSITION="left" ID="ID_2"/>
|
||||
<node TEXT="San Mateo" POSITION="left" ID="ID_3"/>
|
||||
<node TEXT="Other North" POSITION="left" ID="ID_4"/>
|
||||
<node TEXT="San Francisco" POSITION="left" ID="ID_5"/>
|
||||
<node TEXT="Santa Clara" POSITION="left" ID="ID_6"/>
|
||||
<node TEXT="Marin/Napa/Solano" POSITION="left" ID="ID_7"/>
|
||||
<node ID="ID_0" TEXT="California">
|
||||
<node ID="ID_1" POSITION="left" TEXT="Northern California">
|
||||
<node ID="ID_2" POSITION="left" TEXT="Oakland/Berkeley"/>
|
||||
<node ID="ID_3" POSITION="left" TEXT="San Mateo"/>
|
||||
<node ID="ID_4" POSITION="left" TEXT="Other North"/>
|
||||
<node ID="ID_5" POSITION="left" TEXT="San Francisco"/>
|
||||
<node ID="ID_6" POSITION="left" TEXT="Santa Clara"/>
|
||||
<node ID="ID_7" POSITION="left" TEXT="Marin/Napa/Solano"/>
|
||||
</node>
|
||||
<node TEXT="Hawaii" POSITION="left" ID="ID_8"/>
|
||||
<node TEXT="Southern California" POSITION="left" ID="ID_9">
|
||||
<node TEXT="Los Angeles" POSITION="left" ID="ID_10"/>
|
||||
<node TEXT="Anaheim/Santa Ana" POSITION="left" ID="ID_11"/>
|
||||
<node TEXT="Ventura" POSITION="left" ID="ID_12"/>
|
||||
<node TEXT="Other South" POSITION="left" ID="ID_13"/>
|
||||
<node ID="ID_8" POSITION="left" TEXT="Hawaii"/>
|
||||
<node ID="ID_9" POSITION="left" TEXT="Southern California">
|
||||
<node ID="ID_10" POSITION="left" TEXT="Los Angeles"/>
|
||||
<node ID="ID_11" POSITION="left" TEXT="Anaheim/Santa Ana"/>
|
||||
<node ID="ID_12" POSITION="left" TEXT="Ventura"/>
|
||||
<node ID="ID_13" POSITION="left" TEXT="Other South"/>
|
||||
</node>
|
||||
<node TEXT="Policy Bodies" POSITION="left" ID="ID_14">
|
||||
<node TEXT="Advocacy" POSITION="left" ID="ID_15">
|
||||
<node TEXT="AAO" POSITION="left" ID="ID_16"/>
|
||||
<node TEXT="ASCRS" POSITION="left" ID="ID_17"/>
|
||||
<node TEXT="EBAA" POSITION="left" ID="ID_18"/>
|
||||
<node ID="ID_14" POSITION="left" TEXT="Policy Bodies">
|
||||
<node ID="ID_15" POSITION="left" TEXT="Advocacy">
|
||||
<node ID="ID_16" POSITION="left" TEXT="AAO"/>
|
||||
<node ID="ID_17" POSITION="left" TEXT="ASCRS"/>
|
||||
<node ID="ID_18" POSITION="left" TEXT="EBAA"/>
|
||||
</node>
|
||||
<node TEXT="Military" POSITION="left" ID="ID_19"/>
|
||||
<node TEXT="United Network for Organ Sharing" POSITION="left" ID="ID_20"/>
|
||||
<node TEXT="Kaiser Hospital System" POSITION="left" ID="ID_21"/>
|
||||
<node TEXT="University of California System" POSITION="left" ID="ID_22"/>
|
||||
<node TEXT="CMS" POSITION="left" ID="ID_23">
|
||||
<node TEXT="Medicare Part A" POSITION="left" ID="ID_24"/>
|
||||
<node TEXT="Medicare Part B" POSITION="left" ID="ID_25"/>
|
||||
<node ID="ID_19" POSITION="left" TEXT="Military"/>
|
||||
<node ID="ID_20" POSITION="left" TEXT="United Network for Organ Sharing"/>
|
||||
<node ID="ID_21" POSITION="left" TEXT="Kaiser Hospital System"/>
|
||||
<node ID="ID_22" POSITION="left" TEXT="University of California System"/>
|
||||
<node ID="ID_23" POSITION="left" TEXT="CMS">
|
||||
<node ID="ID_24" POSITION="left" TEXT="Medicare Part A"/>
|
||||
<node ID="ID_25" POSITION="left" TEXT="Medicare Part B"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Corneal Tissue OPS" POSITION="right" ID="ID_26">
|
||||
<node TEXT="Transplant Bank International" POSITION="right" ID="ID_27">
|
||||
<node TEXT="Orange County Eye and Transplant Bank" POSITION="right" ID="ID_28"/>
|
||||
<node TEXT="Northern California Transplant Bank" STYLE="bubble" POSITION="right" ID="ID_29" BACKGROUND_COLOR="#00ffd5">
|
||||
<node TEXT="In 2010, 2,500 referrals forwarded to OneLegacy" POSITION="right" ID="ID_30"/>
|
||||
<node ID="ID_26" POSITION="right" TEXT="Corneal Tissue OPS">
|
||||
<node ID="ID_27" POSITION="right" TEXT="Transplant Bank International">
|
||||
<node ID="ID_28" POSITION="right" TEXT="Orange County Eye and Transplant Bank"/>
|
||||
<node BACKGROUND_COLOR="#00ffd5" ID="ID_29" POSITION="right" STYLE="bubble" TEXT="Northern California Transplant Bank">
|
||||
<node ID="ID_30" POSITION="right" TEXT="In 2010, 2,500 referrals forwarded to OneLegacy"/>
|
||||
</node>
|
||||
<node TEXT="Doheny Eye and Tissue Transplant Bank" STYLE="bubble" POSITION="right" LINK="http://www.dohenyeyebank.org/" ID="ID_31" BACKGROUND_COLOR="#00ffd5"/>
|
||||
<arrowlink ENDARROW="Default" DESTINATION="ID_32"/>
|
||||
<arrowlink ENDARROW="Default" DESTINATION="ID_36"/>
|
||||
<node BACKGROUND_COLOR="#00ffd5" ID="ID_31" LINK="http://www.dohenyeyebank.org/" POSITION="right" STYLE="bubble" TEXT="Doheny Eye and Tissue Transplant Bank"/>
|
||||
<arrowlink DESTINATION="ID_32" ENDARROW="Default"/>
|
||||
<arrowlink DESTINATION="ID_36" ENDARROW="Default"/>
|
||||
</node>
|
||||
<node TEXT="OneLegacy" STYLE="bubble" POSITION="right" ID="ID_32" BACKGROUND_COLOR="#00ffd5">
|
||||
<node TEXT="In 2010, 11,828 referrals" POSITION="right" ID="ID_33"/>
|
||||
<node BACKGROUND_COLOR="#00ffd5" ID="ID_32" POSITION="right" STYLE="bubble" TEXT="OneLegacy">
|
||||
<node ID="ID_33" POSITION="right" TEXT="In 2010, 11,828 referrals"/>
|
||||
</node>
|
||||
<node TEXT="San Diego Eye Bank" STYLE="bubble" POSITION="right" ID="ID_34" BACKGROUND_COLOR="#00ffd5">
|
||||
<node TEXT="In 2010, 2,555 referrals" POSITION="right" ID="ID_35"/>
|
||||
<node BACKGROUND_COLOR="#00ffd5" ID="ID_34" POSITION="right" STYLE="bubble" TEXT="San Diego Eye Bank">
|
||||
<node ID="ID_35" POSITION="right" TEXT="In 2010, 2,555 referrals"/>
|
||||
</node>
|
||||
<node TEXT="California Transplant Donor Network" POSITION="right" ID="ID_36"/>
|
||||
<node TEXT="California Transplant Services" POSITION="right" ID="ID_37">
|
||||
<node TEXT="In 2010, 0 referrals" POSITION="right" ID="ID_38"/>
|
||||
<node ID="ID_36" POSITION="right" TEXT="California Transplant Donor Network"/>
|
||||
<node ID="ID_37" POSITION="right" TEXT="California Transplant Services">
|
||||
<node ID="ID_38" POSITION="right" TEXT="In 2010, 0 referrals"/>
|
||||
</node>
|
||||
<node TEXT="Lifesharing" POSITION="right" ID="ID_39"/>
|
||||
<node TEXT="DCI Donor Services" POSITION="right" ID="ID_40">
|
||||
<node TEXT="Sierra Eye and Tissue Donor Services" STYLE="bubble" POSITION="right" ID="ID_41" BACKGROUND_COLOR="#00ffd5">
|
||||
<node TEXT="In 2010, 2.023 referrals" POSITION="right" ID="ID_42"/>
|
||||
<node ID="ID_39" POSITION="right" TEXT="Lifesharing"/>
|
||||
<node ID="ID_40" POSITION="right" TEXT="DCI Donor Services">
|
||||
<node BACKGROUND_COLOR="#00ffd5" ID="ID_41" POSITION="right" STYLE="bubble" TEXT="Sierra Eye and Tissue Donor Services">
|
||||
<node ID="ID_42" POSITION="right" TEXT="In 2010, 2.023 referrals"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="SightLife" STYLE="bubble" POSITION="right" ID="ID_43" BACKGROUND_COLOR="#00ffd5"/>
|
||||
<node BACKGROUND_COLOR="#00ffd5" ID="ID_43" POSITION="right" STYLE="bubble" TEXT="SightLife"/>
|
||||
</node>
|
||||
<node TEXT="Tools" POSITION="left" ID="ID_44">
|
||||
<node TEXT="Darthmouth Atlas of Health" POSITION="left" ID="ID_45"/>
|
||||
<node TEXT="HealthLandscape" POSITION="left" ID="ID_46"/>
|
||||
<node ID="ID_44" POSITION="left" TEXT="Tools">
|
||||
<node ID="ID_45" POSITION="left" TEXT="Darthmouth Atlas of Health"/>
|
||||
<node ID="ID_46" POSITION="left" TEXT="HealthLandscape"/>
|
||||
</node>
|
||||
<node TEXT="QE Medicare" POSITION="right" ID="ID_47"/>
|
||||
<node TEXT="CMS Data" POSITION="right" ID="ID_48"/>
|
||||
<node TEXT="Ambulatory Payment Classification" POSITION="right" ID="ID_49">
|
||||
<node TEXT="CPT's which don't allow V2785" POSITION="right" ID="ID_50">
|
||||
<node TEXT="Ocular Reconstruction Transplant" POSITION="right" ID="ID_51">
|
||||
<node TEXT="65780 (amniotic membrane tranplant" POSITION="right" ID="ID_52"/>
|
||||
<node TEXT="65781 (limbal stem cell allograft)" POSITION="right" ID="ID_53"/>
|
||||
<node TEXT="65782 (limbal conjunctiva autograft)" POSITION="right" ID="ID_54"/>
|
||||
<node ID="ID_47" POSITION="right" TEXT="QE Medicare"/>
|
||||
<node ID="ID_48" POSITION="right" TEXT="CMS Data"/>
|
||||
<node ID="ID_49" POSITION="right" TEXT="Ambulatory Payment Classification">
|
||||
<node ID="ID_50" POSITION="right" TEXT="CPT's which don't allow V2785">
|
||||
<node ID="ID_51" POSITION="right" TEXT="Ocular Reconstruction Transplant">
|
||||
<node ID="ID_52" POSITION="right" TEXT="65780 (amniotic membrane tranplant"/>
|
||||
<node ID="ID_53" POSITION="right" TEXT="65781 (limbal stem cell allograft)"/>
|
||||
<node ID="ID_54" POSITION="right" TEXT="65782 (limbal conjunctiva autograft)"/>
|
||||
</node>
|
||||
<node TEXT="Endothelial keratoplasty" POSITION="right" ID="ID_55">
|
||||
<node TEXT="65756" POSITION="right" ID="ID_56"/>
|
||||
<node ID="ID_55" POSITION="right" TEXT="Endothelial keratoplasty">
|
||||
<node ID="ID_56" POSITION="right" TEXT="65756"/>
|
||||
</node>
|
||||
<node TEXT="Epikeratoplasty" POSITION="right" ID="ID_57">
|
||||
<node TEXT="65767" POSITION="right" ID="ID_58"/>
|
||||
<node ID="ID_57" POSITION="right" TEXT="Epikeratoplasty">
|
||||
<node ID="ID_58" POSITION="right" TEXT="65767"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Anterior lamellar keratoplasty" POSITION="right" ID="ID_59">
|
||||
<node TEXT="65710" POSITION="right" ID="ID_60"/>
|
||||
<node ID="ID_59" POSITION="right" TEXT="Anterior lamellar keratoplasty">
|
||||
<node ID="ID_60" POSITION="right" TEXT="65710"/>
|
||||
</node>
|
||||
<node TEXT="Processing, preserving, and transporting corneal tissue" POSITION="right" ID="ID_61">
|
||||
<node TEXT="V2785" POSITION="right" ID="ID_62"/>
|
||||
<node TEXT="Laser incision in recepient" POSITION="right" ID="ID_63">
|
||||
<node TEXT="0290T" POSITION="right" ID="ID_64"/>
|
||||
<node ID="ID_61" POSITION="right" TEXT="Processing, preserving, and transporting corneal tissue">
|
||||
<node ID="ID_62" POSITION="right" TEXT="V2785"/>
|
||||
<node ID="ID_63" POSITION="right" TEXT="Laser incision in recepient">
|
||||
<node ID="ID_64" POSITION="right" TEXT="0290T"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Laser incision in donor" POSITION="right" ID="ID_65">
|
||||
<node TEXT="0289T" POSITION="right" ID="ID_66"/>
|
||||
<node ID="ID_65" POSITION="right" TEXT="Laser incision in donor">
|
||||
<node ID="ID_66" POSITION="right" TEXT="0289T"/>
|
||||
</node>
|
||||
<node TEXT="Penetrating keratoplasty" POSITION="right" ID="ID_67">
|
||||
<node TEXT="65730 (in other)" POSITION="right" ID="ID_68"/>
|
||||
<node TEXT="65755 (in pseudoaphakia)" POSITION="right" ID="ID_69"/>
|
||||
<node TEXT="65750 (in aphakia)" POSITION="right" ID="ID_70"/>
|
||||
<node ID="ID_67" POSITION="right" TEXT="Penetrating keratoplasty">
|
||||
<node ID="ID_68" POSITION="right" TEXT="65730 (in other)"/>
|
||||
<node ID="ID_69" POSITION="right" TEXT="65755 (in pseudoaphakia)"/>
|
||||
<node ID="ID_70" POSITION="right" TEXT="65750 (in aphakia)"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,227 +1,225 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[California]]></text>
|
||||
<topic id="1" position="-200,-200" order="7" shape="line">
|
||||
<topic id="1" order="7" position="-200,-200" shape="line">
|
||||
<text><![CDATA[Northern California]]></text>
|
||||
<topic id="2" position="-290,-275" order="0" shape="line">
|
||||
<topic id="2" order="0" position="-290,-275" shape="line">
|
||||
<text><![CDATA[Oakland/Berkeley]]></text>
|
||||
</topic>
|
||||
<topic id="3" position="-290,-250" order="1" shape="line">
|
||||
<topic id="3" order="1" position="-290,-250" shape="line">
|
||||
<text><![CDATA[San Mateo]]></text>
|
||||
</topic>
|
||||
<topic id="4" position="-290,-225" order="2" shape="line">
|
||||
<topic id="4" order="2" position="-290,-225" shape="line">
|
||||
<text><![CDATA[Other North]]></text>
|
||||
</topic>
|
||||
<topic id="5" position="-290,-200" order="3" shape="line">
|
||||
<topic id="5" order="3" position="-290,-200" shape="line">
|
||||
<text><![CDATA[San Francisco]]></text>
|
||||
</topic>
|
||||
<topic id="6" position="-290,-175" order="4" shape="line">
|
||||
<topic id="6" order="4" position="-290,-175" shape="line">
|
||||
<text><![CDATA[Santa Clara]]></text>
|
||||
</topic>
|
||||
<topic id="7" position="-290,-150" order="5" shape="line">
|
||||
<topic id="7" order="5" position="-290,-150" shape="line">
|
||||
<text><![CDATA[Marin/Napa/Solano]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="8" position="-200,-100" order="3" shape="line">
|
||||
<topic id="8" order="3" position="-200,-100" shape="line">
|
||||
<text><![CDATA[Hawaii]]></text>
|
||||
</topic>
|
||||
<topic id="9" position="-200,0" order="0" shape="line">
|
||||
<topic id="9" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Southern California]]></text>
|
||||
<topic id="10" position="-290,-50" order="0" shape="line">
|
||||
<topic id="10" order="0" position="-290,-50" shape="line">
|
||||
<text><![CDATA[Los Angeles]]></text>
|
||||
</topic>
|
||||
<topic id="11" position="-290,-25" order="1" shape="line">
|
||||
<topic id="11" order="1" position="-290,-25" shape="line">
|
||||
<text><![CDATA[Anaheim/Santa Ana]]></text>
|
||||
</topic>
|
||||
<topic id="12" position="-290,0" order="2" shape="line">
|
||||
<topic id="12" order="2" position="-290,0" shape="line">
|
||||
<text><![CDATA[Ventura]]></text>
|
||||
</topic>
|
||||
<topic id="13" position="-290,25" order="3" shape="line">
|
||||
<topic id="13" order="3" position="-290,25" shape="line">
|
||||
<text><![CDATA[Other South]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="14" position="-200,100" order="4" shape="line">
|
||||
<topic id="14" order="4" position="-200,100" shape="line">
|
||||
<text><![CDATA[Policy Bodies]]></text>
|
||||
<topic id="15" position="-290,25" order="0" shape="line">
|
||||
<topic id="15" order="0" position="-290,25" shape="line">
|
||||
<text><![CDATA[Advocacy]]></text>
|
||||
<topic id="16" position="-380,0" order="0" shape="line">
|
||||
<topic id="16" order="0" position="-380,0" shape="line">
|
||||
<text><![CDATA[AAO]]></text>
|
||||
</topic>
|
||||
<topic id="17" position="-380,25" order="1" shape="line">
|
||||
<topic id="17" order="1" position="-380,25" shape="line">
|
||||
<text><![CDATA[ASCRS]]></text>
|
||||
</topic>
|
||||
<topic id="18" position="-380,50" order="2" shape="line">
|
||||
<topic id="18" order="2" position="-380,50" shape="line">
|
||||
<text><![CDATA[EBAA]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="19" position="-290,50" order="1" shape="line">
|
||||
<topic id="19" order="1" position="-290,50" shape="line">
|
||||
<text><![CDATA[Military]]></text>
|
||||
</topic>
|
||||
<topic id="20" position="-290,75" order="2" shape="line">
|
||||
<topic id="20" order="2" position="-290,75" shape="line">
|
||||
<text><![CDATA[United Network for Organ Sharing]]></text>
|
||||
</topic>
|
||||
<topic id="21" position="-290,100" order="3" shape="line">
|
||||
<topic id="21" order="3" position="-290,100" shape="line">
|
||||
<text><![CDATA[Kaiser Hospital System]]></text>
|
||||
</topic>
|
||||
<topic id="22" position="-290,125" order="4" shape="line">
|
||||
<topic id="22" order="4" position="-290,125" shape="line">
|
||||
<text><![CDATA[University of California System]]></text>
|
||||
</topic>
|
||||
<topic id="23" position="-290,150" order="5" shape="line">
|
||||
<topic id="23" order="5" position="-290,150" shape="line">
|
||||
<text><![CDATA[CMS]]></text>
|
||||
<topic id="24" position="-380,125" order="0" shape="line">
|
||||
<topic id="24" order="0" position="-380,125" shape="line">
|
||||
<text><![CDATA[Medicare Part A]]></text>
|
||||
</topic>
|
||||
<topic id="25" position="-380,150" order="1" shape="line">
|
||||
<topic id="25" order="1" position="-380,150" shape="line">
|
||||
<text><![CDATA[Medicare Part B]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="26" position="200,-100" order="3" shape="line">
|
||||
<topic id="26" order="3" position="200,-100" shape="line">
|
||||
<text><![CDATA[Corneal Tissue OPS]]></text>
|
||||
<topic id="27" position="290,-200" order="0" shape="line">
|
||||
<topic id="27" order="0" position="290,-200" shape="line">
|
||||
<text><![CDATA[Transplant Bank International]]></text>
|
||||
<topic id="28" position="380,-250" order="0" shape="line">
|
||||
<topic id="28" order="0" position="380,-250" shape="line">
|
||||
<text><![CDATA[Orange County Eye and Transplant Bank]]></text>
|
||||
</topic>
|
||||
<topic id="29" position="380,-225" order="1"
|
||||
bgColor="#00ffd5" shape="rounded rectagle">
|
||||
<topic bgColor="#00ffd5" id="29" order="1"
|
||||
position="380,-225" shape="rounded rectagle">
|
||||
<text><![CDATA[Northern California Transplant Bank]]></text>
|
||||
<topic id="30" position="470,-225" order="0" shape="line">
|
||||
<topic id="30" order="0" position="470,-225" shape="line">
|
||||
<text><![CDATA[In 2010, 2,500 referrals forwarded to OneLegacy]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="31" position="380,-200" order="2"
|
||||
bgColor="#00ffd5" shape="rounded rectagle">
|
||||
<topic bgColor="#00ffd5" id="31" order="2"
|
||||
position="380,-200" shape="rounded rectagle">
|
||||
<text><![CDATA[Doheny Eye and Tissue Transplant Bank]]></text>
|
||||
<link url="http://www.dohenyeyebank.org/"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="32" position="290,-175" order="1"
|
||||
bgColor="#00ffd5" shape="rounded rectagle">
|
||||
<topic bgColor="#00ffd5" id="32" order="1"
|
||||
position="290,-175" shape="rounded rectagle">
|
||||
<text><![CDATA[OneLegacy]]></text>
|
||||
<topic id="33" position="380,-200" order="0" shape="line">
|
||||
<topic id="33" order="0" position="380,-200" shape="line">
|
||||
<text><![CDATA[In 2010, 11,828 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="34" position="290,-150" order="2"
|
||||
bgColor="#00ffd5" shape="rounded rectagle">
|
||||
<topic bgColor="#00ffd5" id="34" order="2"
|
||||
position="290,-150" shape="rounded rectagle">
|
||||
<text><![CDATA[San Diego Eye Bank]]></text>
|
||||
<topic id="35" position="380,-150" order="0" shape="line">
|
||||
<topic id="35" order="0" position="380,-150" shape="line">
|
||||
<text><![CDATA[In 2010, 2,555 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="36" position="290,-125" order="3" shape="line">
|
||||
<topic id="36" order="3" position="290,-125" shape="line">
|
||||
<text><![CDATA[California Transplant Donor Network]]></text>
|
||||
</topic>
|
||||
<topic id="37" position="290,-100" order="4" shape="line">
|
||||
<topic id="37" order="4" position="290,-100" shape="line">
|
||||
<text><![CDATA[California Transplant Services]]></text>
|
||||
<topic id="38" position="380,-100" order="0" shape="line">
|
||||
<topic id="38" order="0" position="380,-100" shape="line">
|
||||
<text><![CDATA[In 2010, 0 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="39" position="290,-75" order="5" shape="line">
|
||||
<topic id="39" order="5" position="290,-75" shape="line">
|
||||
<text><![CDATA[Lifesharing]]></text>
|
||||
</topic>
|
||||
<topic id="40" position="290,-50" order="6" shape="line">
|
||||
<topic id="40" order="6" position="290,-50" shape="line">
|
||||
<text><![CDATA[DCI Donor Services]]></text>
|
||||
<topic id="41" position="380,-50" order="0"
|
||||
bgColor="#00ffd5" shape="rounded rectagle">
|
||||
<topic bgColor="#00ffd5" id="41" order="0"
|
||||
position="380,-50" shape="rounded rectagle">
|
||||
<text><![CDATA[Sierra Eye and Tissue Donor Services]]></text>
|
||||
<topic id="42" position="470,-75" order="0" shape="line">
|
||||
<topic id="42" order="0" position="470,-75" shape="line">
|
||||
<text><![CDATA[In 2010, 2.023 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="43" position="290,-25" order="7"
|
||||
bgColor="#00ffd5" shape="rounded rectagle">
|
||||
<topic bgColor="#00ffd5" id="43" order="7"
|
||||
position="290,-25" shape="rounded rectagle">
|
||||
<text><![CDATA[SightLife]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="44" position="-200,200" order="8" shape="line">
|
||||
<topic id="44" order="8" position="-200,200" shape="line">
|
||||
<text><![CDATA[Tools]]></text>
|
||||
<topic id="45" position="-290,175" order="0" shape="line">
|
||||
<topic id="45" order="0" position="-290,175" shape="line">
|
||||
<text><![CDATA[Darthmouth Atlas of Health]]></text>
|
||||
</topic>
|
||||
<topic id="46" position="-290,200" order="1" shape="line">
|
||||
<topic id="46" order="1" position="-290,200" shape="line">
|
||||
<text><![CDATA[HealthLandscape]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="47" position="200,0" order="0" shape="line">
|
||||
<topic id="47" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[QE Medicare]]></text>
|
||||
</topic>
|
||||
<topic id="48" position="200,100" order="4" shape="line">
|
||||
<topic id="48" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[CMS Data]]></text>
|
||||
</topic>
|
||||
<topic id="49" position="200,200" order="8" shape="line">
|
||||
<topic id="49" order="8" position="200,200" shape="line">
|
||||
<text><![CDATA[Ambulatory Payment Classification]]></text>
|
||||
<topic id="50" position="290,150" order="0" shape="line">
|
||||
<topic id="50" order="0" position="290,150" shape="line">
|
||||
<text><![CDATA[CPT's which don't allow V2785]]></text>
|
||||
<topic id="51" position="380,125" order="0" shape="line">
|
||||
<topic id="51" order="0" position="380,125" shape="line">
|
||||
<text><![CDATA[Ocular Reconstruction Transplant]]></text>
|
||||
<topic id="52" position="470,100" order="0" shape="line">
|
||||
<topic id="52" order="0" position="470,100" shape="line">
|
||||
<text><![CDATA[65780 (amniotic membrane tranplant]]></text>
|
||||
</topic>
|
||||
<topic id="53" position="470,125" order="1" shape="line">
|
||||
<topic id="53" order="1" position="470,125" shape="line">
|
||||
<text><![CDATA[65781 (limbal stem cell allograft)]]></text>
|
||||
</topic>
|
||||
<topic id="54" position="470,150" order="2" shape="line">
|
||||
<topic id="54" order="2" position="470,150" shape="line">
|
||||
<text><![CDATA[65782 (limbal conjunctiva autograft)]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="55" position="380,150" order="1" shape="line">
|
||||
<topic id="55" order="1" position="380,150" shape="line">
|
||||
<text><![CDATA[Endothelial keratoplasty]]></text>
|
||||
<topic id="56" position="470,150" order="0" shape="line">
|
||||
<topic id="56" order="0" position="470,150" shape="line">
|
||||
<text><![CDATA[65756]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="57" position="380,175" order="2" shape="line">
|
||||
<topic id="57" order="2" position="380,175" shape="line">
|
||||
<text><![CDATA[Epikeratoplasty]]></text>
|
||||
<topic id="58" position="470,175" order="0" shape="line">
|
||||
<topic id="58" order="0" position="470,175" shape="line">
|
||||
<text><![CDATA[65767]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="59" position="290,175" order="1" shape="line">
|
||||
<topic id="59" order="1" position="290,175" shape="line">
|
||||
<text><![CDATA[Anterior lamellar keratoplasty]]></text>
|
||||
<topic id="60" position="380,175" order="0" shape="line">
|
||||
<topic id="60" order="0" position="380,175" shape="line">
|
||||
<text><![CDATA[65710]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="61" position="290,200" order="2" shape="line">
|
||||
<topic id="61" order="2" position="290,200" shape="line">
|
||||
<text><![CDATA[Processing, preserving, and transporting corneal tissue]]></text>
|
||||
<topic id="62" position="380,175" order="0" shape="line">
|
||||
<topic id="62" order="0" position="380,175" shape="line">
|
||||
<text><![CDATA[V2785]]></text>
|
||||
</topic>
|
||||
<topic id="63" position="380,200" order="1" shape="line">
|
||||
<topic id="63" order="1" position="380,200" shape="line">
|
||||
<text><![CDATA[Laser incision in recepient]]></text>
|
||||
<topic id="64" position="470,200" order="0" shape="line">
|
||||
<topic id="64" order="0" position="470,200" shape="line">
|
||||
<text><![CDATA[0290T]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="65" position="290,225" order="3" shape="line">
|
||||
<topic id="65" order="3" position="290,225" shape="line">
|
||||
<text><![CDATA[Laser incision in donor]]></text>
|
||||
<topic id="66" position="380,225" order="0" shape="line">
|
||||
<topic id="66" order="0" position="380,225" shape="line">
|
||||
<text><![CDATA[0289T]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="67" position="290,250" order="4" shape="line">
|
||||
<topic id="67" order="4" position="290,250" shape="line">
|
||||
<text><![CDATA[Penetrating keratoplasty]]></text>
|
||||
<topic id="68" position="380,225" order="0" shape="line">
|
||||
<topic id="68" order="0" position="380,225" shape="line">
|
||||
<text><![CDATA[65730 (in other)]]></text>
|
||||
</topic>
|
||||
<topic id="69" position="380,250" order="1" shape="line">
|
||||
<topic id="69" order="1" position="380,250" shape="line">
|
||||
<text><![CDATA[65755 (in pseudoaphakia)]]></text>
|
||||
</topic>
|
||||
<topic id="70" position="380,275" order="2" shape="line">
|
||||
<topic id="70" order="2" position="380,275" shape="line">
|
||||
<text><![CDATA[65750 (in aphakia)]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<relationship endArrow="true" lineType="3" destTopicId="32"
|
||||
srcTopicId="27" id="71"/>
|
||||
<relationship endArrow="true" lineType="3" destTopicId="36"
|
||||
srcTopicId="27" id="72"/>
|
||||
<relationship destTopicId="32" endArrow="true" id="71" lineType="3" srcTopicId="27"/>
|
||||
<relationship destTopicId="36" endArrow="true" id="72" lineType="3" srcTopicId="27"/>
|
||||
</map>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="120924 Programme" ID="ID_0" COLOR="#ff3300" BACKGROUND_COLOR="#99ffff">
|
||||
<font SIZE="10" NAME="Arial" BOLD="true"/>
|
||||
<node BACKGROUND_COLOR="#99ffff" COLOR="#ff3300" ID="ID_0" TEXT="120924 Programme">
|
||||
<font BOLD="true" NAME="Arial" SIZE="10"/>
|
||||
<richcontent TYPE="NOTE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -9,7 +9,7 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<node STYLE="bubble" POSITION="right" ID="ID_1" COLOR="#0000cc" BACKGROUND_COLOR="#ffff33">
|
||||
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_1" POSITION="right" STYLE="bubble">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -19,22 +19,22 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node TEXT="modalités" POSITION="right" ID="ID_2" COLOR="#006600">
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="cf. mi-parcours 201109" POSITION="right" ID="ID_3"/>
|
||||
<node TEXT="à partir des plans d'actions" POSITION="right" ID="ID_4">
|
||||
<font SIZE="8" NAME="Arial"/>
|
||||
<node COLOR="#006600" ID="ID_2" POSITION="right" TEXT="modalités">
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_3" POSITION="right" TEXT="cf. mi-parcours 201109"/>
|
||||
<node ID="ID_4" POSITION="right" TEXT="à partir des plans d'actions">
|
||||
<font NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
<node TEXT="donner la parole aux référents prévus, en demandant des exemples" POSITION="right" ID="ID_5">
|
||||
<font SIZE="8" NAME="Arial"/>
|
||||
<node ID="ID_5" POSITION="right" TEXT="donner la parole aux référents prévus, en demandant des exemples">
|
||||
<font NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
<node TEXT="faire compléter par les autres participants" POSITION="right" ID="ID_6">
|
||||
<font SIZE="8" NAME="Arial"/>
|
||||
<node ID="ID_6" POSITION="right" TEXT="faire compléter par les autres participants">
|
||||
<font NAME="Arial" SIZE="8"/>
|
||||
</node>
|
||||
</node>
|
||||
<node STYLE="bubble" POSITION="right" ID="ID_7" COLOR="#0000cc" BACKGROUND_COLOR="#99ffff">
|
||||
<node BACKGROUND_COLOR="#99ffff" COLOR="#0000cc" ID="ID_7" POSITION="right" STYLE="bubble">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -45,9 +45,9 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_8" BACKGROUND_COLOR="#99ffff">
|
||||
<node BACKGROUND_COLOR="#99ffff" ID="ID_8" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -57,15 +57,15 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<node TEXT="Bleu 0%" STYLE="rectagle" POSITION="right" ID="ID_9" BACKGROUND_COLOR="#0099ff"/>
|
||||
<node TEXT="Rouge 25%" STYLE="rectagle" POSITION="right" ID="ID_10" BACKGROUND_COLOR="#ff9999"/>
|
||||
<node TEXT="Orange 50%" STYLE="rectagle" POSITION="right" ID="ID_11" BACKGROUND_COLOR="#ffcc00"/>
|
||||
<node TEXT="Jaune 75%" STYLE="rectagle" POSITION="right" ID="ID_12" BACKGROUND_COLOR="#ffff00"/>
|
||||
<node TEXT="Vert" STYLE="rectagle" POSITION="right" ID="ID_13" BACKGROUND_COLOR="#66ff00">
|
||||
<node TEXT="100 %" POSITION="right" ID="ID_14"/>
|
||||
<node BACKGROUND_COLOR="#0099ff" ID="ID_9" POSITION="right" STYLE="rectagle" TEXT="Bleu 0%"/>
|
||||
<node BACKGROUND_COLOR="#ff9999" ID="ID_10" POSITION="right" STYLE="rectagle" TEXT="Rouge 25%"/>
|
||||
<node BACKGROUND_COLOR="#ffcc00" ID="ID_11" POSITION="right" STYLE="rectagle" TEXT="Orange 50%"/>
|
||||
<node BACKGROUND_COLOR="#ffff00" ID="ID_12" POSITION="right" STYLE="rectagle" TEXT="Jaune 75%"/>
|
||||
<node BACKGROUND_COLOR="#66ff00" ID="ID_13" POSITION="right" STYLE="rectagle" TEXT="Vert">
|
||||
<node ID="ID_14" POSITION="right" TEXT="100 %"/>
|
||||
</node>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_15" FOLDED="true" COLOR="#006600" BACKGROUND_COLOR="#66ff00">
|
||||
<node BACKGROUND_COLOR="#66ff00" COLOR="#006600" FOLDED="true" ID="ID_15" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -75,10 +75,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Sophie" POSITION="right" ID="ID_16"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_16" POSITION="right" TEXT="Sophie"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_17" COLOR="#006600" BACKGROUND_COLOR="#ffff00">
|
||||
<node BACKGROUND_COLOR="#ffff00" COLOR="#006600" ID="ID_17" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -88,10 +88,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Martine D et Christine" POSITION="right" ID="ID_18"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_18" POSITION="right" TEXT="Martine D et Christine"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_19" COLOR="#006600" BACKGROUND_COLOR="#66ff00">
|
||||
<node BACKGROUND_COLOR="#66ff00" COLOR="#006600" ID="ID_19" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -101,10 +101,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Nathalie" POSITION="right" ID="ID_20"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_20" POSITION="right" TEXT="Nathalie"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_21" COLOR="#006600" BACKGROUND_COLOR="#ffff00">
|
||||
<node BACKGROUND_COLOR="#ffff00" COLOR="#006600" ID="ID_21" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -114,10 +114,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Josiane" POSITION="right" ID="ID_22"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_22" POSITION="right" TEXT="Josiane"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_23" COLOR="#006600" BACKGROUND_COLOR="#ffcc00">
|
||||
<node BACKGROUND_COLOR="#ffcc00" COLOR="#006600" ID="ID_23" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -127,10 +127,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Agnès" POSITION="right" ID="ID_24"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_24" POSITION="right" TEXT="Agnès"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_25" COLOR="#006600" BACKGROUND_COLOR="#66ff00">
|
||||
<node BACKGROUND_COLOR="#66ff00" COLOR="#006600" ID="ID_25" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -141,11 +141,11 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Nathalie" POSITION="right" ID="ID_26"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_26" POSITION="right" TEXT="Nathalie"/>
|
||||
</node>
|
||||
</node>
|
||||
<node STYLE="bubble" POSITION="right" ID="ID_27" COLOR="#0000cc" BACKGROUND_COLOR="#99ffff">
|
||||
<node BACKGROUND_COLOR="#99ffff" COLOR="#0000cc" ID="ID_27" POSITION="right" STYLE="bubble">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -155,9 +155,9 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_28" COLOR="#006600" BACKGROUND_COLOR="#ffff00">
|
||||
<node BACKGROUND_COLOR="#ffff00" COLOR="#006600" ID="ID_28" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -167,10 +167,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Agnès" POSITION="right" ID="ID_29"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_29" POSITION="right" TEXT="Agnès"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_30" COLOR="#006600" BACKGROUND_COLOR="#ffcc00">
|
||||
<node BACKGROUND_COLOR="#ffcc00" COLOR="#006600" ID="ID_30" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -180,10 +180,10 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Martine G" POSITION="right" ID="ID_31"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_31" POSITION="right" TEXT="Martine G"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_32" COLOR="#006600" BACKGROUND_COLOR="#66ff00">
|
||||
<node BACKGROUND_COLOR="#66ff00" COLOR="#006600" ID="ID_32" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -193,11 +193,11 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="JMDW" POSITION="right" ID="ID_33"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_33" POSITION="right" TEXT="JMDW"/>
|
||||
</node>
|
||||
</node>
|
||||
<node STYLE="bubble" POSITION="right" ID="ID_34" COLOR="#0000cc" BACKGROUND_COLOR="#99ffff">
|
||||
<node BACKGROUND_COLOR="#99ffff" COLOR="#0000cc" ID="ID_34" POSITION="right" STYLE="bubble">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -208,9 +208,9 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_35" COLOR="#006600" BACKGROUND_COLOR="#ffff00">
|
||||
<node BACKGROUND_COLOR="#ffff00" COLOR="#006600" ID="ID_35" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -220,11 +220,11 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node TEXT="Martine P" POSITION="right" ID="ID_36"/>
|
||||
<node ID="ID_36" POSITION="right" TEXT="Martine P"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_37" COLOR="#006600" BACKGROUND_COLOR="#ffcc00">
|
||||
<node BACKGROUND_COLOR="#ffcc00" COLOR="#006600" ID="ID_37" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -234,15 +234,15 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node TEXT="Pdt + Agnès" POSITION="right" ID="ID_38"/>
|
||||
<node ID="ID_38" POSITION="right" TEXT="Pdt + Agnès"/>
|
||||
</node>
|
||||
<node TEXT="3.3 développer la vie associative" STYLE="rectagle" POSITION="right" ID="ID_39" COLOR="#006600" BACKGROUND_COLOR="#ff6666">
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<node TEXT="Pdt + Agnès" POSITION="right" ID="ID_40"/>
|
||||
<node BACKGROUND_COLOR="#ff6666" COLOR="#006600" ID="ID_39" POSITION="right" STYLE="rectagle" TEXT="3.3 développer la vie associative">
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<node ID="ID_40" POSITION="right" TEXT="Pdt + Agnès"/>
|
||||
</node>
|
||||
<node STYLE="rectagle" POSITION="right" ID="ID_41" COLOR="#006600" BACKGROUND_COLOR="#ff6666">
|
||||
<node BACKGROUND_COLOR="#ff6666" COLOR="#006600" ID="ID_41" POSITION="right" STYLE="rectagle">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -252,9 +252,9 @@
|
||||
</body>
|
||||
</html>
|
||||
</richcontent>
|
||||
<font SIZE="8" NAME="Arial" BOLD="true"/>
|
||||
<font BOLD="true" NAME="Arial" SIZE="8"/>
|
||||
<edge COLOR="#808080"/>
|
||||
<node TEXT="Pdt + Agnès" POSITION="right" ID="ID_42"/>
|
||||
<node ID="ID_42" POSITION="right" TEXT="Pdt + Agnès"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,184 +1,196 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="basic">
|
||||
<topic id="0" central="true" position="0,0" bgColor="#99ffff"
|
||||
fontStyle="Arial;10;#ff3300;bold;;" shape="rounded rectagle">
|
||||
<map name="basic" version="tango">
|
||||
<topic bgColor="#99ffff" central="true"
|
||||
fontStyle="Arial;10;#ff3300;bold;;" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[120924 Programme]]></text>
|
||||
<note>
|
||||
<text><![CDATA[]]></text>
|
||||
</note>
|
||||
<topic id="1" position="200,0" order="0" brColor="#808080"
|
||||
bgColor="#ffff33" fontStyle="Arial;8;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<topic bgColor="#ffff33" brColor="#808080"
|
||||
fontStyle="Arial;8;#0000cc;bold;;" id="1" order="0"
|
||||
position="200,0" shape="rounded rectagle">
|
||||
<text><![CDATA[bilan mi-parcours
|
||||
du plan d'actions]]></text>
|
||||
<topic id="2" position="290,-75" order="0"
|
||||
fontStyle="Arial;8;#006600;bold;;" shape="line">
|
||||
<topic fontStyle="Arial;8;#006600;bold;;" id="2" order="0"
|
||||
position="290,-75" shape="line">
|
||||
<text><![CDATA[modalités]]></text>
|
||||
<topic id="3" position="380,-125" order="0" shape="line">
|
||||
<topic id="3" order="0" position="380,-125" shape="line">
|
||||
<text><![CDATA[cf. mi-parcours 201109]]></text>
|
||||
</topic>
|
||||
<topic id="4" position="380,-100" order="1"
|
||||
fontStyle="Arial;8;;;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;;" id="4" order="1"
|
||||
position="380,-100" shape="line">
|
||||
<text><![CDATA[à partir des plans d'actions]]></text>
|
||||
</topic>
|
||||
<topic id="5" position="380,-75" order="2"
|
||||
fontStyle="Arial;8;;;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;;" id="5" order="2"
|
||||
position="380,-75" shape="line">
|
||||
<text><![CDATA[donner la parole aux référents prévus, en demandant des exemples]]></text>
|
||||
</topic>
|
||||
<topic id="6" position="380,-50" order="3"
|
||||
fontStyle="Arial;8;;;;" shape="line">
|
||||
<topic fontStyle="Arial;8;;;;" id="6" order="3"
|
||||
position="380,-50" shape="line">
|
||||
<text><![CDATA[faire compléter par les autres participants]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="7" position="290,-50" order="1" brColor="#808080"
|
||||
bgColor="#99ffff" fontStyle="Arial;8;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<topic bgColor="#99ffff" brColor="#808080"
|
||||
fontStyle="Arial;8;#0000cc;bold;;" id="7" order="1"
|
||||
position="290,-50" shape="rounded rectagle">
|
||||
<text><![CDATA[1) Adapter et améliorer
|
||||
notre offre de services
|
||||
selon l'évolution des besoins]]></text>
|
||||
<topic id="8" position="380,-175" order="0"
|
||||
bgColor="#99ffff" shape="rectagle">
|
||||
<topic bgColor="#99ffff" id="8" order="0"
|
||||
position="380,-175" shape="rectagle">
|
||||
<text><![CDATA[couleurs = état d'avancement en septembre 2011,
|
||||
à mettre à jour selon avancement 2012]]></text>
|
||||
<topic id="9" position="470,-225" order="0"
|
||||
bgColor="#0099ff" shape="rectagle">
|
||||
<topic bgColor="#0099ff" id="9" order="0"
|
||||
position="470,-225" shape="rectagle">
|
||||
<text><![CDATA[Bleu 0%]]></text>
|
||||
</topic>
|
||||
<topic id="10" position="470,-200" order="1"
|
||||
bgColor="#ff9999" shape="rectagle">
|
||||
<topic bgColor="#ff9999" id="10" order="1"
|
||||
position="470,-200" shape="rectagle">
|
||||
<text><![CDATA[Rouge 25%]]></text>
|
||||
</topic>
|
||||
<topic id="11" position="470,-175" order="2"
|
||||
bgColor="#ffcc00" shape="rectagle">
|
||||
<topic bgColor="#ffcc00" id="11" order="2"
|
||||
position="470,-175" shape="rectagle">
|
||||
<text><![CDATA[Orange 50%]]></text>
|
||||
</topic>
|
||||
<topic id="12" position="470,-150" order="3"
|
||||
bgColor="#ffff00" shape="rectagle">
|
||||
<topic bgColor="#ffff00" id="12" order="3"
|
||||
position="470,-150" shape="rectagle">
|
||||
<text><![CDATA[Jaune 75%]]></text>
|
||||
</topic>
|
||||
<topic id="13" position="470,-125" order="4"
|
||||
bgColor="#66ff00" shape="rectagle">
|
||||
<topic bgColor="#66ff00" id="13" order="4"
|
||||
position="470,-125" shape="rectagle">
|
||||
<text><![CDATA[Vert]]></text>
|
||||
<topic id="14" position="560,-125" order="0" shape="line">
|
||||
<topic id="14" order="0" position="560,-125" shape="line">
|
||||
<text><![CDATA[100 %]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic shrink="true" id="15" position="380,-150"
|
||||
order="1" bgColor="#66ff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#66ff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="15" order="1"
|
||||
position="380,-150" shape="rectagle" shrink="true">
|
||||
<text><![CDATA[1.1. .Renforcer et structurer
|
||||
le service "accueil et orientation"]]></text>
|
||||
<topic id="16" position="470,-175" order="0" shape="line">
|
||||
<topic id="16" order="0" position="470,-175" shape="line">
|
||||
<text><![CDATA[Sophie]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="17" position="380,-125" order="2"
|
||||
bgColor="#ffff00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="17" order="2"
|
||||
position="380,-125" shape="rectagle">
|
||||
<text><![CDATA[1.2. Adapter l'offre Halte-Garderie
|
||||
aux besoins des familles]]></text>
|
||||
<topic id="18" position="470,-150" order="0" shape="line">
|
||||
<topic id="18" order="0" position="470,-150" shape="line">
|
||||
<text><![CDATA[Martine D et Christine]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="19" position="380,-100" order="3"
|
||||
bgColor="#66ff00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#66ff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="19" order="3"
|
||||
position="380,-100" shape="rectagle">
|
||||
<text><![CDATA[1.3. Renforcer et structurer les services
|
||||
de soutien à la parentalité]]></text>
|
||||
<topic id="20" position="470,-125" order="0" shape="line">
|
||||
<topic id="20" order="0" position="470,-125" shape="line">
|
||||
<text><![CDATA[Nathalie]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="21" position="380,-75" order="4"
|
||||
bgColor="#ffff00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="21" order="4"
|
||||
position="380,-75" shape="rectagle">
|
||||
<text><![CDATA[1.4 Améliorer la qualité des
|
||||
projets pédagogiques des ALSH]]></text>
|
||||
<topic id="22" position="470,-100" order="0" shape="line">
|
||||
<topic id="22" order="0" position="470,-100" shape="line">
|
||||
<text><![CDATA[Josiane]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="23" position="380,-50" order="5"
|
||||
bgColor="#ffcc00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffcc00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="23" order="5"
|
||||
position="380,-50" shape="rectagle">
|
||||
<text><![CDATA[1.5 Renforcer et améliorer les
|
||||
activités de loisirs existantes]]></text>
|
||||
<topic id="24" position="470,-75" order="0" shape="line">
|
||||
<topic id="24" order="0" position="470,-75" shape="line">
|
||||
<text><![CDATA[Agnès]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="25" position="380,-25" order="6"
|
||||
bgColor="#66ff00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#66ff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="25" order="6"
|
||||
position="380,-25" shape="rectagle">
|
||||
<text><![CDATA[1.6 Renforcer et améliorer les ateliers
|
||||
visant à rompre l'isolement lié à la langue,
|
||||
la pauvreté, la pression de la consommation]]></text>
|
||||
<topic id="26" position="470,-50" order="0" shape="line">
|
||||
<topic id="26" order="0" position="470,-50" shape="line">
|
||||
<text><![CDATA[Nathalie]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="27" position="290,-25" order="2"
|
||||
brColor="#808080" bgColor="#99ffff"
|
||||
fontStyle="Arial;8;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<topic bgColor="#99ffff" brColor="#808080"
|
||||
fontStyle="Arial;8;#0000cc;bold;;" id="27" order="2"
|
||||
position="290,-25" shape="rounded rectagle">
|
||||
<text><![CDATA[2) Consolider nos moyens d'action :
|
||||
locaux, organisation, communication interne]]></text>
|
||||
<topic id="28" position="380,-100" order="0"
|
||||
bgColor="#ffff00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="28" order="0"
|
||||
position="380,-100" shape="rectagle">
|
||||
<text><![CDATA[2.1 Formaliser notre offre de services
|
||||
et les modèles économiques correspondants]]></text>
|
||||
<topic id="29" position="470,-150" order="0" shape="line">
|
||||
<topic id="29" order="0" position="470,-150" shape="line">
|
||||
<text><![CDATA[Agnès]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="30" position="380,-75" order="1"
|
||||
bgColor="#ffcc00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffcc00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="30" order="1"
|
||||
position="380,-75" shape="rectagle">
|
||||
<text><![CDATA[2.2 Formaliser le "qui fait quoi"
|
||||
en lien avec notre offre de service]]></text>
|
||||
<topic id="31" position="470,-125" order="0" shape="line">
|
||||
<topic id="31" order="0" position="470,-125" shape="line">
|
||||
<text><![CDATA[Martine G]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="32" position="380,-50" order="2"
|
||||
bgColor="#66ff00" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#66ff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="32" order="2"
|
||||
position="380,-50" shape="rectagle">
|
||||
<text><![CDATA[2.3. Elaborer un projet immobilier de proximité
|
||||
réalisable au centre ville]]></text>
|
||||
<topic id="33" position="470,-100" order="0" shape="line">
|
||||
<topic id="33" order="0" position="470,-100" shape="line">
|
||||
<text><![CDATA[JMDW]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="34" position="290,0" order="3" brColor="#808080"
|
||||
bgColor="#99ffff" fontStyle="Arial;8;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<topic bgColor="#99ffff" brColor="#808080"
|
||||
fontStyle="Arial;8;#0000cc;bold;;" id="34" order="3"
|
||||
position="290,0" shape="rounded rectagle">
|
||||
<text><![CDATA[3) Renforcer nos
|
||||
partenariats et
|
||||
notre notoriété]]></text>
|
||||
<topic id="35" position="380,-75" order="0"
|
||||
brColor="#808080" bgColor="#ffff00"
|
||||
fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffff00" brColor="#808080"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="35" order="0"
|
||||
position="380,-75" shape="rectagle">
|
||||
<text><![CDATA[3.1 Organiser pour chaque segment de notre offre
|
||||
l'identification et la rencontre des partenaires concernés]]></text>
|
||||
<topic id="36" position="470,-125" order="0" shape="line">
|
||||
<topic id="36" order="0" position="470,-125" shape="line">
|
||||
<text><![CDATA[Martine P]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="37" position="380,-50" order="1"
|
||||
brColor="#808080" bgColor="#ffcc00"
|
||||
fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ffcc00" brColor="#808080"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="37" order="1"
|
||||
position="380,-50" shape="rectagle">
|
||||
<text><![CDATA[3.2 Formaliser et contractualiser les partenariats
|
||||
émergeants autour d'actions communes]]></text>
|
||||
<topic id="38" position="470,-100" order="0" shape="line">
|
||||
<topic id="38" order="0" position="470,-100" shape="line">
|
||||
<text><![CDATA[Pdt + Agnès]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="39" position="380,-25" order="2"
|
||||
bgColor="#ff6666" fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ff6666"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="39" order="2"
|
||||
position="380,-25" shape="rectagle">
|
||||
<text><![CDATA[3.3 développer la vie associative]]></text>
|
||||
<topic id="40" position="470,-50" order="0" shape="line">
|
||||
<topic id="40" order="0" position="470,-50" shape="line">
|
||||
<text><![CDATA[Pdt + Agnès]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="41" position="380,0" order="3"
|
||||
brColor="#808080" bgColor="#ff6666"
|
||||
fontStyle="Arial;8;#006600;bold;;" shape="rectagle">
|
||||
<topic bgColor="#ff6666" brColor="#808080"
|
||||
fontStyle="Arial;8;#006600;bold;;" id="41" order="3"
|
||||
position="380,0" shape="rectagle">
|
||||
<text><![CDATA[3.4 définir et faire vivre un plan de communication
|
||||
à partir de notre segmentation de l'offre]]></text>
|
||||
<topic id="42" position="470,-50" order="0" shape="line">
|
||||
<topic id="42" order="0" position="470,-50" shape="line">
|
||||
<text><![CDATA[Pdt + Agnès]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
|
@ -1,260 +1,260 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="corona" ID="ID_null">
|
||||
<node TEXT="Modelo in world" POSITION="left" ID="ID_null">
|
||||
<node TEXT="International market protected Modelo from unstable peso" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Fifth largest distributor in world" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Can they sustain that trend" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="in 12 years" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" TEXT="corona">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Modelo in world">
|
||||
<node ID="ID_null" POSITION="left" TEXT="International market protected Modelo from unstable peso"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Fifth largest distributor in world">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Can they sustain that trend"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="in 12 years"/>
|
||||
</node>
|
||||
<node TEXT="One of top 10 breweries in world" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="One of top 10 breweries in world"/>
|
||||
</node>
|
||||
<node TEXT="Carloz Fernandez CEO" POSITION="left" ID="ID_null">
|
||||
<node TEXT="CEO Since 1997" POSITION="left" ID="ID_null">
|
||||
<node TEXT="29 years old" POSITION="left" ID="ID_null">
|
||||
<node TEXT="working there since 13" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Carloz Fernandez CEO">
|
||||
<node ID="ID_null" POSITION="left" TEXT="CEO Since 1997">
|
||||
<node ID="ID_null" POSITION="left" TEXT="29 years old">
|
||||
<node ID="ID_null" POSITION="left" TEXT="working there since 13"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="vision: top five brewers" POSITION="left" ID="ID_null">
|
||||
<node TEXT="International Business model" POSITION="left" ID="ID_null">
|
||||
<node TEXT="experienced local distributors" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Growing international demand" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Capitalize on NAFTA" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="vision: top five brewers">
|
||||
<node ID="ID_null" POSITION="left" TEXT="International Business model">
|
||||
<node ID="ID_null" POSITION="left" TEXT="experienced local distributors"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Growing international demand"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Capitalize on NAFTA"/>
|
||||
</node>
|
||||
<node TEXT="top 10 beer producers in world" POSITION="left" ID="ID_null">
|
||||
<node TEXT="7.8 % sales growth compounded over ten years" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="2005" POSITION="left" ID="ID_null">
|
||||
<node TEXT="12.3 % exports" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="4% increase domestically" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="export sales 30%" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="top 10 beer producers in world">
|
||||
<node ID="ID_null" POSITION="left" TEXT="7.8 % sales growth compounded over ten years"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="2005">
|
||||
<node ID="ID_null" POSITION="left" TEXT="12.3 % exports"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="4% increase domestically"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="export sales 30%"/>
|
||||
</node>
|
||||
<node TEXT="Corona Extra" POSITION="left" ID="ID_null">
|
||||
<node TEXT="worlds fourth best selling beer" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="56% shar of domestic market" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Since 1997 #1 import in US" POSITION="left" ID="ID_null">
|
||||
<node TEXT="outsold competitor by 50%" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Corona Extra">
|
||||
<node ID="ID_null" POSITION="left" TEXT="worlds fourth best selling beer"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="56% shar of domestic market"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Since 1997 #1 import in US">
|
||||
<node ID="ID_null" POSITION="left" TEXT="outsold competitor by 50%"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Expanding production " POSITION="left" ID="ID_null">
|
||||
<node TEXT="renovate facility in Zacatecas" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="300 million investment" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Expanding production ">
|
||||
<node ID="ID_null" POSITION="left" TEXT="renovate facility in Zacatecas"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="300 million investment"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="US Beer Market" POSITION="left" ID="ID_null">
|
||||
<node TEXT="2nd largest nest to China" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Consumption six times higher per cap" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Groth expectations reduced" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="80% of market" POSITION="left" ID="ID_null">
|
||||
<node TEXT="AB" POSITION="left" ID="ID_null">
|
||||
<node TEXT="75% of industry profits" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="US Beer Market">
|
||||
<node ID="ID_null" POSITION="left" TEXT="2nd largest nest to China"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Consumption six times higher per cap"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Groth expectations reduced"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="80% of market">
|
||||
<node ID="ID_null" POSITION="left" TEXT="AB">
|
||||
<node ID="ID_null" POSITION="left" TEXT="75% of industry profits"/>
|
||||
</node>
|
||||
<node TEXT="adolf coors" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Miller" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="adolf coors"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Miller"/>
|
||||
</node>
|
||||
<node TEXT="dense network of regional craft brewing" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="volume main driver" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="dense network of regional craft brewing"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="volume main driver"/>
|
||||
</node>
|
||||
<node TEXT="Modelo in Mexico" POSITION="left" ID="ID_null">
|
||||
<node TEXT="History to 1970" POSITION="left" ID="ID_null">
|
||||
<node TEXT="formed in 1922" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Pablo Diez Fernandez, Braulio Irare, Marin Oyamburr" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Iriarte died in 1932" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Diez sole owner 1936" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Fernandez Family Sole owner since 1936" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Modelo in Mexico">
|
||||
<node ID="ID_null" POSITION="left" TEXT="History to 1970">
|
||||
<node ID="ID_null" POSITION="left" TEXT="formed in 1922">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Pablo Diez Fernandez, Braulio Irare, Marin Oyamburr"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Iriarte died in 1932"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Diez sole owner 1936"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Fernandez Family Sole owner since 1936"/>
|
||||
</node>
|
||||
<node TEXT="focus on Mexico City" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Modelo 1st Brand" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Corona 2nd Brand" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Clear Glass Customers preference" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="focus on Mexico City"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Modelo 1st Brand"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Corona 2nd Brand">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Clear Glass Customers preference"/>
|
||||
</node>
|
||||
<node TEXT="1940s period of strong growth " POSITION="left" ID="ID_null">
|
||||
<node TEXT="concentrate domesti¬cally " POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="improve distribution methods and produc¬tion facilities " POSITION="left" ID="ID_null">
|
||||
<node TEXT="distribution: direct with profit sharing" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="1940s period of strong growth ">
|
||||
<node ID="ID_null" POSITION="left" TEXT="concentrate domesti¬cally "/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="improve distribution methods and produc¬tion facilities ">
|
||||
<node ID="ID_null" POSITION="left" TEXT="distribution: direct with profit sharing"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="bought the brands and assets of the Toluca y Mexico Brewery" POSITION="left" ID="ID_null">
|
||||
<node TEXT="1935" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="country's oldest brand of beer" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="bought the brands and assets of the Toluca y Mexico Brewery">
|
||||
<node ID="ID_null" POSITION="left" TEXT="1935"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="country's oldest brand of beer"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="1971, Antonino Fernandez was appointed CEO" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Mexican Stock exchange in 1994" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Anheuser-Busch 17.7 % of the equity" POSITION="left" ID="ID_null">
|
||||
<node TEXT="The 50.2 % represented 43.9% voting" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="1971, Antonino Fernandez was appointed CEO">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Mexican Stock exchange in 1994"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Anheuser-Busch 17.7 % of the equity">
|
||||
<node ID="ID_null" POSITION="left" TEXT="The 50.2 % represented 43.9% voting"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Largest Beer producer and distrubutor in Mexico" POSITION="left" ID="ID_null">
|
||||
<node TEXT="corona 56% share" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Largest Beer producer and distrubutor in Mexico">
|
||||
<node ID="ID_null" POSITION="left" TEXT="corona 56% share"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Modelo in US" POSITION="right" ID="ID_null">
|
||||
<node TEXT="History" POSITION="left" ID="ID_null">
|
||||
<node TEXT="1979" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Amalgamated Distillery Products Inc. (" POSITION="left" ID="ID_null">
|
||||
<node TEXT="later renamed Barton Beers Ltd." POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="right" TEXT="Modelo in US">
|
||||
<node ID="ID_null" POSITION="left" TEXT="History">
|
||||
<node ID="ID_null" POSITION="left" TEXT="1979"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Amalgamated Distillery Products Inc. (">
|
||||
<node ID="ID_null" POSITION="left" TEXT="later renamed Barton Beers Ltd."/>
|
||||
</node>
|
||||
<node TEXT="gained popularity in southern states" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="rapid growth 1980s" POSITION="left" ID="ID_null">
|
||||
<node TEXT="second most popular imported beer" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="gained popularity in southern states"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="rapid growth 1980s">
|
||||
<node ID="ID_null" POSITION="left" TEXT="second most popular imported beer"/>
|
||||
</node>
|
||||
<node TEXT="1991" POSITION="left" ID="ID_null">
|
||||
<node TEXT="doubling of federal excise tax on beer" POSITION="left" ID="ID_null">
|
||||
<node TEXT="sales decrease of 15 percent" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="distributor absorb the tax 92" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="1991">
|
||||
<node ID="ID_null" POSITION="left" TEXT="doubling of federal excise tax on beer">
|
||||
<node ID="ID_null" POSITION="left" TEXT="sales decrease of 15 percent"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="distributor absorb the tax 92"/>
|
||||
</node>
|
||||
<node TEXT="distributors took the loss" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="distributors took the loss"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="2007 5 beers to us" POSITION="left" ID="ID_null">
|
||||
<node TEXT="3 of top 8 beers in US" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Heineken" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Main Import Comptitor" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="2007 5 beers to us">
|
||||
<node ID="ID_null" POSITION="left" TEXT="3 of top 8 beers in US"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Heineken">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Main Import Comptitor"/>
|
||||
</node>
|
||||
<node TEXT="131 million cases" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="131 million cases"/>
|
||||
</node>
|
||||
<node TEXT="Marketing" POSITION="left" ID="ID_null">
|
||||
<node TEXT="surfing mythology" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="not selling premium quality" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="not testosterone driven" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="found new following" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="beer for non beer drinkers" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="dependable second choise" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Fun in the sun" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Barton Beer's idea" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="escape" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="relaxation" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Marketing">
|
||||
<node ID="ID_null" POSITION="left" TEXT="surfing mythology"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="not selling premium quality"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="not testosterone driven"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="found new following"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="beer for non beer drinkers"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="dependable second choise"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Fun in the sun">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Barton Beer's idea"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="escape"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="relaxation"/>
|
||||
</node>
|
||||
<node TEXT="1996ad budget" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Corona 5.1 mil" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Heiniken 15 mil" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="an bsch 192 mil" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="1996ad budget">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Corona 5.1 mil"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Heiniken 15 mil"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="an bsch 192 mil"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Us dist contracts" POSITION="left" ID="ID_null">
|
||||
<node TEXT="importer/distributors" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Local Companies" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Autonomous" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="competitive relationship" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="transportation" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="insurance" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="pricing" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="customs" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="advertixing" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Us dist contracts">
|
||||
<node ID="ID_null" POSITION="left" TEXT="importer/distributors">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Local Companies"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Autonomous"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="competitive relationship"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="transportation"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="insurance"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="pricing"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="customs"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="advertixing"/>
|
||||
</node>
|
||||
<node TEXT="procermex inc" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Modelo us subsidiary" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Support" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Supervise" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Coordinate" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="procermex inc">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Modelo us subsidiary"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Support"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Supervise"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Coordinate"/>
|
||||
</node>
|
||||
<node TEXT="Modelo had final say on brand image" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="production in Mexico" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Chicago based Barton Beers 1st" POSITION="left" ID="ID_null">
|
||||
<node TEXT="largest importer in 25 western states" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Modelo had final say on brand image"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="production in Mexico"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Chicago based Barton Beers 1st">
|
||||
<node ID="ID_null" POSITION="left" TEXT="largest importer in 25 western states"/>
|
||||
</node>
|
||||
<node TEXT="Gambrinus" POSITION="left" ID="ID_null">
|
||||
<node TEXT="1986" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="eastern dist" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Gambrinus">
|
||||
<node ID="ID_null" POSITION="left" TEXT="1986"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="eastern dist"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="The Beer market" POSITION="right" ID="ID_null">
|
||||
<node TEXT="traditionally a clustered market" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="many local breweries" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="no means of transport" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="colsolition happened in 1800s" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="different countries had different tastes" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="90s national leaders expanded abroad" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="startup costs high" POSITION="left" ID="ID_null">
|
||||
<node TEXT="industry supported conectration" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="right" TEXT="The Beer market">
|
||||
<node ID="ID_null" POSITION="left" TEXT="traditionally a clustered market"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="many local breweries"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="no means of transport"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="colsolition happened in 1800s"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="different countries had different tastes"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="90s national leaders expanded abroad"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="startup costs high">
|
||||
<node ID="ID_null" POSITION="left" TEXT="industry supported conectration"/>
|
||||
</node>
|
||||
<node TEXT="Interbrew" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Belgian" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="aquired breweries in 20 countries" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="sales in 110 countries" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="local managers controlling brands" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="flagship brand: Stella Artois" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Interbrew">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Belgian"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="aquired breweries in 20 countries"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="sales in 110 countries"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="local managers controlling brands"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="flagship brand: Stella Artois"/>
|
||||
</node>
|
||||
<node TEXT="2004 merger" POSITION="left" ID="ID_null">
|
||||
<node TEXT="#1 Interbrew" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="#5 Am Bev - Brazil" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="largest merge" POSITION="left" ID="ID_null">
|
||||
<node TEXT="worth 12.8 billion" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="2004 merger">
|
||||
<node ID="ID_null" POSITION="left" TEXT="#1 Interbrew"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="#5 Am Bev - Brazil"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="largest merge">
|
||||
<node ID="ID_null" POSITION="left" TEXT="worth 12.8 billion"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="2007" POSITION="left" ID="ID_null">
|
||||
<node TEXT="inbev" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="SAP Miller" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Heineken" POSITION="left" ID="ID_null">
|
||||
<node TEXT="produces beer domestically" POSITION="left" ID="ID_null">
|
||||
<node TEXT="parent of local distributors" POSITION="left" ID="ID_null">
|
||||
<node TEXT="marketing" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="importing" POSITION="left" ID="ID_null">
|
||||
<node TEXT="import taxes passed on to consumer" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="2007">
|
||||
<node ID="ID_null" POSITION="left" TEXT="inbev"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="SAP Miller"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Heineken">
|
||||
<node ID="ID_null" POSITION="left" TEXT="produces beer domestically">
|
||||
<node ID="ID_null" POSITION="left" TEXT="parent of local distributors">
|
||||
<node ID="ID_null" POSITION="left" TEXT="marketing"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="importing">
|
||||
<node ID="ID_null" POSITION="left" TEXT="import taxes passed on to consumer"/>
|
||||
</node>
|
||||
<node TEXT="distribution" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="distribution"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="marketing" POSITION="left" ID="ID_null">
|
||||
<node TEXT="premium beer" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="premium brand" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="no mythology" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="superior taste" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="2006 aggressive marketing campaign" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Heineken Premium Light" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="marketing">
|
||||
<node ID="ID_null" POSITION="left" TEXT="premium beer"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="premium brand"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="no mythology"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="superior taste"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="2006 aggressive marketing campaign">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Heineken Premium Light"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="reputation of top selling beer in world" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Dutch" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="reputation of top selling beer in world"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Dutch"/>
|
||||
</node>
|
||||
<node TEXT="Anh Bush" POSITION="left" ID="ID_null">
|
||||
<node TEXT="produces in foreign markets" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Anh Bush">
|
||||
<node ID="ID_null" POSITION="left" TEXT="produces in foreign markets"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Beer Marketing" POSITION="left" ID="ID_null">
|
||||
<node TEXT="People drink marketing" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Beer Marketing">
|
||||
<node ID="ID_null" POSITION="left" TEXT="People drink marketing"/>
|
||||
</node>
|
||||
<node TEXT="Future" POSITION="left" ID="ID_null">
|
||||
<node TEXT="domestic and foreign threats" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="other merger talks" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Inbev in talks with Anh Bush" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Two biggest companies will create huge company" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Future">
|
||||
<node ID="ID_null" POSITION="left" TEXT="domestic and foreign threats"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="other merger talks"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Inbev in talks with Anh Bush">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Two biggest companies will create huge company"/>
|
||||
</node>
|
||||
<node TEXT="Sales were decreasing due to competitive media budgets" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Sales were decreasing due to competitive media budgets"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Mexico Industry" POSITION="right" ID="ID_null">
|
||||
<node TEXT="has most trade agreements in world" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="one of the largest domestic beer markets" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="imported beer only 1% sales" POSITION="left" ID="ID_null">
|
||||
<node TEXT="half were anh bcsh dist by modelo" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="right" TEXT="Mexico Industry">
|
||||
<node ID="ID_null" POSITION="left" TEXT="has most trade agreements in world"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="one of the largest domestic beer markets"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="imported beer only 1% sales">
|
||||
<node ID="ID_null" POSITION="left" TEXT="half were anh bcsh dist by modelo"/>
|
||||
</node>
|
||||
<node TEXT="modelo" POSITION="left" ID="ID_null">
|
||||
<node TEXT="NAFTA S.A. An Bucsh" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="62.8% of market" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="modelo">
|
||||
<node ID="ID_null" POSITION="left" TEXT="NAFTA S.A. An Bucsh"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="62.8% of market"/>
|
||||
</node>
|
||||
<node TEXT="FEMSA" POSITION="left" ID="ID_null">
|
||||
<node TEXT="domestic market" POSITION="left" ID="ID_null">
|
||||
<node TEXT="37% of domestic market" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="production and distribution in Mexico: peso not a threat" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Owns Oxxo C" POSITION="left" ID="ID_null">
|
||||
<node TEXT="CA largest chain of conv stores" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="FEMSA">
|
||||
<node ID="ID_null" POSITION="left" TEXT="domestic market">
|
||||
<node ID="ID_null" POSITION="left" TEXT="37% of domestic market"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="production and distribution in Mexico: peso not a threat"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Owns Oxxo C">
|
||||
<node ID="ID_null" POSITION="left" TEXT="CA largest chain of conv stores"/>
|
||||
</node>
|
||||
<node TEXT="leads domestic premium beer market" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="997 to 2004 taking domestic market share" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="NAFTA SACoca cola" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Exclusive distributor" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="leads domestic premium beer market"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="997 to 2004 taking domestic market share"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="NAFTA SACoca cola">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Exclusive distributor"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="foriegn market" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Partnership Heiniken" POSITION="left" ID="ID_null">
|
||||
<node TEXT="Distribution in US" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="foriegn market">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Partnership Heiniken">
|
||||
<node ID="ID_null" POSITION="left" TEXT="Distribution in US"/>
|
||||
</node>
|
||||
<node TEXT="90s entry to us market failed" POSITION="left" ID="ID_null"/>
|
||||
<node TEXT="Recently partnered with Heiniken for US market" POSITION="left" ID="ID_null">
|
||||
<node TEXT="2005 18.7% growth" POSITION="left" ID="ID_null"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="90s entry to us market failed"/>
|
||||
<node ID="ID_null" POSITION="left" TEXT="Recently partnered with Heiniken for US market">
|
||||
<node ID="ID_null" POSITION="left" TEXT="2005 18.7% growth"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,38 +1,38 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="SaberMás" ID="ID_1">
|
||||
<node TEXT="Utilización de medios de expresión artística, digitales y analógicos" POSITION="right" ID="ID_5"/>
|
||||
<node TEXT="Precio también limitado: 100-120?" POSITION="left" ID="ID_9"/>
|
||||
<node TEXT="Talleres temáticos" POSITION="right" ID="ID_2">
|
||||
<node TEXT="Naturaleza" POSITION="right" ID="ID_13">
|
||||
<node TEXT="Animales, Plantas, Piedras" POSITION="right" ID="ID_17"/>
|
||||
<node ID="ID_1" TEXT="SaberMás">
|
||||
<node ID="ID_5" POSITION="right" TEXT="Utilización de medios de expresión artística, digitales y analógicos"/>
|
||||
<node ID="ID_9" POSITION="left" TEXT="Precio también limitado: 100-120?"/>
|
||||
<node ID="ID_2" POSITION="right" TEXT="Talleres temáticos">
|
||||
<node ID="ID_13" POSITION="right" TEXT="Naturaleza">
|
||||
<node ID="ID_17" POSITION="right" TEXT="Animales, Plantas, Piedras"/>
|
||||
</node>
|
||||
<node TEXT="Arqueología" POSITION="right" ID="ID_21"/>
|
||||
<node TEXT="Energía" POSITION="right" ID="ID_18"/>
|
||||
<node TEXT="Astronomía" POSITION="right" ID="ID_16"/>
|
||||
<node TEXT="Arquitectura" POSITION="right" ID="ID_20"/>
|
||||
<node TEXT="Cocina" POSITION="right" ID="ID_11"/>
|
||||
<node TEXT="Poesía" POSITION="right" ID="ID_24"/>
|
||||
<node TEXT="Culturas Antiguas" POSITION="right" ID="ID_25">
|
||||
<node TEXT="Egipto, Grecia, China..." POSITION="right" ID="ID_26"/>
|
||||
<node ID="ID_21" POSITION="right" TEXT="Arqueología"/>
|
||||
<node ID="ID_18" POSITION="right" TEXT="Energía"/>
|
||||
<node ID="ID_16" POSITION="right" TEXT="Astronomía"/>
|
||||
<node ID="ID_20" POSITION="right" TEXT="Arquitectura"/>
|
||||
<node ID="ID_11" POSITION="right" TEXT="Cocina"/>
|
||||
<node ID="ID_24" POSITION="right" TEXT="Poesía"/>
|
||||
<node ID="ID_25" POSITION="right" TEXT="Culturas Antiguas">
|
||||
<node ID="ID_26" POSITION="right" TEXT="Egipto, Grecia, China..."/>
|
||||
</node>
|
||||
<node TEXT="Paleontología" POSITION="right" ID="ID_38"/>
|
||||
<node ID="ID_38" POSITION="right" TEXT="Paleontología"/>
|
||||
</node>
|
||||
<node TEXT="Duración limitada: 5-6 semanas" POSITION="left" ID="ID_6"/>
|
||||
<node TEXT="Niños y niñas que quieren saber más" POSITION="left" ID="ID_7"/>
|
||||
<node TEXT="Alternativa a otras actividades de ocio" POSITION="left" ID="ID_8"/>
|
||||
<node TEXT="Uso de la tecnología durante todo el proceso de aprendizaje" POSITION="right" ID="ID_23"/>
|
||||
<node TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas " POSITION="right" ID="ID_3"/>
|
||||
<node TEXT="Trabajo basado en la experimentación y en la investigación" POSITION="right" ID="ID_4"/>
|
||||
<node TEXT="De 8 a 12 años, sin separación por edades" POSITION="left" ID="ID_10"/>
|
||||
<node TEXT="Máximo 10/1 por taller" POSITION="left" ID="ID_19"/>
|
||||
<node TEXT="Actividades centradas en el contexto cercano" POSITION="right" ID="ID_37"/>
|
||||
<node TEXT="Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)" POSITION="right" ID="ID_22"/>
|
||||
<node TEXT="Complementamos el trabajo de la escuela" STYLE="bubble" POSITION="right" ID="ID_27">
|
||||
<node TEXT="Cada uno va a su ritmo, y cada cual pone sus límites" POSITION="right" ID="ID_30"/>
|
||||
<node TEXT="Aprendemos todos de todos" POSITION="right" ID="ID_31"/>
|
||||
<node TEXT="Valoramos lo que hemos aprendido" POSITION="right" ID="ID_33"/>
|
||||
<node TEXT="SaberMás trabaja con, desde y para la motivación" POSITION="right" ID="ID_28"/>
|
||||
<node TEXT="Trabajamos en equipo en nuestros proyectos " POSITION="right" ID="ID_32"/>
|
||||
<node ID="ID_6" POSITION="left" TEXT="Duración limitada: 5-6 semanas"/>
|
||||
<node ID="ID_7" POSITION="left" TEXT="Niños y niñas que quieren saber más"/>
|
||||
<node ID="ID_8" POSITION="left" TEXT="Alternativa a otras actividades de ocio"/>
|
||||
<node ID="ID_23" POSITION="right" TEXT="Uso de la tecnología durante todo el proceso de aprendizaje"/>
|
||||
<node ID="ID_3" POSITION="right" TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas "/>
|
||||
<node ID="ID_4" POSITION="right" TEXT="Trabajo basado en la experimentación y en la investigación"/>
|
||||
<node ID="ID_10" POSITION="left" TEXT="De 8 a 12 años, sin separación por edades"/>
|
||||
<node ID="ID_19" POSITION="left" TEXT="Máximo 10/1 por taller"/>
|
||||
<node ID="ID_37" POSITION="right" TEXT="Actividades centradas en el contexto cercano"/>
|
||||
<node ID="ID_22" POSITION="right" TEXT="Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)"/>
|
||||
<node ID="ID_27" POSITION="right" STYLE="bubble" TEXT="Complementamos el trabajo de la escuela">
|
||||
<node ID="ID_30" POSITION="right" TEXT="Cada uno va a su ritmo, y cada cual pone sus límites"/>
|
||||
<node ID="ID_31" POSITION="right" TEXT="Aprendemos todos de todos"/>
|
||||
<node ID="ID_33" POSITION="right" TEXT="Valoramos lo que hemos aprendido"/>
|
||||
<node ID="ID_28" POSITION="right" TEXT="SaberMás trabaja con, desde y para la motivación"/>
|
||||
<node ID="ID_32" POSITION="right" TEXT="Trabajamos en equipo en nuestros proyectos "/>
|
||||
</node>
|
||||
</node>
|
||||
</map>
|
@ -1,25 +1,25 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Indicator needs" ID="ID_1">
|
||||
<node ID="ID_1" TEXT="Indicator needs">
|
||||
<font SIZE="15"/>
|
||||
<node TEXT="Which new measures" STYLE="bubble" POSITION="right" ID="ID_5">
|
||||
<node ID="ID_5" POSITION="right" STYLE="bubble" TEXT="Which new measures">
|
||||
<font SIZE="10"/>
|
||||
<node TEXT="Landscape of measures" STYLE="bubble" POSITION="right" ID="ID_56" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Diversity index of innovation support instruments in the region" POSITION="right" ID="ID_45"/>
|
||||
<node TEXT="Existing investments in measures" POSITION="right" ID="ID_57"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_56" POSITION="right" STYLE="bubble" TEXT="Landscape of measures">
|
||||
<node ID="ID_45" POSITION="right" TEXT="Diversity index of innovation support instruments in the region"/>
|
||||
<node ID="ID_57" POSITION="right" TEXT="Existing investments in measures"/>
|
||||
</node>
|
||||
<node TEXT="What other regions do differently" STYLE="bubble" POSITION="right" ID="ID_38" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Balance of measure index" POSITION="right" ID="ID_46"/>
|
||||
<node TEXT="Profile comparison with other regions" POSITION="right" ID="ID_77"/>
|
||||
<node TEXT="Number of specific types of measures per capita" POSITION="right" ID="ID_112"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_38" POSITION="right" STYLE="bubble" TEXT="What other regions do differently">
|
||||
<node ID="ID_46" POSITION="right" TEXT="Balance of measure index"/>
|
||||
<node ID="ID_77" POSITION="right" TEXT="Profile comparison with other regions"/>
|
||||
<node ID="ID_112" POSITION="right" TEXT="Number of specific types of measures per capita"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="How to design & implement measures" STYLE="bubble" POSITION="left" ID="ID_6">
|
||||
<node ID="ID_6" POSITION="left" STYLE="bubble" TEXT="How to design & implement measures">
|
||||
<font SIZE="10"/>
|
||||
<node TEXT="Good practices" STYLE="bubble" POSITION="left" ID="ID_41" BACKGROUND_COLOR="#feffff"/>
|
||||
<node TEXT="Diagnostics" STYLE="bubble" POSITION="left" ID="ID_80" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Internal business innovation factors" POSITION="left" ID="ID_81"/>
|
||||
<node TEXT="Return on investment to innovation" POSITION="left" ID="ID_359">
|
||||
<node POSITION="left" ID="ID_360">
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_41" POSITION="left" STYLE="bubble" TEXT="Good practices"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_80" POSITION="left" STYLE="bubble" TEXT="Diagnostics">
|
||||
<node ID="ID_81" POSITION="left" TEXT="Internal business innovation factors"/>
|
||||
<node ID="ID_359" POSITION="left" TEXT="Return on investment to innovation">
|
||||
<node ID="ID_360" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -31,7 +31,7 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_361">
|
||||
<node ID="ID_361" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -42,7 +42,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_362">
|
||||
<node ID="ID_362" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -54,7 +54,7 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_363">
|
||||
<node ID="ID_363" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -66,13 +66,13 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Increase in the number of innovative companies with in-house R&D" POSITION="left" ID="ID_364">
|
||||
<node ID="ID_364" POSITION="left" TEXT="Increase in the number of innovative companies with in-house R&D">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Increase in th number of innovative companies without in-house R&D" POSITION="left" ID="ID_365">
|
||||
<node ID="ID_365" POSITION="left" TEXT="Increase in th number of innovative companies without in-house R&D">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_366">
|
||||
<node ID="ID_366" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -84,7 +84,7 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_367">
|
||||
<node ID="ID_367" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -96,7 +96,7 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_368">
|
||||
<node ID="ID_368" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -108,75 +108,75 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Number of international patents" POSITION="left" ID="ID_369">
|
||||
<node ID="ID_369" POSITION="left" TEXT="Number of international patents">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Start-up activity (as a percentage of start-up activity in the whole Federation)" POSITION="left" ID="ID_370"/>
|
||||
<node TEXT="Number of innovative companies to the number of students " POSITION="left" ID="ID_393">
|
||||
<node ID="ID_370" POSITION="left" TEXT="Start-up activity (as a percentage of start-up activity in the whole Federation)"/>
|
||||
<node ID="ID_393" POSITION="left" TEXT="Number of innovative companies to the number of students ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Number of innovative companies to the number of researchers " POSITION="left" ID="ID_394">
|
||||
<node ID="ID_394" POSITION="left" TEXT="Number of innovative companies to the number of researchers ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Volume of license agreements to the volume of R&D support from the regional budget " POSITION="left" ID="ID_400">
|
||||
<node ID="ID_400" POSITION="left" TEXT="Volume of license agreements to the volume of R&D support from the regional budget ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="How much effort: where & how" STYLE="bubble" POSITION="right" ID="ID_2">
|
||||
<node ID="ID_2" POSITION="right" STYLE="bubble" TEXT="How much effort: where & how">
|
||||
<font SIZE="10"/>
|
||||
<node TEXT="The bottom-line" STYLE="bubble" POSITION="right" ID="ID_3" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Wages" POSITION="right" ID="ID_15">
|
||||
<node TEXT="Dynamics of real wages" POSITION="right" ID="ID_12"/>
|
||||
<node TEXT="Average wage (compare to the Fed)" POSITION="right" ID="ID_14"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_3" POSITION="right" STYLE="bubble" TEXT="The bottom-line">
|
||||
<node ID="ID_15" POSITION="right" TEXT="Wages">
|
||||
<node ID="ID_12" POSITION="right" TEXT="Dynamics of real wages"/>
|
||||
<node ID="ID_14" POSITION="right" TEXT="Average wage (compare to the Fed)"/>
|
||||
</node>
|
||||
<node TEXT="Productivity" POSITION="right" ID="ID_86">
|
||||
<node TEXT="Labor productivity" POSITION="right" ID="ID_190">
|
||||
<node ID="ID_86" POSITION="right" TEXT="Productivity">
|
||||
<node ID="ID_190" POSITION="right" TEXT="Labor productivity">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Labor productivity growth rate" POSITION="right" ID="ID_191"/>
|
||||
<node ID="ID_191" POSITION="right" TEXT="Labor productivity growth rate"/>
|
||||
</node>
|
||||
<node TEXT="Jobs" POSITION="right" ID="ID_87">
|
||||
<node TEXT="Share of high-productive jobs" POSITION="right" ID="ID_13">
|
||||
<node ID="ID_87" POSITION="right" TEXT="Jobs">
|
||||
<node ID="ID_13" POSITION="right" TEXT="Share of high-productive jobs">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Share of creative industries jobs" POSITION="right" ID="ID_88"/>
|
||||
<node TEXT="Uneployment rate of university graduates" POSITION="right" ID="ID_336">
|
||||
<node ID="ID_88" POSITION="right" TEXT="Share of creative industries jobs"/>
|
||||
<node ID="ID_336" POSITION="right" TEXT="Uneployment rate of university graduates">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Income" POSITION="right" ID="ID_89">
|
||||
<node TEXT="GRP per capita and its growth rate" POSITION="right" ID="ID_11"/>
|
||||
<node ID="ID_89" POSITION="right" TEXT="Income">
|
||||
<node ID="ID_11" POSITION="right" TEXT="GRP per capita and its growth rate"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Influencing factors" STYLE="bubble" POSITION="right" ID="ID_8" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Economy" POSITION="right" ID="ID_55">
|
||||
<node TEXT="Economic structure" POSITION="right" ID="ID_166"/>
|
||||
<node TEXT="Volume of manufacturing production per capita " POSITION="right" ID="ID_395"/>
|
||||
<node TEXT="Manufacturing value added per capita (non-natural resource-based)" POSITION="right" ID="ID_396"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_8" POSITION="right" STYLE="bubble" TEXT="Influencing factors">
|
||||
<node ID="ID_55" POSITION="right" TEXT="Economy">
|
||||
<node ID="ID_166" POSITION="right" TEXT="Economic structure"/>
|
||||
<node ID="ID_395" POSITION="right" TEXT="Volume of manufacturing production per capita "/>
|
||||
<node ID="ID_396" POSITION="right" TEXT="Manufacturing value added per capita (non-natural resource-based)"/>
|
||||
</node>
|
||||
<node TEXT="The enabling environment" POSITION="right" ID="ID_9">
|
||||
<node TEXT="Ease of doing business" POSITION="right" ID="ID_16">
|
||||
<node TEXT="Level of administrative barriers (number and cost of administrative procedures) " POSITION="right" ID="ID_412">
|
||||
<node ID="ID_9" POSITION="right" TEXT="The enabling environment">
|
||||
<node ID="ID_16" POSITION="right" TEXT="Ease of doing business">
|
||||
<node ID="ID_412" POSITION="right" TEXT="Level of administrative barriers (number and cost of administrative procedures) ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Competition index" POSITION="right" ID="ID_18"/>
|
||||
<node TEXT="Workforce" POSITION="right" ID="ID_120">
|
||||
<node TEXT="Quality of education" POSITION="right" ID="ID_19">
|
||||
<node TEXT="Inrease in the number of International students" POSITION="right" ID="ID_337">
|
||||
<node ID="ID_18" POSITION="right" TEXT="Competition index"/>
|
||||
<node ID="ID_120" POSITION="right" TEXT="Workforce">
|
||||
<node ID="ID_19" POSITION="right" TEXT="Quality of education">
|
||||
<node ID="ID_337" POSITION="right" TEXT="Inrease in the number of International students">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Quantity of education" POSITION="right" ID="ID_121">
|
||||
<node TEXT="Participation in life-long learning" POSITION="right" ID="ID_122">
|
||||
<node ID="ID_121" POSITION="right" TEXT="Quantity of education">
|
||||
<node ID="ID_122" POSITION="right" TEXT="Participation in life-long learning">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Increase in literarecy " POSITION="right" ID="ID_333">
|
||||
<node ID="ID_333" POSITION="right" TEXT="Increase in literarecy ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_188">
|
||||
<node ID="ID_188" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -187,7 +187,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_276">
|
||||
<node ID="ID_276" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -198,65 +198,65 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Increase in University students" POSITION="right" ID="ID_332">
|
||||
<node ID="ID_332" POSITION="right" TEXT="Increase in University students">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Government expenditure on General University Funding" POSITION="right" ID="ID_351"/>
|
||||
<node TEXT="Access to training, information, and consulting support " POSITION="right" ID="ID_409">
|
||||
<node ID="ID_351" POSITION="right" TEXT="Government expenditure on General University Funding"/>
|
||||
<node ID="ID_409" POSITION="right" TEXT="Access to training, information, and consulting support ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Science & engineering workforce" POSITION="right" ID="ID_285">
|
||||
<node TEXT="Availability of scientists and engineers" POSITION="right" ID="ID_147"/>
|
||||
<node TEXT="Amount of researches per 10 thousands population" POSITION="right" ID="ID_189">
|
||||
<node ID="ID_285" POSITION="right" TEXT="Science & engineering workforce">
|
||||
<node ID="ID_147" POSITION="right" TEXT="Availability of scientists and engineers"/>
|
||||
<node ID="ID_189" POSITION="right" TEXT="Amount of researches per 10 thousands population">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Average wage of researches per average wage in the region" POSITION="right" ID="ID_284"/>
|
||||
<node TEXT="Share of researchers in the total number of employees in the region" POSITION="right" ID="ID_286"/>
|
||||
<node ID="ID_284" POSITION="right" TEXT="Average wage of researches per average wage in the region"/>
|
||||
<node ID="ID_286" POSITION="right" TEXT="Share of researchers in the total number of employees in the region"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Government" POSITION="right" ID="ID_132">
|
||||
<node TEXT="Total expenditure of general government as a percentage of GDP" POSITION="right" ID="ID_134"/>
|
||||
<node TEXT="Government expenditure on Economic Development" POSITION="right" ID="ID_352"/>
|
||||
<node ID="ID_132" POSITION="right" TEXT="Government">
|
||||
<node ID="ID_134" POSITION="right" TEXT="Total expenditure of general government as a percentage of GDP"/>
|
||||
<node ID="ID_352" POSITION="right" TEXT="Government expenditure on Economic Development"/>
|
||||
</node>
|
||||
<node TEXT="Access to finance" POSITION="right" ID="ID_342">
|
||||
<node TEXT="Deals" POSITION="right" ID="ID_387">
|
||||
<node TEXT="Venture capital investments for start-ups as a percentage of GDP" POSITION="right" ID="ID_345"/>
|
||||
<node TEXT="Amounts of business angel, pre-seed, seed and venture financing" POSITION="right" ID="ID_344"/>
|
||||
<node TEXT="Amount of public co-funding of business R&D" POSITION="right" ID="ID_348"/>
|
||||
<node TEXT="Number of startups received venture financing " POSITION="right" ID="ID_385"/>
|
||||
<node TEXT="Number of companies received equity investments " POSITION="right" ID="ID_386">
|
||||
<node ID="ID_342" POSITION="right" TEXT="Access to finance">
|
||||
<node ID="ID_387" POSITION="right" TEXT="Deals">
|
||||
<node ID="ID_345" POSITION="right" TEXT="Venture capital investments for start-ups as a percentage of GDP"/>
|
||||
<node ID="ID_344" POSITION="right" TEXT="Amounts of business angel, pre-seed, seed and venture financing"/>
|
||||
<node ID="ID_348" POSITION="right" TEXT="Amount of public co-funding of business R&D"/>
|
||||
<node ID="ID_385" POSITION="right" TEXT="Number of startups received venture financing "/>
|
||||
<node ID="ID_386" POSITION="right" TEXT="Number of companies received equity investments ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Available" POSITION="right" ID="ID_388">
|
||||
<node TEXT="Amount of matching grants available in the region for business R&D" POSITION="right" ID="ID_347"/>
|
||||
<node TEXT="Number of Business Angels" POSITION="right" ID="ID_346"/>
|
||||
<node ID="ID_388" POSITION="right" TEXT="Available">
|
||||
<node ID="ID_347" POSITION="right" TEXT="Amount of matching grants available in the region for business R&D"/>
|
||||
<node ID="ID_346" POSITION="right" TEXT="Number of Business Angels"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="ICT" POSITION="right" ID="ID_135">
|
||||
<node TEXT="ICT use" POSITION="right" ID="ID_17"/>
|
||||
<node TEXT="Broadband penetration " POSITION="right" ID="ID_136"/>
|
||||
<node TEXT="Internet penetration" POSITION="right" ID="ID_334"/>
|
||||
<node TEXT="Computer literacy " POSITION="right" ID="ID_335"/>
|
||||
<node ID="ID_135" POSITION="right" TEXT="ICT">
|
||||
<node ID="ID_17" POSITION="right" TEXT="ICT use"/>
|
||||
<node ID="ID_136" POSITION="right" TEXT="Broadband penetration "/>
|
||||
<node ID="ID_334" POSITION="right" TEXT="Internet penetration"/>
|
||||
<node ID="ID_335" POSITION="right" TEXT="Computer literacy "/>
|
||||
</node>
|
||||
<arrowlink STARTARROW="Default" DESTINATION="ID_76"/>
|
||||
<arrowlink DESTINATION="ID_76" STARTARROW="Default"/>
|
||||
</node>
|
||||
<node TEXT="Behavior of innovation actors" POSITION="right" ID="ID_10">
|
||||
<node TEXT="Access to markets" POSITION="right" ID="ID_167">
|
||||
<node TEXT="FDI" POSITION="right" ID="ID_97">
|
||||
<node TEXT="foreign JVs" POSITION="right" ID="ID_96"/>
|
||||
<node TEXT="Inflow of foreign direct investments in high-technology industries" POSITION="right" ID="ID_157"/>
|
||||
<node TEXT="Foreign direct investment jobs" POSITION="right" ID="ID_158"/>
|
||||
<node TEXT="FDI as a share of regional non natural resource-based GRP " POSITION="right" ID="ID_159"/>
|
||||
<node TEXT="Number of foreign subsidiaries operating in the region" POSITION="right" ID="ID_160"/>
|
||||
<node TEXT="Share of foreign controlled enterprises" POSITION="right" ID="ID_161"/>
|
||||
<node ID="ID_10" POSITION="right" TEXT="Behavior of innovation actors">
|
||||
<node ID="ID_167" POSITION="right" TEXT="Access to markets">
|
||||
<node ID="ID_97" POSITION="right" TEXT="FDI">
|
||||
<node ID="ID_96" POSITION="right" TEXT="foreign JVs"/>
|
||||
<node ID="ID_157" POSITION="right" TEXT="Inflow of foreign direct investments in high-technology industries"/>
|
||||
<node ID="ID_158" POSITION="right" TEXT="Foreign direct investment jobs"/>
|
||||
<node ID="ID_159" POSITION="right" TEXT="FDI as a share of regional non natural resource-based GRP "/>
|
||||
<node ID="ID_160" POSITION="right" TEXT="Number of foreign subsidiaries operating in the region"/>
|
||||
<node ID="ID_161" POSITION="right" TEXT="Share of foreign controlled enterprises"/>
|
||||
</node>
|
||||
<node TEXT="Exports" POSITION="right" ID="ID_168">
|
||||
<node TEXT="Export intensity in manufacturing and services" POSITION="right" ID="ID_169">
|
||||
<node ID="ID_168" POSITION="right" TEXT="Exports">
|
||||
<node ID="ID_169" POSITION="right" TEXT="Export intensity in manufacturing and services">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_375">
|
||||
<node ID="ID_375" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -268,7 +268,7 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_377">
|
||||
<node ID="ID_377" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -281,18 +281,18 @@
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Share of high-technology products in government procurements" POSITION="right" ID="ID_338"/>
|
||||
<node ID="ID_338" POSITION="right" TEXT="Share of high-technology products in government procurements"/>
|
||||
</node>
|
||||
<node TEXT="Entrepreneurship culture" POSITION="right" ID="ID_34">
|
||||
<node TEXT="Fear of failure rate" POSITION="right" ID="ID_150"/>
|
||||
<node TEXT="Entrepreneurship as desirable career choice" POSITION="right" ID="ID_151"/>
|
||||
<node TEXT="High Status Successful Entrepreneurship" POSITION="right" ID="ID_152"/>
|
||||
<node ID="ID_34" POSITION="right" TEXT="Entrepreneurship culture">
|
||||
<node ID="ID_150" POSITION="right" TEXT="Fear of failure rate"/>
|
||||
<node ID="ID_151" POSITION="right" TEXT="Entrepreneurship as desirable career choice"/>
|
||||
<node ID="ID_152" POSITION="right" TEXT="High Status Successful Entrepreneurship"/>
|
||||
</node>
|
||||
<node TEXT="Collaboration & partnerships" POSITION="right" ID="ID_54">
|
||||
<node TEXT="Number of business contracts with foreign partners for R&D collaboration" POSITION="right" ID="ID_163"/>
|
||||
<node TEXT="Share of R&D financed from foreign sources" POSITION="right" ID="ID_164"/>
|
||||
<node TEXT="Firms collaborating on innovation with organizations in other countries" POSITION="right" ID="ID_165"/>
|
||||
<node POSITION="right" ID="ID_173">
|
||||
<node ID="ID_54" POSITION="right" TEXT="Collaboration & partnerships">
|
||||
<node ID="ID_163" POSITION="right" TEXT="Number of business contracts with foreign partners for R&D collaboration"/>
|
||||
<node ID="ID_164" POSITION="right" TEXT="Share of R&D financed from foreign sources"/>
|
||||
<node ID="ID_165" POSITION="right" TEXT="Firms collaborating on innovation with organizations in other countries"/>
|
||||
<node ID="ID_173" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -303,7 +303,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_174">
|
||||
<node ID="ID_174" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -314,11 +314,11 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="science and industry links" POSITION="right" ID="ID_358"/>
|
||||
<node ID="ID_358" POSITION="right" TEXT="science and industry links"/>
|
||||
</node>
|
||||
<node TEXT="Technology absorption" POSITION="right" ID="ID_115">
|
||||
<node TEXT="Local supplier quality" POSITION="right" ID="ID_116"/>
|
||||
<node POSITION="right" ID="ID_127">
|
||||
<node ID="ID_115" POSITION="right" TEXT="Technology absorption">
|
||||
<node ID="ID_116" POSITION="right" TEXT="Local supplier quality"/>
|
||||
<node ID="ID_127" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -329,10 +329,10 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Number of purchased new technologies" POSITION="right" ID="ID_129">
|
||||
<node ID="ID_129" POSITION="right" TEXT="Number of purchased new technologies">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_354">
|
||||
<node ID="ID_354" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -343,9 +343,9 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Machinery and equipment" POSITION="right" ID="ID_355"/>
|
||||
<node TEXT="Software and databases" POSITION="right" ID="ID_356"/>
|
||||
<node POSITION="right" ID="ID_373">
|
||||
<node ID="ID_355" POSITION="right" TEXT="Machinery and equipment"/>
|
||||
<node ID="ID_356" POSITION="right" TEXT="Software and databases"/>
|
||||
<node ID="ID_373" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -357,36 +357,36 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Share of wastes in the total volume of production (by sector)" POSITION="right" ID="ID_374">
|
||||
<node ID="ID_374" POSITION="right" TEXT="Share of wastes in the total volume of production (by sector)">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Innovation activities in firms" POSITION="right" ID="ID_123">
|
||||
<node TEXT="Share of innovative companies" POSITION="right" ID="ID_35"/>
|
||||
<node TEXT="Business R&D expenditures per GRP" POSITION="right" ID="ID_128"/>
|
||||
<node TEXT="Factors hampering innovation" POSITION="right" ID="ID_145"/>
|
||||
<node TEXT="Expenditure on innovation by firm size" POSITION="right" ID="ID_350"/>
|
||||
<node TEXT="R&D and other intellectl property products" POSITION="right" ID="ID_357"/>
|
||||
<node TEXT="Growth of the number of innovative companies " POSITION="right" ID="ID_390"/>
|
||||
<node TEXT="Outpus" POSITION="right" ID="ID_398">
|
||||
<node TEXT="Volume of new to Russian market production per GRP" POSITION="right" ID="ID_124"/>
|
||||
<node TEXT="Volume of new to world market production per total production" POSITION="right" ID="ID_376">
|
||||
<node ID="ID_123" POSITION="right" TEXT="Innovation activities in firms">
|
||||
<node ID="ID_35" POSITION="right" TEXT="Share of innovative companies"/>
|
||||
<node ID="ID_128" POSITION="right" TEXT="Business R&D expenditures per GRP"/>
|
||||
<node ID="ID_145" POSITION="right" TEXT="Factors hampering innovation"/>
|
||||
<node ID="ID_350" POSITION="right" TEXT="Expenditure on innovation by firm size"/>
|
||||
<node ID="ID_357" POSITION="right" TEXT="R&D and other intellectl property products"/>
|
||||
<node ID="ID_390" POSITION="right" TEXT="Growth of the number of innovative companies "/>
|
||||
<node ID="ID_398" POSITION="right" TEXT="Outpus">
|
||||
<node ID="ID_124" POSITION="right" TEXT="Volume of new to Russian market production per GRP"/>
|
||||
<node ID="ID_376" POSITION="right" TEXT="Volume of new to world market production per total production">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Growth of the volume of production of innovative companies " POSITION="right" ID="ID_389"/>
|
||||
<node TEXT="Volume of innovation production per capita " POSITION="right" ID="ID_397">
|
||||
<node ID="ID_389" POSITION="right" TEXT="Growth of the volume of production of innovative companies "/>
|
||||
<node ID="ID_397" POSITION="right" TEXT="Volume of innovation production per capita ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Entrepreneurial activities" POSITION="right" ID="ID_148">
|
||||
<node TEXT="New business density" POSITION="right" ID="ID_117"/>
|
||||
<node TEXT="Volume of newly registered corporations " POSITION="right" ID="ID_119"/>
|
||||
<node TEXT="Share of gazelle companies in the total number of businesses" POSITION="right" ID="ID_170"/>
|
||||
<node ID="ID_148" POSITION="right" TEXT="Entrepreneurial activities">
|
||||
<node ID="ID_117" POSITION="right" TEXT="New business density"/>
|
||||
<node ID="ID_119" POSITION="right" TEXT="Volume of newly registered corporations "/>
|
||||
<node ID="ID_170" POSITION="right" TEXT="Share of gazelle companies in the total number of businesses"/>
|
||||
</node>
|
||||
<node TEXT="R&D production" POSITION="right" ID="ID_277">
|
||||
<node TEXT="Outputs" POSITION="right" ID="ID_280">
|
||||
<node POSITION="right" ID="ID_279">
|
||||
<node ID="ID_277" POSITION="right" TEXT="R&D production">
|
||||
<node ID="ID_280" POSITION="right" TEXT="Outputs">
|
||||
<node ID="ID_279" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -397,9 +397,9 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Amount of PCT-applications per 1 mln. population" POSITION="right" ID="ID_278"/>
|
||||
<node TEXT="Number of domestic patent applications per R&D expenditures" POSITION="right" ID="ID_281"/>
|
||||
<node POSITION="right" ID="ID_282">
|
||||
<node ID="ID_278" POSITION="right" TEXT="Amount of PCT-applications per 1 mln. population"/>
|
||||
<node ID="ID_281" POSITION="right" TEXT="Number of domestic patent applications per R&D expenditures"/>
|
||||
<node ID="ID_282" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -411,15 +411,15 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Publication activity of regional scientists and researches" POSITION="right" ID="ID_283"/>
|
||||
<node ID="ID_283" POSITION="right" TEXT="Publication activity of regional scientists and researches"/>
|
||||
</node>
|
||||
<node TEXT="Inputs" POSITION="right" ID="ID_340">
|
||||
<node TEXT="Regional and local budget expenditures on R&D" POSITION="right" ID="ID_341"/>
|
||||
<node TEXT="Government R&D expenditure " POSITION="right" ID="ID_349"/>
|
||||
<node ID="ID_340" POSITION="right" TEXT="Inputs">
|
||||
<node ID="ID_341" POSITION="right" TEXT="Regional and local budget expenditures on R&D"/>
|
||||
<node ID="ID_349" POSITION="right" TEXT="Government R&D expenditure "/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Public sector innovation" POSITION="right" ID="ID_415">
|
||||
<node POSITION="right" ID="ID_416">
|
||||
<node ID="ID_415" POSITION="right" TEXT="Public sector innovation">
|
||||
<node ID="ID_416" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -430,8 +430,8 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="E-government index" POSITION="right" ID="ID_418"/>
|
||||
<node POSITION="right" ID="ID_419">
|
||||
<node ID="ID_418" POSITION="right" TEXT="E-government index"/>
|
||||
<node ID="ID_419" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -444,10 +444,10 @@
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Supporting organizations" POSITION="right" ID="ID_113">
|
||||
<node TEXT="Research institutions" POSITION="right" ID="ID_51">
|
||||
<node TEXT="Collaboration" POSITION="right" ID="ID_171">
|
||||
<node POSITION="right" ID="ID_172">
|
||||
<node ID="ID_113" POSITION="right" TEXT="Supporting organizations">
|
||||
<node ID="ID_51" POSITION="right" TEXT="Research institutions">
|
||||
<node ID="ID_171" POSITION="right" TEXT="Collaboration">
|
||||
<node ID="ID_172" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -460,16 +460,16 @@
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Resources" POSITION="right" ID="ID_184">
|
||||
<node TEXT="R&D expenditures per 1 researcher" POSITION="right" ID="ID_137"/>
|
||||
<node TEXT="Average wage of researches per average wage in the region" POSITION="right" ID="ID_146"/>
|
||||
<node TEXT="High education expenditure on R&D" POSITION="right" ID="ID_353"/>
|
||||
<node ID="ID_184" POSITION="right" TEXT="Resources">
|
||||
<node ID="ID_137" POSITION="right" TEXT="R&D expenditures per 1 researcher"/>
|
||||
<node ID="ID_146" POSITION="right" TEXT="Average wage of researches per average wage in the region"/>
|
||||
<node ID="ID_353" POSITION="right" TEXT="High education expenditure on R&D"/>
|
||||
</node>
|
||||
<node TEXT="Scientific outputs" POSITION="right" ID="ID_185">
|
||||
<node TEXT="Publications" POSITION="right" ID="ID_306">
|
||||
<node TEXT="Impact of publications in the ISI database (h-index)" POSITION="right" ID="ID_304"/>
|
||||
<node TEXT="Number of publications in international journals per worker per year" POSITION="right" ID="ID_186"/>
|
||||
<node POSITION="right" ID="ID_303">
|
||||
<node ID="ID_185" POSITION="right" TEXT="Scientific outputs">
|
||||
<node ID="ID_306" POSITION="right" TEXT="Publications">
|
||||
<node ID="ID_304" POSITION="right" TEXT="Impact of publications in the ISI database (h-index)"/>
|
||||
<node ID="ID_186" POSITION="right" TEXT="Number of publications in international journals per worker per year"/>
|
||||
<node ID="ID_303" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -481,14 +481,14 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Number of foreign patents granted per staff" POSITION="right" ID="ID_187"/>
|
||||
<node ID="ID_187" POSITION="right" TEXT="Number of foreign patents granted per staff"/>
|
||||
</node>
|
||||
<node TEXT="Supportive measures" POSITION="right" ID="ID_312">
|
||||
<node TEXT="Diversity index of university entrepreneurship support measures" POSITION="right" ID="ID_313"/>
|
||||
<node ID="ID_312" POSITION="right" TEXT="Supportive measures">
|
||||
<node ID="ID_313" POSITION="right" TEXT="Diversity index of university entrepreneurship support measures"/>
|
||||
</node>
|
||||
<node TEXT="Commercialization" POSITION="right" ID="ID_299">
|
||||
<node TEXT="Licensing" POSITION="right" ID="ID_308">
|
||||
<node POSITION="right" ID="ID_298">
|
||||
<node ID="ID_299" POSITION="right" TEXT="Commercialization">
|
||||
<node ID="ID_308" POSITION="right" TEXT="Licensing">
|
||||
<node ID="ID_298" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -500,8 +500,8 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Spin-offs" POSITION="right" ID="ID_309">
|
||||
<node POSITION="right" ID="ID_300">
|
||||
<node ID="ID_309" POSITION="right" TEXT="Spin-offs">
|
||||
<node ID="ID_300" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -513,9 +513,9 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Industry contracts" POSITION="right" ID="ID_310">
|
||||
<node TEXT="Industry revenue per staff " POSITION="right" ID="ID_297"/>
|
||||
<node POSITION="right" ID="ID_305">
|
||||
<node ID="ID_310" POSITION="right" TEXT="Industry contracts">
|
||||
<node ID="ID_297" POSITION="right" TEXT="Industry revenue per staff "/>
|
||||
<node ID="ID_305" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -527,8 +527,8 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Share of industry income from foreign companies" POSITION="right" ID="ID_307"/>
|
||||
<node POSITION="right" ID="ID_90">
|
||||
<node ID="ID_307" POSITION="right" TEXT="Share of industry income from foreign companies"/>
|
||||
<node ID="ID_90" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -539,38 +539,38 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Difficulties faced by research organization in collaborating with SMEs" POSITION="right" ID="ID_311"/>
|
||||
<node ID="ID_311" POSITION="right" TEXT="Difficulties faced by research organization in collaborating with SMEs"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Private market" POSITION="right" ID="ID_153">
|
||||
<node TEXT="Number of innovation & IP services organizations" POSITION="right" ID="ID_154"/>
|
||||
<node TEXT="Number of private innovation infrastructure organizations " POSITION="right" ID="ID_155"/>
|
||||
<node TEXT="Access to certification and licensing for specific activities " POSITION="right" ID="ID_410"/>
|
||||
<node TEXT="Access to suppliers of equipment, production and engineering services " POSITION="right" ID="ID_411"/>
|
||||
<node ID="ID_153" POSITION="right" TEXT="Private market">
|
||||
<node ID="ID_154" POSITION="right" TEXT="Number of innovation & IP services organizations"/>
|
||||
<node ID="ID_155" POSITION="right" TEXT="Number of private innovation infrastructure organizations "/>
|
||||
<node ID="ID_410" POSITION="right" TEXT="Access to certification and licensing for specific activities "/>
|
||||
<node ID="ID_411" POSITION="right" TEXT="Access to suppliers of equipment, production and engineering services "/>
|
||||
</node>
|
||||
<node TEXT="Innovation infrastructure" POSITION="right" ID="ID_114">
|
||||
<node TEXT="Investments" POSITION="right" ID="ID_327">
|
||||
<node TEXT="Public investment in innovation infrastructure" POSITION="right" ID="ID_315"/>
|
||||
<node TEXT="Increase of government investment in innovation infrastructure" POSITION="right" ID="ID_328"/>
|
||||
<node TEXT=" Number of Development institution projects performed in the region" POSITION="right" ID="ID_339"/>
|
||||
<node TEXT="Volume of seed investments by the regional budget " POSITION="right" ID="ID_391"/>
|
||||
<node TEXT="Volume of venture financing from the regional budget " POSITION="right" ID="ID_392"/>
|
||||
<node ID="ID_114" POSITION="right" TEXT="Innovation infrastructure">
|
||||
<node ID="ID_327" POSITION="right" TEXT="Investments">
|
||||
<node ID="ID_315" POSITION="right" TEXT="Public investment in innovation infrastructure"/>
|
||||
<node ID="ID_328" POSITION="right" TEXT="Increase of government investment in innovation infrastructure"/>
|
||||
<node ID="ID_339" POSITION="right" TEXT=" Number of Development institution projects performed in the region"/>
|
||||
<node ID="ID_391" POSITION="right" TEXT="Volume of seed investments by the regional budget "/>
|
||||
<node ID="ID_392" POSITION="right" TEXT="Volume of venture financing from the regional budget "/>
|
||||
</node>
|
||||
<node TEXT="Volume of state support per one company " POSITION="right" ID="ID_413"/>
|
||||
<node ID="ID_413" POSITION="right" TEXT="Volume of state support per one company "/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="What to do about existing measures" STYLE="bubble" POSITION="left" ID="ID_4">
|
||||
<node ID="ID_4" POSITION="left" STYLE="bubble" TEXT="What to do about existing measures">
|
||||
<font SIZE="10"/>
|
||||
<node TEXT="Demand for measure" STYLE="bubble" POSITION="left" ID="ID_42" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Quality of beneficiaries" POSITION="left" ID="ID_50">
|
||||
<node TEXT="Growth rates of employment in supported innovative firms" POSITION="left" ID="ID_292"/>
|
||||
<node TEXT="Growth rates of employment in supported innovative firms" POSITION="left" ID="ID_293"/>
|
||||
<node TEXT="Role of IP for tenants/clients" POSITION="left" ID="ID_323"/>
|
||||
<node TEXT="Share of tenants with innovation activities" POSITION="left" ID="ID_326"/>
|
||||
<node POSITION="left" ID="ID_329">
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_42" POSITION="left" STYLE="bubble" TEXT="Demand for measure">
|
||||
<node ID="ID_50" POSITION="left" TEXT="Quality of beneficiaries">
|
||||
<node ID="ID_292" POSITION="left" TEXT="Growth rates of employment in supported innovative firms"/>
|
||||
<node ID="ID_293" POSITION="left" TEXT="Growth rates of employment in supported innovative firms"/>
|
||||
<node ID="ID_323" POSITION="left" TEXT="Role of IP for tenants/clients"/>
|
||||
<node ID="ID_326" POSITION="left" TEXT="Share of tenants with innovation activities"/>
|
||||
<node ID="ID_329" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -582,7 +582,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_330">
|
||||
<node ID="ID_330" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -594,15 +594,15 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Number of beneficiaries" POSITION="left" ID="ID_78">
|
||||
<node TEXT="Number of projects conducted by companies in cooperation with innovation infrastructure" POSITION="left" ID="ID_383"/>
|
||||
<node TEXT="Scope and intensity of use of services offered to firms" POSITION="left" ID="ID_325"/>
|
||||
<node TEXT="Number of companies supported by the infrastructure (training, information, consultations, etc.)" POSITION="left" ID="ID_384"/>
|
||||
<node TEXT="Increase in the number of business applying for public support programmes (regional, federal, international) " POSITION="left" ID="ID_401"/>
|
||||
<node ID="ID_78" POSITION="left" TEXT="Number of beneficiaries">
|
||||
<node ID="ID_383" POSITION="left" TEXT="Number of projects conducted by companies in cooperation with innovation infrastructure"/>
|
||||
<node ID="ID_325" POSITION="left" TEXT="Scope and intensity of use of services offered to firms"/>
|
||||
<node ID="ID_384" POSITION="left" TEXT="Number of companies supported by the infrastructure (training, information, consultations, etc.)"/>
|
||||
<node ID="ID_401" POSITION="left" TEXT="Increase in the number of business applying for public support programmes (regional, federal, international) "/>
|
||||
</node>
|
||||
<node TEXT="Degree of access" POSITION="left" ID="ID_182">
|
||||
<node TEXT="Level of awareness" POSITION="left" ID="ID_52">
|
||||
<node POSITION="left" ID="ID_181">
|
||||
<node ID="ID_182" POSITION="left" TEXT="Degree of access">
|
||||
<node ID="ID_52" POSITION="left" TEXT="Level of awareness">
|
||||
<node ID="ID_181" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -614,8 +614,8 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Transparency" POSITION="left" ID="ID_53">
|
||||
<node POSITION="left" ID="ID_175">
|
||||
<node ID="ID_53" POSITION="left" TEXT="Transparency">
|
||||
<node ID="ID_175" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -628,7 +628,7 @@
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_183">
|
||||
<node ID="ID_183" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -641,53 +641,53 @@
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Number of applicants" POSITION="left" ID="ID_176">
|
||||
<node TEXT="Increase in the number of business applying for public support programmes" POSITION="left" ID="ID_177"/>
|
||||
<node TEXT="Number of companies that know about a particular program" POSITION="left" ID="ID_178"/>
|
||||
<node TEXT="Increase in the number of start-ups applying to receive VC investments" POSITION="left" ID="ID_179"/>
|
||||
<node TEXT="Increase in the number of start-ups applying for a place in the incubators" POSITION="left" ID="ID_180"/>
|
||||
<node ID="ID_176" POSITION="left" TEXT="Number of applicants">
|
||||
<node ID="ID_177" POSITION="left" TEXT="Increase in the number of business applying for public support programmes"/>
|
||||
<node ID="ID_178" POSITION="left" TEXT="Number of companies that know about a particular program"/>
|
||||
<node ID="ID_179" POSITION="left" TEXT="Increase in the number of start-ups applying to receive VC investments"/>
|
||||
<node ID="ID_180" POSITION="left" TEXT="Increase in the number of start-ups applying for a place in the incubators"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Inputs of measures" STYLE="bubble" POSITION="left" ID="ID_109" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Qualified staff" POSITION="left" ID="ID_110"/>
|
||||
<node TEXT="Budget per beneficiary" POSITION="left" ID="ID_111"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="Inputs of measures">
|
||||
<node ID="ID_110" POSITION="left" TEXT="Qualified staff"/>
|
||||
<node ID="ID_111" POSITION="left" TEXT="Budget per beneficiary"/>
|
||||
</node>
|
||||
<node TEXT="Performance of measure" STYLE="bubble" POSITION="left" ID="ID_48" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Implementation of measure" POSITION="left" ID="ID_47" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Target vs. actual KPIs" POSITION="left" ID="ID_106"/>
|
||||
<node TEXT="Intermediate outputs per budget" POSITION="left" ID="ID_287"/>
|
||||
<node TEXT="Qualification of staff" POSITION="left" ID="ID_372">
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_48" POSITION="left" STYLE="bubble" TEXT="Performance of measure">
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_47" POSITION="left" TEXT="Implementation of measure">
|
||||
<node ID="ID_106" POSITION="left" TEXT="Target vs. actual KPIs"/>
|
||||
<node ID="ID_287" POSITION="left" TEXT="Intermediate outputs per budget"/>
|
||||
<node ID="ID_372" POSITION="left" TEXT="Qualification of staff">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Output of measure" POSITION="left" ID="ID_58">
|
||||
<node TEXT="Opinion surveys" POSITION="left" ID="ID_101">
|
||||
<node TEXT="Opinions of beneficiaries" POSITION="left" ID="ID_102"/>
|
||||
<node ID="ID_58" POSITION="left" TEXT="Output of measure">
|
||||
<node ID="ID_101" POSITION="left" TEXT="Opinion surveys">
|
||||
<node ID="ID_102" POSITION="left" TEXT="Opinions of beneficiaries"/>
|
||||
</node>
|
||||
<node TEXT="Hard metrics" POSITION="left" ID="ID_103">
|
||||
<node TEXT="Output per headcount (e.g. staff, researchers)" POSITION="left" ID="ID_289"/>
|
||||
<node TEXT="Productivity analysis" POSITION="left" ID="ID_288"/>
|
||||
<node ID="ID_103" POSITION="left" TEXT="Hard metrics">
|
||||
<node ID="ID_289" POSITION="left" TEXT="Output per headcount (e.g. staff, researchers)"/>
|
||||
<node ID="ID_288" POSITION="left" TEXT="Productivity analysis"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Impact of measure" STYLE="bubble" POSITION="left" ID="ID_49" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Opinion surveys" POSITION="left" ID="ID_79">
|
||||
<node TEXT="Perception of support impact (opinion polls)" POSITION="left" ID="ID_294"/>
|
||||
<node TEXT="Perception of the activity of regional government by the regional companies " POSITION="left" ID="ID_404"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_49" POSITION="left" STYLE="bubble" TEXT="Impact of measure">
|
||||
<node ID="ID_79" POSITION="left" TEXT="Opinion surveys">
|
||||
<node ID="ID_294" POSITION="left" TEXT="Perception of support impact (opinion polls)"/>
|
||||
<node ID="ID_404" POSITION="left" TEXT="Perception of the activity of regional government by the regional companies "/>
|
||||
</node>
|
||||
<node TEXT="Hard metrics" POSITION="left" ID="ID_104">
|
||||
<node TEXT="Increase in number of small innovation enterprises " POSITION="left" ID="ID_331"/>
|
||||
<node TEXT="Growth of the total volume of salary in the supported companies (excluding inflation) " POSITION="left" ID="ID_402">
|
||||
<node ID="ID_104" POSITION="left" TEXT="Hard metrics">
|
||||
<node ID="ID_331" POSITION="left" TEXT="Increase in number of small innovation enterprises "/>
|
||||
<node ID="ID_402" POSITION="left" TEXT="Growth of the total volume of salary in the supported companies (excluding inflation) ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Growth of the volume of regional taxes paid by the supported companies " POSITION="left" ID="ID_403">
|
||||
<node ID="ID_403" POSITION="left" TEXT="Growth of the volume of regional taxes paid by the supported companies ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Growth of the volume of export at the supported companies " POSITION="left" ID="ID_405"/>
|
||||
<node TEXT="Number of new products/projects at the companies that received support " POSITION="left" ID="ID_406"/>
|
||||
<node ID="ID_405" POSITION="left" TEXT="Growth of the volume of export at the supported companies "/>
|
||||
<node ID="ID_406" POSITION="left" TEXT="Number of new products/projects at the companies that received support "/>
|
||||
</node>
|
||||
<node TEXT="Impact assessment " POSITION="left" ID="ID_290"/>
|
||||
<node POSITION="left" ID="ID_291">
|
||||
<node ID="ID_290" POSITION="left" TEXT="Impact assessment "/>
|
||||
<node ID="ID_291" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -699,7 +699,7 @@
|
||||
</richcontent>
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_296">
|
||||
<node ID="ID_296" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -712,20 +712,20 @@
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
</node>
|
||||
<arrowlink STARTARROW="Default" DESTINATION="ID_114"/>
|
||||
<arrowlink DESTINATION="ID_114" STARTARROW="Default"/>
|
||||
</node>
|
||||
<node TEXT="What investments in innovative projects" STYLE="bubble" POSITION="right" ID="ID_7">
|
||||
<node ID="ID_7" POSITION="right" STYLE="bubble" TEXT="What investments in innovative projects">
|
||||
<font SIZE="10"/>
|
||||
<node TEXT="Competitive niches" STYLE="bubble" POSITION="right" ID="ID_61" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="Clusters behavior" POSITION="right" ID="ID_59">
|
||||
<node TEXT="Cluster EU star rating" POSITION="right" ID="ID_60"/>
|
||||
<node TEXT="Share of value added of cluster enterprises in GRP" POSITION="right" ID="ID_318"/>
|
||||
<node TEXT="Share of cluster products in the relevant world market segment " POSITION="right" ID="ID_320">
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_61" POSITION="right" STYLE="bubble" TEXT="Competitive niches">
|
||||
<node ID="ID_59" POSITION="right" TEXT="Clusters behavior">
|
||||
<node ID="ID_60" POSITION="right" TEXT="Cluster EU star rating"/>
|
||||
<node ID="ID_318" POSITION="right" TEXT="Share of value added of cluster enterprises in GRP"/>
|
||||
<node ID="ID_320" POSITION="right" TEXT="Share of cluster products in the relevant world market segment ">
|
||||
<icon BUILTIN="messagebox_warning"/>
|
||||
</node>
|
||||
<node TEXT="Share of export in cluster total volume of sales" POSITION="right" ID="ID_321"/>
|
||||
<node TEXT="Growth of the volume of production in the cluster companies" POSITION="right" ID="ID_379"/>
|
||||
<node POSITION="right" ID="ID_380">
|
||||
<node ID="ID_321" POSITION="right" TEXT="Share of export in cluster total volume of sales"/>
|
||||
<node ID="ID_379" POSITION="right" TEXT="Growth of the volume of production in the cluster companies"/>
|
||||
<node ID="ID_380" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -736,31 +736,31 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Growth of the volume of innovation production in the cluster" POSITION="right" ID="ID_381"/>
|
||||
<node TEXT="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) " POSITION="right" ID="ID_407"/>
|
||||
<node TEXT="Internal behavior" POSITION="right" ID="ID_408">
|
||||
<node TEXT="Median wage in the cluster" POSITION="right" ID="ID_319"/>
|
||||
<node TEXT="Growth of the volume of R&D in the cluster" POSITION="right" ID="ID_382"/>
|
||||
<node TEXT="Cluster collaboration" POSITION="right" ID="ID_108"/>
|
||||
<node ID="ID_381" POSITION="right" TEXT="Growth of the volume of innovation production in the cluster"/>
|
||||
<node ID="ID_407" POSITION="right" TEXT="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) "/>
|
||||
<node ID="ID_408" POSITION="right" TEXT="Internal behavior">
|
||||
<node ID="ID_319" POSITION="right" TEXT="Median wage in the cluster"/>
|
||||
<node ID="ID_382" POSITION="right" TEXT="Growth of the volume of R&D in the cluster"/>
|
||||
<node ID="ID_108" POSITION="right" TEXT="Cluster collaboration"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="R&D" POSITION="right" ID="ID_66">
|
||||
<node TEXT="Patent map" POSITION="right" ID="ID_65"/>
|
||||
<node TEXT="Publications map" POSITION="right" ID="ID_371"/>
|
||||
<node ID="ID_66" POSITION="right" TEXT="R&D">
|
||||
<node ID="ID_65" POSITION="right" TEXT="Patent map"/>
|
||||
<node ID="ID_371" POSITION="right" TEXT="Publications map"/>
|
||||
</node>
|
||||
<node TEXT="Industry" POSITION="right" ID="ID_67">
|
||||
<node TEXT="FDI map" POSITION="right" ID="ID_63"/>
|
||||
<node TEXT="Gazelle map" POSITION="right" ID="ID_62"/>
|
||||
<node TEXT="Business R&D expenditures as a share of revenues by sector" POSITION="right" ID="ID_131"/>
|
||||
<node TEXT="Share of regional products in the world market" POSITION="right" ID="ID_378"/>
|
||||
<node TEXT="Expenditure on innovation by firm size, by sector " POSITION="right" ID="ID_414"/>
|
||||
<node ID="ID_67" POSITION="right" TEXT="Industry">
|
||||
<node ID="ID_63" POSITION="right" TEXT="FDI map"/>
|
||||
<node ID="ID_62" POSITION="right" TEXT="Gazelle map"/>
|
||||
<node ID="ID_131" POSITION="right" TEXT="Business R&D expenditures as a share of revenues by sector"/>
|
||||
<node ID="ID_378" POSITION="right" TEXT="Share of regional products in the world market"/>
|
||||
<node ID="ID_414" POSITION="right" TEXT="Expenditure on innovation by firm size, by sector "/>
|
||||
</node>
|
||||
<node TEXT="Entrepreneurship" POSITION="right" ID="ID_72">
|
||||
<node TEXT="Startup map" POSITION="right" ID="ID_73"/>
|
||||
<node TEXT="Venture investment map" POSITION="right" ID="ID_74"/>
|
||||
<node TEXT="Attractiveness to public competitive funding" POSITION="right" ID="ID_317">
|
||||
<node TEXT="Fed and regional seed fund investments" POSITION="right" ID="ID_316"/>
|
||||
<node POSITION="right" ID="ID_314">
|
||||
<node ID="ID_72" POSITION="right" TEXT="Entrepreneurship">
|
||||
<node ID="ID_73" POSITION="right" TEXT="Startup map"/>
|
||||
<node ID="ID_74" POSITION="right" TEXT="Venture investment map"/>
|
||||
<node ID="ID_317" POSITION="right" TEXT="Attractiveness to public competitive funding">
|
||||
<node ID="ID_316" POSITION="right" TEXT="Fed and regional seed fund investments"/>
|
||||
<node ID="ID_314" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -774,17 +774,17 @@
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Competitiveness support factors" STYLE="bubble" POSITION="right" ID="ID_64" BACKGROUND_COLOR="#ffffff">
|
||||
<node TEXT="Private investment in innovation" POSITION="right" ID="ID_68"/>
|
||||
<node BACKGROUND_COLOR="#ffffff" ID="ID_64" POSITION="right" STYLE="bubble" TEXT="Competitiveness support factors">
|
||||
<node ID="ID_68" POSITION="right" TEXT="Private investment in innovation"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="How to improve image" STYLE="bubble" POSITION="left" ID="ID_69" BACKGROUND_COLOR="#e0e5ef">
|
||||
<node BACKGROUND_COLOR="#e0e5ef" ID="ID_69" POSITION="left" STYLE="bubble" TEXT="How to improve image">
|
||||
<font SIZE="10"/>
|
||||
<node TEXT="Rankings" STYLE="bubble" POSITION="left" ID="ID_75" BACKGROUND_COLOR="#feffff">
|
||||
<node TEXT="macro indicators" POSITION="left" ID="ID_70"/>
|
||||
<node TEXT="meso-indicators" POSITION="left" ID="ID_71"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_75" POSITION="left" STYLE="bubble" TEXT="Rankings">
|
||||
<node ID="ID_70" POSITION="left" TEXT="macro indicators"/>
|
||||
<node ID="ID_71" POSITION="left" TEXT="meso-indicators"/>
|
||||
</node>
|
||||
<node TEXT="Innovation investment climate" STYLE="bubble" POSITION="left" ID="ID_76" BACKGROUND_COLOR="#feffff"/>
|
||||
<node BACKGROUND_COLOR="#feffff" ID="ID_76" POSITION="left" STYLE="bubble" TEXT="Innovation investment climate"/>
|
||||
</node>
|
||||
</node>
|
||||
</map>
|
@ -1,3 +1,3 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Observation" ID="ID_1"/>
|
||||
<node ID="ID_1" TEXT="Observation"/>
|
||||
</map>
|
@ -1,8 +1,8 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Artigos GF comentários interessantes" ID="ID_1">
|
||||
<node TEXT="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities" STYLE="rectagle" POSITION="left" ID="ID_5" BACKGROUND_COLOR="#cccccc">
|
||||
<node ID="ID_1" TEXT="Artigos GF comentários interessantes">
|
||||
<node BACKGROUND_COLOR="#cccccc" ID="ID_5" POSITION="left" STYLE="rectagle" TEXT="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities">
|
||||
<edge COLOR="#cccccc"/>
|
||||
<node POSITION="left" ID="ID_6">
|
||||
<node ID="ID_6" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -20,7 +20,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_7">
|
||||
<node ID="ID_7" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -33,7 +33,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_8">
|
||||
<node ID="ID_8" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -55,10 +55,10 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal." POSITION="left" ID="ID_9"/>
|
||||
<node TEXT="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro" POSITION="left" ID="ID_12"/>
|
||||
<node TEXT="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb." POSITION="left" ID="ID_13"/>
|
||||
<node POSITION="left" ID="ID_14">
|
||||
<node ID="ID_9" POSITION="left" TEXT="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal."/>
|
||||
<node ID="ID_12" POSITION="left" TEXT="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro"/>
|
||||
<node ID="ID_13" POSITION="left" TEXT="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb."/>
|
||||
<node ID="ID_14" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -73,7 +73,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_15">
|
||||
<node ID="ID_15" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -86,9 +86,9 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Chazdon 2010. Biotropica. 42(1): 31–40" STYLE="rectagle" POSITION="right" ID="ID_17" COLOR="#000000" BACKGROUND_COLOR="#cccccc">
|
||||
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_17" POSITION="right" STYLE="rectagle" TEXT="Chazdon 2010. Biotropica. 42(1): 31–40">
|
||||
<edge COLOR="#cccccc"/>
|
||||
<node POSITION="right" ID="ID_22">
|
||||
<node ID="ID_22" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -105,7 +105,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_23">
|
||||
<node ID="ID_23" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -119,8 +119,8 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. " POSITION="right" ID="ID_24"/>
|
||||
<node POSITION="right" ID="ID_25">
|
||||
<node ID="ID_24" POSITION="right" TEXT="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. "/>
|
||||
<node ID="ID_25" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -138,7 +138,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_26">
|
||||
<node ID="ID_26" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -151,7 +151,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_27">
|
||||
<node ID="ID_27" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -165,7 +165,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_28">
|
||||
<node ID="ID_28" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -184,7 +184,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_29">
|
||||
<node ID="ID_29" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -219,7 +219,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_30">
|
||||
<node ID="ID_30" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -232,7 +232,7 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node POSITION="right" ID="ID_31">
|
||||
<node ID="ID_31" POSITION="right">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -260,10 +260,10 @@
|
||||
</richcontent>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Poorter 1999. Functional Ecology. 13:396-410" STYLE="rectagle" POSITION="left" ID="ID_2" COLOR="#000000" BACKGROUND_COLOR="#cccccc">
|
||||
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_2" POSITION="left" STYLE="rectagle" TEXT="Poorter 1999. Functional Ecology. 13:396-410">
|
||||
<edge COLOR="#cccccc"/>
|
||||
<node TEXT="Espécies pioneiras crescem mais rápido do que as não pioneiras" POSITION="left" ID="ID_3">
|
||||
<node TEXT="Tolerância a sombra está relacionada com persistência e não com crescimento" POSITION="left" ID="ID_4"/>
|
||||
<node ID="ID_3" POSITION="left" TEXT="Espécies pioneiras crescem mais rápido do que as não pioneiras">
|
||||
<node ID="ID_4" POSITION="left" TEXT="Tolerância a sombra está relacionada com persistência e não com crescimento"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,266 +1,266 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Así que quieres recorrer Medellín..." ID="ID_1" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_1" TEXT="Así que quieres recorrer Medellín...">
|
||||
<font SIZE="15"/>
|
||||
<edge COLOR="#ffffff"/>
|
||||
<node TEXT="Y ERES UN TURISTA" STYLE="bubble" POSITION="right" ID="ID_134" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_134" POSITION="right" STYLE="bubble" TEXT="Y ERES UN TURISTA">
|
||||
<font BOLD="true"/>
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Y ERES UN RESIDENTE" STYLE="bubble" POSITION="left" ID="ID_4" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_4" POSITION="left" STYLE="bubble" TEXT="Y ERES UN RESIDENTE">
|
||||
<font BOLD="true"/>
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Divertirte" STYLE="bubble" POSITION="left" ID="ID_6" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_6" POSITION="left" STYLE="bubble" TEXT="Divertirte">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Te gusta la rumba" POSITION="left" ID="ID_136">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_137" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_136" POSITION="left" TEXT="Te gusta la rumba">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_137" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Para bailar" POSITION="left" ID="ID_216">
|
||||
<node TEXT="Mango's" STYLE="bubble" POSITION="left" ID="ID_224" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_216" POSITION="left" TEXT="Para bailar">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_224" POSITION="left" STYLE="bubble" TEXT="Mango's">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Kukaramakara" STYLE="bubble" POSITION="left" ID="ID_226" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_226" POSITION="left" STYLE="bubble" TEXT="Kukaramakara">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="El Pub" STYLE="bubble" POSITION="left" ID="ID_235" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_235" POSITION="left" STYLE="bubble" TEXT="El Pub">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="B Lounge" STYLE="bubble" POSITION="left" ID="ID_233" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_233" POSITION="left" STYLE="bubble" TEXT="B Lounge">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Mamma Juana" STYLE="bubble" POSITION="left" ID="ID_234" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_234" POSITION="left" STYLE="bubble" TEXT="Mamma Juana">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Para oír música" POSITION="left" ID="ID_217">
|
||||
<node TEXT="Palmahía" STYLE="bubble" POSITION="left" ID="ID_225" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_217" POSITION="left" TEXT="Para oír música">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_225" POSITION="left" STYLE="bubble" TEXT="Palmahía">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="El Deck" STYLE="bubble" POSITION="left" ID="ID_236" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_236" POSITION="left" STYLE="bubble" TEXT="El Deck">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Hard Rock Café" STYLE="bubble" POSITION="left" ID="ID_232" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_232" POSITION="left" STYLE="bubble" TEXT="Hard Rock Café">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="¿Y para tocar música?" POSITION="left" ID="ID_222">
|
||||
<node TEXT="Red de Escuelas de Música" STYLE="bubble" POSITION="left" ID="ID_223" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_222" POSITION="left" TEXT="¿Y para tocar música?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_223" POSITION="left" STYLE="bubble" TEXT="Red de Escuelas de Música">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_173" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_173" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Hacer deporte sí" STYLE="bubble" POSITION="left" ID="ID_174" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_174" POSITION="left" STYLE="bubble" TEXT="Hacer deporte sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Al aire libre" POSITION="left" ID="ID_208">
|
||||
<node TEXT="Los domingos y festivos en la ciclovía" STYLE="bubble" POSITION="left" ID="ID_213" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_208" POSITION="left" TEXT="Al aire libre">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_213" POSITION="left" STYLE="bubble" TEXT="Los domingos y festivos en la ciclovía">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="En caminatas por los parques" STYLE="bubble" POSITION="left" ID="ID_214" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_214" POSITION="left" STYLE="bubble" TEXT="En caminatas por los parques">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="En un centro" POSITION="left" ID="ID_209">
|
||||
<node TEXT="Estadio Atanasio Girardot" STYLE="bubble" POSITION="left" ID="ID_212" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_209" POSITION="left" TEXT="En un centro">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_212" POSITION="left" STYLE="bubble" TEXT="Estadio Atanasio Girardot">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Unidad Deportiva Atanasio Girardot" STYLE="bubble" POSITION="left" ID="ID_215" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_215" POSITION="left" STYLE="bubble" TEXT="Unidad Deportiva Atanasio Girardot">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Unidades Deportivas INDER" STYLE="bubble" POSITION="left" ID="ID_211" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_211" POSITION="left" STYLE="bubble" TEXT="Unidades Deportivas INDER">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Polideportivo UPB" STYLE="bubble" POSITION="left" ID="ID_210" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_210" POSITION="left" STYLE="bubble" TEXT="Polideportivo UPB">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Algo más calmado" STYLE="bubble" POSITION="left" ID="ID_138" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_138" POSITION="left" STYLE="bubble" TEXT="Algo más calmado">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Salir de compras?" POSITION="left" ID="ID_139">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_141" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_139" POSITION="left" TEXT="¿Salir de compras?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_141" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Traes dinero en el bolsillo?" POSITION="left" ID="ID_143">
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_145" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_143" POSITION="left" TEXT="¿Traes dinero en el bolsillo?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_145" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Dónde sacar dinero?" POSITION="left" ID="ID_146">
|
||||
<node TEXT="En Cajeros Automáticos" STYLE="bubble" POSITION="left" ID="ID_147" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_146" POSITION="left" TEXT="¿Dónde sacar dinero?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_147" POSITION="left" STYLE="bubble" TEXT="En Cajeros Automáticos">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="En un Banco" STYLE="bubble" POSITION="left" ID="ID_148" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_148" POSITION="left" STYLE="bubble" TEXT="En un Banco">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Bancolombia" STYLE="bubble" POSITION="left" ID="ID_149" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_149" POSITION="left" STYLE="bubble" TEXT="Bancolombia">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Banco Santander" STYLE="bubble" POSITION="left" ID="ID_150" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_150" POSITION="left" STYLE="bubble" TEXT="Banco Santander">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Banco BBVA" STYLE="bubble" POSITION="left" ID="ID_151" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_151" POSITION="left" STYLE="bubble" TEXT="Banco BBVA">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Banco Caja Social" STYLE="bubble" POSITION="left" ID="ID_152" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_152" POSITION="left" STYLE="bubble" TEXT="Banco Caja Social">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Banco AV Villas" STYLE="bubble" POSITION="left" ID="ID_153" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_153" POSITION="left" STYLE="bubble" TEXT="Banco AV Villas">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Banco de Bogotá" STYLE="bubble" POSITION="left" ID="ID_154" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_154" POSITION="left" STYLE="bubble" TEXT="Banco de Bogotá">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Banco Popular" STYLE="bubble" POSITION="left" ID="ID_155" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_155" POSITION="left" STYLE="bubble" TEXT="Banco Popular">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Davivienda" STYLE="bubble" POSITION="left" ID="ID_156" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_156" POSITION="left" STYLE="bubble" TEXT="Davivienda">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Otros" STYLE="bubble" POSITION="left" ID="ID_157" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_157" POSITION="left" STYLE="bubble" TEXT="Otros">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_144" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_144" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="En mediana cantidad" POSITION="left" ID="ID_158">
|
||||
<node TEXT="Centro de la Moda (Itaguí)" STYLE="bubble" POSITION="left" ID="ID_160" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_158" POSITION="left" TEXT="En mediana cantidad">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_160" POSITION="left" STYLE="bubble" TEXT="Centro de la Moda (Itaguí)">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Boulevar El Hueco" STYLE="bubble" POSITION="left" ID="ID_161" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_161" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Boulevar El Hueco">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Japón" STYLE="bubble" POSITION="left" ID="ID_162" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_162" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Japón">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Hollywood" STYLE="bubble" POSITION="left" ID="ID_163" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_163" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Hollywood">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Palacio Nacional" STYLE="bubble" POSITION="left" ID="ID_167" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_167" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Palacio Nacional">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="En gran cantidad" POSITION="left" ID="ID_159">
|
||||
<node TEXT="Centro Comercial Punto Clave" STYLE="bubble" POSITION="left" ID="ID_164" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_159" POSITION="left" TEXT="En gran cantidad">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_164" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Punto Clave">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial El Tesoro" STYLE="bubble" POSITION="left" ID="ID_165" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_165" POSITION="left" STYLE="bubble" TEXT="Centro Comercial El Tesoro">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Santafé" STYLE="bubble" POSITION="left" ID="ID_166" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_166" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Santafé">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Monterrey" STYLE="bubble" POSITION="left" ID="ID_168" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_168" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Monterrey">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial San Diego" STYLE="bubble" POSITION="left" ID="ID_169" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_169" POSITION="left" STYLE="bubble" TEXT="Centro Comercial San Diego">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Oviedo" STYLE="bubble" POSITION="left" ID="ID_170" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_170" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Oviedo">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Unicentro" STYLE="bubble" POSITION="left" ID="ID_171" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_171" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Unicentro">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Centro Comercial Mayorca" STYLE="bubble" POSITION="left" ID="ID_172" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_172" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Mayorca">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_142" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_142" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Ir a comer algo?" POSITION="left" ID="ID_175">
|
||||
<node TEXT="Un café o algo así" STYLE="bubble" POSITION="left" ID="ID_176" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_175" POSITION="left" TEXT="¿Ir a comer algo?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_176" POSITION="left" STYLE="bubble" TEXT="Un café o algo así">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Versalles" STYLE="bubble" POSITION="left" ID="ID_178" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_178" POSITION="left" STYLE="bubble" TEXT="Versalles">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="El Astor" STYLE="bubble" POSITION="left" ID="ID_179" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_179" POSITION="left" STYLE="bubble" TEXT="El Astor">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Un buen almuerzo" STYLE="bubble" POSITION="left" ID="ID_177" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_177" POSITION="left" STYLE="bubble" TEXT="Un buen almuerzo">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="San Carbón" STYLE="bubble" POSITION="left" ID="ID_180" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_180" POSITION="left" STYLE="bubble" TEXT="San Carbón">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Hatoviejo" STYLE="bubble" POSITION="left" ID="ID_181" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_181" POSITION="left" STYLE="bubble" TEXT="Hatoviejo">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Triada" STYLE="bubble" POSITION="left" ID="ID_182" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_182" POSITION="left" STYLE="bubble" TEXT="Triada">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Il Forno" STYLE="bubble" POSITION="left" ID="ID_183" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_183" POSITION="left" STYLE="bubble" TEXT="Il Forno">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Mondongo's" STYLE="bubble" POSITION="left" ID="ID_227" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_227" POSITION="left" STYLE="bubble" TEXT="Mondongo's">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="¿Algo educativo y divertido?" POSITION="left" ID="ID_140">
|
||||
<node TEXT="¿Parques?" POSITION="left" ID="ID_184">
|
||||
<node TEXT="Educativos" STYLE="bubble" POSITION="left" ID="ID_186" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_140" POSITION="left" TEXT="¿Algo educativo y divertido?">
|
||||
<node ID="ID_184" POSITION="left" TEXT="¿Parques?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_186" POSITION="left" STYLE="bubble" TEXT="Educativos">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Parque Explora" STYLE="bubble" POSITION="left" ID="ID_188" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_188" POSITION="left" STYLE="bubble" TEXT="Parque Explora">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Museo Interactivo EPM" STYLE="bubble" POSITION="left" ID="ID_194" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_194" POSITION="left" STYLE="bubble" TEXT="Museo Interactivo EPM">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Conocer más centros educativos" POSITION="left" ID="ID_189">
|
||||
<node TEXT="Universidad de Antioquia" STYLE="bubble" POSITION="left" ID="ID_198" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_189" POSITION="left" TEXT="Conocer más centros educativos">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_198" POSITION="left" STYLE="bubble" TEXT="Universidad de Antioquia">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Universidad Nacional" STYLE="bubble" POSITION="left" ID="ID_199" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_199" POSITION="left" STYLE="bubble" TEXT="Universidad Nacional">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Universidad de Medellín" STYLE="bubble" POSITION="left" ID="ID_200" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_200" POSITION="left" STYLE="bubble" TEXT="Universidad de Medellín">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Universidad EAFIT" STYLE="bubble" POSITION="left" ID="ID_201" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_201" POSITION="left" STYLE="bubble" TEXT="Universidad EAFIT">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Universidad Pontificia Bolivariana" STYLE="bubble" POSITION="left" ID="ID_202" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_202" POSITION="left" STYLE="bubble" TEXT="Universidad Pontificia Bolivariana">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Fundación Universitaria Luis Amigó" STYLE="bubble" POSITION="left" ID="ID_203" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_203" POSITION="left" STYLE="bubble" TEXT="Fundación Universitaria Luis Amigó">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Universidad Santo Tomás" STYLE="bubble" POSITION="left" ID="ID_204" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_204" POSITION="left" STYLE="bubble" TEXT="Universidad Santo Tomás">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Universidad CES" STYLE="bubble" POSITION="left" ID="ID_205" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_205" POSITION="left" STYLE="bubble" TEXT="Universidad CES">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Divertidos" STYLE="bubble" POSITION="left" ID="ID_187" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_187" POSITION="left" STYLE="bubble" TEXT="Divertidos">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Parque de Las Aguas" STYLE="bubble" POSITION="left" ID="ID_195" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_195" POSITION="left" STYLE="bubble" TEXT="Parque de Las Aguas">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque Norte" STYLE="bubble" POSITION="left" ID="ID_196" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_196" POSITION="left" STYLE="bubble" TEXT="Parque Norte">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Aeroparque Juan Pablo II" STYLE="bubble" POSITION="left" ID="ID_197" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_197" POSITION="left" STYLE="bubble" TEXT="Aeroparque Juan Pablo II">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="¿Otros centros?" POSITION="left" ID="ID_185">
|
||||
<node TEXT="El Planetario de Medellín" STYLE="bubble" POSITION="left" ID="ID_190" COLOR="#f2f2f2" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_185" POSITION="left" TEXT="¿Otros centros?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f2f2f2" ID="ID_190" POSITION="left" STYLE="bubble" TEXT="El Planetario de Medellín">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="La Plaza de Toros La Macarena" STYLE="bubble" POSITION="left" ID="ID_191" COLOR="#f2f2f2" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f2f2f2" ID="ID_191" POSITION="left" STYLE="bubble" TEXT="La Plaza de Toros La Macarena">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Jardín Botánico Joaquín Antonio Uribe" STYLE="bubble" POSITION="left" ID="ID_192" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_192" POSITION="left" STYLE="bubble" TEXT="Jardín Botánico Joaquín Antonio Uribe">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Zoológico de Santa Fe" STYLE="bubble" POSITION="left" ID="ID_193" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_193" POSITION="left" STYLE="bubble" TEXT="Zoológico de Santa Fe">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
@ -269,157 +269,157 @@
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Conocer más de tu ciudad" STYLE="bubble" POSITION="left" ID="ID_5" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_5" POSITION="left" STYLE="bubble" TEXT="Conocer más de tu ciudad">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="De la historia" STYLE="bubble" POSITION="left" ID="ID_7" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_7" POSITION="left" STYLE="bubble" TEXT="De la historia">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="De una manera divertida" STYLE="bubble" POSITION="left" ID="ID_10" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_10" POSITION="left" STYLE="bubble" TEXT="De una manera divertida">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Te gustan los teatros?" POSITION="left" ID="ID_12">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_14" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_12" POSITION="left" TEXT="¿Te gustan los teatros?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_14" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Los Clásicos?" POSITION="left" ID="ID_15">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_16" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_15" POSITION="left" TEXT="¿Los Clásicos?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_16" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Entonces puedes visitar" POSITION="left" ID="ID_21">
|
||||
<node TEXT="Teatro Pablo Tobón Uribe" STYLE="bubble" POSITION="left" ID="ID_19" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_21" POSITION="left" TEXT="Entonces puedes visitar">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_19" POSITION="left" STYLE="bubble" TEXT="Teatro Pablo Tobón Uribe">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Lido" STYLE="bubble" POSITION="left" ID="ID_18" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_18" POSITION="left" STYLE="bubble" TEXT="Teatro Lido">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Metropolitano" STYLE="bubble" POSITION="left" ID="ID_20" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_20" POSITION="left" STYLE="bubble" TEXT="Teatro Metropolitano">
|
||||
<font ITALIC="true"/>
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Porfirio Barba Jacob" STYLE="bubble" POSITION="left" ID="ID_22" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_22" POSITION="left" STYLE="bubble" TEXT="Teatro Porfirio Barba Jacob">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_17" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_17" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Seguro te gustarán estos" POSITION="left" ID="ID_23">
|
||||
<node TEXT="El Peque��o Teatro" STYLE="bubble" POSITION="left" ID="ID_24" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_23" POSITION="left" TEXT="Seguro te gustarán estos">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_24" POSITION="left" STYLE="bubble" TEXT="El Peque��o Teatro">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro de Muñecos La Fanfarria" STYLE="bubble" POSITION="left" ID="ID_25" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_25" POSITION="left" STYLE="bubble" TEXT="Teatro de Muñecos La Fanfarria">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro El Águila Descalza" STYLE="bubble" POSITION="left" ID="ID_26" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_26" POSITION="left" STYLE="bubble" TEXT="Teatro El Águila Descalza">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Manicomio De Mu��ecos" STYLE="bubble" POSITION="left" ID="ID_27" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_27" POSITION="left" STYLE="bubble" TEXT="Teatro Manicomio De Mu��ecos">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Matacandelas" STYLE="bubble" POSITION="left" ID="ID_28" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_28" POSITION="left" STYLE="bubble" TEXT="Teatro Matacandelas">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Universidad de Medellín" STYLE="bubble" POSITION="left" ID="ID_29" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_29" POSITION="left" STYLE="bubble" TEXT="Teatro Universidad de Medellín">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Teatro Caja Negra" STYLE="bubble" POSITION="left" ID="ID_30" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_30" POSITION="left" STYLE="bubble" TEXT="Teatro Caja Negra">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_13" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_13" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Qué tal los museos?" POSITION="left" ID="ID_31">
|
||||
<node TEXT="Están bien" STYLE="bubble" POSITION="left" ID="ID_33" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_31" POSITION="left" TEXT="¿Qué tal los museos?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_33" POSITION="left" STYLE="bubble" TEXT="Están bien">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿De los antiguos?" POSITION="left" ID="ID_34">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_35" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_34" POSITION="left" TEXT="¿De los antiguos?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_35" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Museo de Antioquia" STYLE="bubble" POSITION="left" ID="ID_37" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_37" POSITION="left" STYLE="bubble" TEXT="Museo de Antioquia">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Museo Cementerio San Pedro" STYLE="bubble" POSITION="left" ID="ID_38" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_38" POSITION="left" STYLE="bubble" TEXT="Museo Cementerio San Pedro">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Museo El Castillo" STYLE="bubble" POSITION="left" ID="ID_41" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_41" POSITION="left" STYLE="bubble" TEXT="Museo El Castillo">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Algo más nuevo, mejor" STYLE="bubble" POSITION="left" ID="ID_36" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_36" POSITION="left" STYLE="bubble" TEXT="Algo más nuevo, mejor">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Museo de Arte Moderno (MAMM)" STYLE="bubble" POSITION="left" ID="ID_39" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_39" POSITION="left" STYLE="bubble" TEXT="Museo de Arte Moderno (MAMM)">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Museo Universitario Universidad de Antioquia (MUUA)" STYLE="bubble" POSITION="left" ID="ID_40" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_40" POSITION="left" STYLE="bubble" TEXT="Museo Universitario Universidad de Antioquia (MUUA)">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Casa Museo Maestro Pedro Nel Gómez" STYLE="bubble" POSITION="left" ID="ID_42" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_42" POSITION="left" STYLE="bubble" TEXT="Casa Museo Maestro Pedro Nel Gómez">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Casa Museo Gardeliana " STYLE="bubble" POSITION="left" ID="ID_43" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_43" POSITION="left" STYLE="bubble" TEXT="Casa Museo Gardeliana ">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No te gustan" STYLE="bubble" POSITION="left" ID="ID_32" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_32" POSITION="left" STYLE="bubble" TEXT="No te gustan">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="De la historia que está en los libros" STYLE="bubble" POSITION="left" ID="ID_11" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_11" POSITION="left" STYLE="bubble" TEXT="De la historia que está en los libros">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Quieres ir a una biblioteca?" POSITION="left" ID="ID_44">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_45" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_44" POSITION="left" TEXT="¿Quieres ir a una biblioteca?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_45" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="De las tradicionales" STYLE="bubble" POSITION="left" ID="ID_47" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_47" POSITION="left" STYLE="bubble" TEXT="De las tradicionales">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Biblioteca Pública Piloto" STYLE="bubble" POSITION="left" ID="ID_49" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_49" POSITION="left" STYLE="bubble" TEXT="Biblioteca Pública Piloto">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Biblioteca EPM" STYLE="bubble" POSITION="left" ID="ID_50" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_50" POSITION="left" STYLE="bubble" TEXT="Biblioteca EPM">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Parques biblioteca" STYLE="bubble" POSITION="left" ID="ID_48" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_48" POSITION="left" STYLE="bubble" TEXT="Parques biblioteca">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="España" STYLE="bubble" POSITION="left" ID="ID_52" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_52" POSITION="left" STYLE="bubble" TEXT="España">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="San Javier" STYLE="bubble" POSITION="left" ID="ID_51" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_51" POSITION="left" STYLE="bubble" TEXT="San Javier">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="La Quintana" STYLE="bubble" POSITION="left" ID="ID_55" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_55" POSITION="left" STYLE="bubble" TEXT="La Quintana">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="La Ladera" STYLE="bubble" POSITION="left" ID="ID_53" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_53" POSITION="left" STYLE="bubble" TEXT="La Ladera">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Belén" STYLE="bubble" POSITION="left" ID="ID_54" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_54" POSITION="left" STYLE="bubble" TEXT="Belén">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_46" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_46" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Algo más de mapas?" POSITION="left" ID="ID_65">
|
||||
<node TEXT="Sí, de historia de verdad" STYLE="bubble" POSITION="left" ID="ID_66" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_65" POSITION="left" TEXT="¿Algo más de mapas?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_66" POSITION="left" STYLE="bubble" TEXT="Sí, de historia de verdad">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Archivo Histórico de Medellín" STYLE="bubble" POSITION="left" ID="ID_68" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_68" POSITION="left" STYLE="bubble" TEXT="Archivo Histórico de Medellín">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Academia de Historia de Antioquia" STYLE="bubble" POSITION="left" ID="ID_69" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_69" POSITION="left" STYLE="bubble" TEXT="Academia de Historia de Antioquia">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_67" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_67" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Mejor a un parque?" POSITION="left" ID="ID_61">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_62" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_61" POSITION="left" TEXT="¿Mejor a un parque?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_62" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<arrowlink ENDARROW="Default" DESTINATION="ID_76"/>
|
||||
<arrowlink DESTINATION="ID_76" ENDARROW="Default"/>
|
||||
</node>
|
||||
<node TEXT="Tampoco" STYLE="bubble" POSITION="left" ID="ID_63" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_63" POSITION="left" STYLE="bubble" TEXT="Tampoco">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
@ -429,92 +429,92 @@
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="De la geografía" STYLE="bubble" POSITION="left" ID="ID_9" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_9" POSITION="left" STYLE="bubble" TEXT="De la geografía">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Parques naturales" STYLE="bubble" POSITION="left" ID="ID_70" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_70" POSITION="left" STYLE="bubble" TEXT="Parques naturales">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Parque ecológico Piedras Blancas" STYLE="bubble" POSITION="left" ID="ID_72" COLOR="#f5f5f5" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_72" POSITION="left" STYLE="bubble" TEXT="Parque ecológico Piedras Blancas">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Ecoparque Cerro El Volador" STYLE="bubble" POSITION="left" ID="ID_73" COLOR="#f5f5f5" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_73" POSITION="left" STYLE="bubble" TEXT="Ecoparque Cerro El Volador">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque Ecológico Cerro Nutibara" STYLE="bubble" POSITION="left" ID="ID_74" COLOR="#f5f5f5" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_74" POSITION="left" STYLE="bubble" TEXT="Parque Ecológico Cerro Nutibara">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque Ecoturístico Arví" STYLE="bubble" POSITION="left" ID="ID_75" COLOR="#f5f5f5" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_75" POSITION="left" STYLE="bubble" TEXT="Parque Ecoturístico Arví">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Parques urbanos" STYLE="bubble" POSITION="left" ID="ID_71" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_71" POSITION="left" STYLE="bubble" TEXT="Parques urbanos">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿De los tradicionales?" POSITION="left" ID="ID_76">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_79" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_76" POSITION="left" TEXT="¿De los tradicionales?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_79" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Plazas" STYLE="bubble" POSITION="left" ID="ID_77" COLOR="#f7f7f7" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f7f7f7" ID="ID_77" POSITION="left" STYLE="bubble" TEXT="Plazas">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Plaza de San Antonio" STYLE="bubble" POSITION="left" ID="ID_81" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_81" POSITION="left" STYLE="bubble" TEXT="Plaza de San Antonio">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Plaza Botero" STYLE="bubble" POSITION="left" ID="ID_82" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_82" POSITION="left" STYLE="bubble" TEXT="Plaza Botero">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Plaza Cisneros" STYLE="bubble" POSITION="left" ID="ID_83" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_83" POSITION="left" STYLE="bubble" TEXT="Plaza Cisneros">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Plazuela San Ignacio" STYLE="bubble" POSITION="left" ID="ID_85" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_85" POSITION="left" STYLE="bubble" TEXT="Plazuela San Ignacio">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Plaza de la Libertad" STYLE="bubble" POSITION="left" ID="ID_84" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_84" POSITION="left" STYLE="bubble" TEXT="Plaza de la Libertad">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Plazuela Nutibara" STYLE="bubble" POSITION="left" ID="ID_86" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_86" POSITION="left" STYLE="bubble" TEXT="Plazuela Nutibara">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Plazuela de la Veracruz" STYLE="bubble" POSITION="left" ID="ID_87" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_87" POSITION="left" STYLE="bubble" TEXT="Plazuela de la Veracruz">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Parques" STYLE="bubble" POSITION="left" ID="ID_78" COLOR="#f7f7f7" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#f7f7f7" ID="ID_78" POSITION="left" STYLE="bubble" TEXT="Parques">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Parque de Bolívar" STYLE="bubble" POSITION="left" ID="ID_88" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_88" POSITION="left" STYLE="bubble" TEXT="Parque de Bolívar">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque de Berrío" STYLE="bubble" POSITION="left" ID="ID_89" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_89" POSITION="left" STYLE="bubble" TEXT="Parque de Berrío">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque de Boston" STYLE="bubble" POSITION="left" ID="ID_90" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_90" POSITION="left" STYLE="bubble" TEXT="Parque de Boston">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque del Poblado" STYLE="bubble" POSITION="left" ID="ID_91" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_91" POSITION="left" STYLE="bubble" TEXT="Parque del Poblado">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque de Belén" STYLE="bubble" POSITION="left" ID="ID_92" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_92" POSITION="left" STYLE="bubble" TEXT="Parque de Belén">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque del Periodista" STYLE="bubble" POSITION="left" ID="ID_93" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_93" POSITION="left" STYLE="bubble" TEXT="Parque del Periodista">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No, algo distinto" STYLE="bubble" POSITION="left" ID="ID_80" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_80" POSITION="left" STYLE="bubble" TEXT="No, algo distinto">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Parque Lleras" STYLE="bubble" POSITION="left" ID="ID_94" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_94" POSITION="left" STYLE="bubble" TEXT="Parque Lleras">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque de los Pies Descalzos" STYLE="bubble" POSITION="left" ID="ID_95" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_95" POSITION="left" STYLE="bubble" TEXT="Parque de los Pies Descalzos">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque Lineal La Presidenta" STYLE="bubble" POSITION="left" ID="ID_96" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_96" POSITION="left" STYLE="bubble" TEXT="Parque Lineal La Presidenta">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque de Los Deseos" STYLE="bubble" POSITION="left" ID="ID_97" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_97" POSITION="left" STYLE="bubble" TEXT="Parque de Los Deseos">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque de La Bailarina" STYLE="bubble" POSITION="left" ID="ID_98" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_98" POSITION="left" STYLE="bubble" TEXT="Parque de La Bailarina">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Parque Juanes de La Paz" STYLE="bubble" POSITION="left" ID="ID_99" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_99" POSITION="left" STYLE="bubble" TEXT="Parque Juanes de La Paz">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
@ -522,68 +522,68 @@
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Otra información" STYLE="bubble" POSITION="left" ID="ID_8" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_8" POSITION="left" STYLE="bubble" TEXT="Otra información">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Una emergencia?" POSITION="left" ID="ID_102">
|
||||
<node TEXT="Sí" POSITION="left" ID="ID_105">
|
||||
<node TEXT="¿Tienes teléfono?" POSITION="left" ID="ID_107">
|
||||
<node TEXT="Sí" STYLE="bubble" POSITION="left" ID="ID_108" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_102" POSITION="left" TEXT="¿Una emergencia?">
|
||||
<node ID="ID_105" POSITION="left" TEXT="Sí">
|
||||
<node ID="ID_107" POSITION="left" TEXT="¿Tienes teléfono?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_108" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Policía: Llama al 112" STYLE="bubble" POSITION="left" ID="ID_117" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_117" POSITION="left" STYLE="bubble" TEXT="Policía: Llama al 112">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Seguridad: Llama al 123" STYLE="bubble" POSITION="left" ID="ID_119" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_119" POSITION="left" STYLE="bubble" TEXT="Seguridad: Llama al 123">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Salud: Llama al 125" STYLE="bubble" POSITION="left" ID="ID_118" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_118" POSITION="left" STYLE="bubble" TEXT="Salud: Llama al 125">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Información: " STYLE="bubble" POSITION="left" ID="ID_120" COLOR="#fcfcfc" BACKGROUND_COLOR="#ff0000">
|
||||
<node BACKGROUND_COLOR="#ff0000" COLOR="#fcfcfc" ID="ID_120" POSITION="left" STYLE="bubble" TEXT="Información: ">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No, es mejor ir" STYLE="bubble" POSITION="left" ID="ID_109" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="No, es mejor ir">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="¿Algún punto de Salud?" POSITION="left" ID="ID_100">
|
||||
<node TEXT="Hospitales" STYLE="bubble" POSITION="left" ID="ID_101" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_100" POSITION="left" TEXT="¿Algún punto de Salud?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_101" POSITION="left" STYLE="bubble" TEXT="Hospitales">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Hospital Universitario San Vicente de Paúl" STYLE="bubble" POSITION="left" ID="ID_121" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_121" POSITION="left" STYLE="bubble" TEXT="Hospital Universitario San Vicente de Paúl">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Hospital Pablo Tobón Uribe" STYLE="bubble" POSITION="left" ID="ID_122" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_122" POSITION="left" STYLE="bubble" TEXT="Hospital Pablo Tobón Uribe">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Hospital General de Medellín" STYLE="bubble" POSITION="left" ID="ID_123" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_123" POSITION="left" STYLE="bubble" TEXT="Hospital General de Medellín">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Clínicas" STYLE="bubble" POSITION="left" ID="ID_104" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_104" POSITION="left" STYLE="bubble" TEXT="Clínicas">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Clínica Soma" STYLE="bubble" POSITION="left" ID="ID_124" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_124" POSITION="left" STYLE="bubble" TEXT="Clínica Soma">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica Medellín" STYLE="bubble" POSITION="left" ID="ID_125" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_125" POSITION="left" STYLE="bubble" TEXT="Clínica Medellín">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica CES" STYLE="bubble" POSITION="left" ID="ID_126" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_126" POSITION="left" STYLE="bubble" TEXT="Clínica CES">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica Las Américas" STYLE="bubble" POSITION="left" ID="ID_127" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_127" POSITION="left" STYLE="bubble" TEXT="Clínica Las Américas">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica Cardiovascular" STYLE="bubble" POSITION="left" ID="ID_131" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_131" POSITION="left" STYLE="bubble" TEXT="Clínica Cardiovascular">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica Las Vegas" STYLE="bubble" POSITION="left" ID="ID_128" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_128" POSITION="left" STYLE="bubble" TEXT="Clínica Las Vegas">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica El Rosario" STYLE="bubble" POSITION="left" ID="ID_129" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_129" POSITION="left" STYLE="bubble" TEXT="Clínica El Rosario">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica El Prado" STYLE="bubble" POSITION="left" ID="ID_130" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_130" POSITION="left" STYLE="bubble" TEXT="Clínica El Prado">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="Clínica El Sagrado Corazón" STYLE="bubble" POSITION="left" ID="ID_132" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_132" POSITION="left" STYLE="bubble" TEXT="Clínica El Sagrado Corazón">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
@ -591,26 +591,26 @@
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" POSITION="left" ID="ID_106">
|
||||
<node TEXT="¿Estás perdido?" POSITION="left" ID="ID_103">
|
||||
<node TEXT="Un poco" STYLE="bubble" POSITION="left" ID="ID_110" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_106" POSITION="left" TEXT="No">
|
||||
<node ID="ID_103" POSITION="left" TEXT="¿Estás perdido?">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_110" POSITION="left" STYLE="bubble" TEXT="Un poco">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Puedes utilizar" POSITION="left" ID="ID_112">
|
||||
<node TEXT="Un bus" STYLE="bubble" POSITION="left" ID="ID_113" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node ID="ID_112" POSITION="left" TEXT="Puedes utilizar">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_113" POSITION="left" STYLE="bubble" TEXT="Un bus">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
<node TEXT="El Metro" STYLE="bubble" POSITION="left" ID="ID_114" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_114" POSITION="left" STYLE="bubble" TEXT="El Metro">
|
||||
<edge COLOR="#000000"/>
|
||||
<node TEXT="Metro Cable" STYLE="bubble" POSITION="left" ID="ID_116" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_116" POSITION="left" STYLE="bubble" TEXT="Metro Cable">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="El Metroplús" STYLE="bubble" POSITION="left" ID="ID_115" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_115" POSITION="left" STYLE="bubble" TEXT="El Metroplús">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="No" STYLE="bubble" POSITION="left" ID="ID_111" COLOR="#ffffff" BACKGROUND_COLOR="#000000">
|
||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_111" POSITION="left" STYLE="bubble" TEXT="No">
|
||||
<edge COLOR="#000000"/>
|
||||
</node>
|
||||
</node>
|
||||
|
@ -1,23 +1,23 @@
|
||||
<map version="0.9.0">
|
||||
<node TEXT="Welcome To WiseMapping" ID="ID_1" COLOR="#dfcfe6" BACKGROUND_COLOR="#0a0a08">
|
||||
<node TEXT="Try it Now!" POSITION="right" ID="ID_11" COLOR="#ffffff" BACKGROUND_COLOR="#250be3">
|
||||
<node BACKGROUND_COLOR="#0a0a08" COLOR="#dfcfe6" ID="ID_1" TEXT="Welcome To WiseMapping">
|
||||
<node BACKGROUND_COLOR="#250be3" COLOR="#ffffff" ID="ID_11" POSITION="right" TEXT="Try it Now!">
|
||||
<edge COLOR="#080559"/>
|
||||
<node TEXT="Double Click" POSITION="right" ID="ID_12" COLOR="#001be6">
|
||||
<node COLOR="#001be6" ID="ID_12" POSITION="right" TEXT="Double Click">
|
||||
<font ITALIC="true"/>
|
||||
</node>
|
||||
<node TEXT=" INS to insert" POSITION="right" ID="ID_13" COLOR="#001be6">
|
||||
<node COLOR="#001be6" ID="ID_13" POSITION="right" TEXT=" INS to insert">
|
||||
<font ITALIC="true"/>
|
||||
</node>
|
||||
<node TEXT="Drag map to move" POSITION="right" ID="ID_14" COLOR="#001be6">
|
||||
<node COLOR="#001be6" ID="ID_14" POSITION="right" TEXT="Drag map to move">
|
||||
<font ITALIC="true"/>
|
||||
</node>
|
||||
</node>
|
||||
<node TEXT="Productivity" POSITION="left" ID="ID_2" COLOR="#104f11" BACKGROUND_COLOR="#d9b518">
|
||||
<node BACKGROUND_COLOR="#d9b518" COLOR="#104f11" ID="ID_2" POSITION="left" TEXT="Productivity">
|
||||
<icon BUILTIN="bar"/>
|
||||
<node TEXT="Share your ideas" POSITION="left" ID="ID_3">
|
||||
<node ID="ID_3" POSITION="left" TEXT="Share your ideas">
|
||||
<icon BUILTIN="idea"/>
|
||||
</node>
|
||||
<node POSITION="left" ID="ID_4">
|
||||
<node ID="ID_4" POSITION="left">
|
||||
<richcontent TYPE="NODE">
|
||||
<html>
|
||||
<head/>
|
||||
@ -30,33 +30,33 @@
|
||||
</html>
|
||||
</richcontent>
|
||||
</node>
|
||||
<node TEXT="Visual " POSITION="left" ID="ID_5"/>
|
||||
<node ID="ID_5" POSITION="left" TEXT="Visual "/>
|
||||
</node>
|
||||
<node TEXT="Mind Mapping" POSITION="right" ID="ID_6" COLOR="#602378" BACKGROUND_COLOR="#edabff">
|
||||
<node TEXT="Share with Collegues" POSITION="right" ID="ID_7"/>
|
||||
<node TEXT="Online" POSITION="right" ID="ID_8"/>
|
||||
<node TEXT="Anyplace, Anytime" POSITION="right" ID="ID_9"/>
|
||||
<node TEXT="Free!!!" POSITION="right" ID="ID_10"/>
|
||||
<node BACKGROUND_COLOR="#edabff" COLOR="#602378" ID="ID_6" POSITION="right" TEXT="Mind Mapping">
|
||||
<node ID="ID_7" POSITION="right" TEXT="Share with Collegues"/>
|
||||
<node ID="ID_8" POSITION="right" TEXT="Online"/>
|
||||
<node ID="ID_9" POSITION="right" TEXT="Anyplace, Anytime"/>
|
||||
<node ID="ID_10" POSITION="right" TEXT="Free!!!"/>
|
||||
</node>
|
||||
<node TEXT="Web 2.0 Tool" POSITION="left" ID="ID_22" COLOR="#0c1d6b" BACKGROUND_COLOR="#add1f7">
|
||||
<node TEXT="Collaborate" POSITION="left" ID="ID_23"/>
|
||||
<node TEXT="No plugin required" POSITION="left" ID="ID_24">
|
||||
<node BACKGROUND_COLOR="#add1f7" COLOR="#0c1d6b" ID="ID_22" POSITION="left" TEXT="Web 2.0 Tool">
|
||||
<node ID="ID_23" POSITION="left" TEXT="Collaborate"/>
|
||||
<node ID="ID_24" POSITION="left" TEXT="No plugin required">
|
||||
<icon BUILTIN="disconnect"/>
|
||||
</node>
|
||||
<node TEXT="Share" POSITION="left" ID="ID_25"/>
|
||||
<node TEXT="Easy to use" POSITION="left" ID="ID_26"/>
|
||||
<node ID="ID_25" POSITION="left" TEXT="Share"/>
|
||||
<node ID="ID_26" POSITION="left" TEXT="Easy to use"/>
|
||||
</node>
|
||||
<node TEXT="Features" POSITION="right" ID="ID_15">
|
||||
<node TEXT="Links to Sites" POSITION="right" LINK="http://www.digg.com" ID="ID_16">
|
||||
<node ID="ID_15" POSITION="right" TEXT="Features">
|
||||
<node ID="ID_16" LINK="http://www.digg.com" POSITION="right" TEXT="Links to Sites">
|
||||
<font SIZE="6"/>
|
||||
</node>
|
||||
<node TEXT="Fonts" POSITION="right" ID="ID_17"/>
|
||||
<node TEXT="Topic Color" POSITION="right" ID="ID_18"/>
|
||||
<node TEXT="Topic Shapes" POSITION="right" ID="ID_19"/>
|
||||
<node TEXT="Icons" POSITION="right" ID="ID_20">
|
||||
<node ID="ID_17" POSITION="right" TEXT="Fonts"/>
|
||||
<node ID="ID_18" POSITION="right" TEXT="Topic Color"/>
|
||||
<node ID="ID_19" POSITION="right" TEXT="Topic Shapes"/>
|
||||
<node ID="ID_20" POSITION="right" TEXT="Icons">
|
||||
<icon BUILTIN="rainbow"/>
|
||||
</node>
|
||||
<node TEXT="History Changes" POSITION="right" ID="ID_21">
|
||||
<node ID="ID_21" POSITION="right" TEXT="History Changes">
|
||||
<icon BUILTIN="turn_left"/>
|
||||
</node>
|
||||
</node>
|
||||
|
Loading…
Reference in New Issue
Block a user