<Ui xmlns="http://www.blizzard.com/wow/ui/" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">

  <Script file="HealBot_Data.lua" />
  <Script file="HealBot_Init.lua" />
  <Script file="HealBot_IncHeals.lua" />
  <Script file="HealBot.lua" />
  
  <!-- Comment Syntax -->

    
  <StatusBar name="HealBot_StatusBar" virtual="true" frameStrata="MEDIUM" hidden="false">
	<Size>
	  <AbsDimension y="18"/>
	</Size>
    <Layers>
    <Layer level="OVERLAY">
      <FontString name="$parent_text" inherits="GameFontNormalSmall">
        <Anchors>
        <Anchor point="CENTER">
          <Offset> <AbsDimension y="1"/>  </Offset>
        </Anchor>
        </Anchors>
      </FontString>
    </Layer>
    </Layers>
	<BarTexture file="Interface\TargetingFrame\UI-StatusBar"/>
  </StatusBar>
  

  <Frame name="HealBot" parent="UIParent" frameStrata="LOW" toplevel="true" inherits="SecureFrameTemplate">
    <Scripts>
      <OnLoad>
	    HealBot_OnLoad(self);
      </OnLoad>
      <OnEvent>
        HealBot_OnEvent(self,event,...);
      </OnEvent>
      <OnUpdate>
        HealBot_OnUpdate(self);
      </OnUpdate>
    </Scripts>
  </Frame>
    
  <GameTooltip name="HealBot_ScanTooltip" frameStrata="TOOLTIP" hidden="true" parent="UIParent" inherits="GameTooltipTemplate" />
  
	<Frame name="HealBot_ButtonFrame" parent="Minimap" enableMouse="true" hidden="false" frameStrata="LOW">
		<Size>
			<AbsDimension x="32" y="32"/>
		</Size>
		<Anchors>
			<Anchor point="TOPLEFT" relativeTo="Minimap" relativePoint="RIGHT">
				<Offset>
					<AbsDimension x="2" y="0"/>
				</Offset>
			</Anchor>
		</Anchors>
		<Frames>
			<Button name="HealBot_MMButton">
				<HighlightTexture alphaMode="ADD" file="Interface\Minimap\UI-Minimap-ZoomButton-Highlight"/>
				<Size>
					<AbsDimension x="33" y="33"/>
				</Size>
				<Anchors>
					<Anchor point="TOPLEFT">
						<Offset>
							<AbsDimension x="0" y="0"/>
						</Offset>
					</Anchor>
				</Anchors>
				<Layers>
					<Layer level="BORDER">
						<Texture name="$parentIcon" file="Interface\AddOns\HealBot\Images\HealBot">
							<Size>
								<AbsDimension x="18" y="18"/>
							</Size>
							<Anchors>
								<Anchor point="CENTER">
									<Offset>
										<AbsDimension x="-1" y="1"/>
									</Offset>
								</Anchor>
							</Anchors>
						</Texture>
					</Layer>
					<Layer level="OVERLAY">
						<Texture name="$parentBorder" file="Interface\Minimap\MiniMap-TrackingBorder">
							<Size>
								<AbsDimension x="52" y="52"/>
							</Size>
							<Anchors>
								<Anchor point="TOPLEFT"/>
							</Anchors>
						</Texture>
					</Layer>
				</Layers>
				<Scripts>
					<OnLoad>
						HealBot_MMButton_OnLoad(self)
					</OnLoad>
					<OnDragStart> 
						self.dragme = true;
					</OnDragStart> 
					<OnDragStop>
						self.dragme = false;
					</OnDragStop>
					<OnUpdate>
						if(self.dragme == true) then
							HealBot_MMButton_BeingDragged();
						end
					</OnUpdate>
					<OnClick>
						HealBot_MMButton_OnClick();
					</OnClick>
					<OnEnter>
						HealBot_MMButton_OnEnter(self);
					</OnEnter>
					<OnLeave>
						GameTooltip:Hide();
					</OnLeave>
				</Scripts>
			</Button>
		</Frames>
	</Frame>
  
   <Frame name="HealBot_Tooltip" frameStrata="TOOLTIP" parent="UIParent" hidden="true">
      <Layers>
         <Layer level="ARTWORK">
			<FontString name="$parentTextL1" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT">
							<Offset>
								<AbsDimension x="10" y="-10"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR1" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT">
							<Offset>
								<AbsDimension x="-10" y="-10"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL2" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL1" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR2" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR1" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL3" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL2" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR3" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR2" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL4" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL3" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR4" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR3" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL5" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL4" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR5" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR4" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
                            </Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL6" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL5" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR6" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR5" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL7" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL6" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR7" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR6" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL8" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL7" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR8" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR7" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL9" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL8" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR9" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR8" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL10" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL9" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR10" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR9" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL11" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL10" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR11" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR10" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL12" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL11" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR12" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR11" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL13" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL12" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR13" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR12" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL14" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL13" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR14" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR13" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL15" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL14" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR15" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR14" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL16" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL15" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR16" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR15" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL17" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL16" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR17" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR16" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL18" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL17" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR18" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR17" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL19" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL18" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR19" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR18" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL20" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL19" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR20" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR19" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL21" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL20" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR21" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR20" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL22" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL21" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR22" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR21" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL23" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL22" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR23" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR22" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL24" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL23" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR24" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR23" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL25" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL24" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR25" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR24" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL26" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL25" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR26" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR25" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL27" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL26" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR27" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR26" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL28" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL27" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR28" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR27" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL29" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL28" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR29" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR28" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL30" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL29" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR30" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR29" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL31" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL30" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR31" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR30" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL32" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL31" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR32" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR31" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL33" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL32" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR33" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR32" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextL34" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL33" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR34" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR33" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>                          
				<FontString name="$parentTextL35" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL34" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR35" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR34" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>     
				<FontString name="$parentTextL36" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL35" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR36" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR35" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>       
				<FontString name="$parentTextL37" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL36" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR37" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR36" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>      
                <FontString name="$parentTextL38" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL37" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR38" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR37" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL39" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL38" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR39" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR38" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL40" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL39" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR40" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR39" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL41" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL40" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR41" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR40" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL42" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL41" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR42" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR41" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL43" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL42" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR43" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR42" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL44" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL43" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR44" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR43" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                <FontString name="$parentTextL45" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPLEFT" relativeTo="$parentTextL44" relativePoint="BOTTOMLEFT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
				<FontString name="$parentTextR45" inherits="GameFontNormalSmall" hidden="true">
					<Anchors>
						<Anchor point="TOPRIGHT" relativeTo="$parentTextR44" relativePoint="BOTTOMRIGHT">
							<Offset>
								<AbsDimension x="0" y="-2"/>
							</Offset>
						</Anchor>
					</Anchors>
				</FontString>
                
    	</Layer>
      </Layers>
    <Backdrop tile="true"
      bgFile="Interface\Tooltips\UI-Tooltip-Background"
      edgeFile="Interface\Tooltips\UI-Tooltip-Border">
      <EdgeSize>
        <AbsValue val="8"/>
      </EdgeSize>
      <TileSize>
        <AbsValue val="8"/>
      </TileSize>
      <BackgroundInsets>
        <AbsInset left="3" right="3" top="3" bottom="3"/>
      </BackgroundInsets>
    </Backdrop>
   </Frame>
</Ui>
