Seliton SUPTO XML API Guide - Sample Codes

Дата: 24 Юли 2025

example.cs

Съдържание на файла:

Copy
Uri uri = new Uri("http://xxxxx.com/modules/extra/supto/api.php");
string xml = File.ReadAllText("ProductWithQuantityAndPrice.xml");

using (var webClient = new WebClient())
{
	var data = new NameValueCollection();
	data["action"] = "postxmlfeed";
	data["version"] = "1.0";
	data["username"] = "feeds6";
	data["secret"] = "W58.ikonV5NrVcZ";
	data["xml"] = xml;

	byte[] result = webClient.UploadValues(uri, "POST", data);

	Console.Write(Encoding.UTF8.GetString(result));
	Console.ReadLine();
}
getorders.php

Съдържание на файла:

Copy
<?php
	require_once(dirname(__FILE__) . '/../../../../include/miphpf/Init.php');
	require_once(dirname(__FILE__) . '/../../../../include/sc/Init.php');
	
	$url = 'http://xxxxx.com/modules/extra/supto/api.php';
	$contents = array(
		'action' => 'getorders',
		'username' => 'admin',
		'secret' => 'admin',
//		'orderIds' => '2,3',
			'afterOrderId' => 2,
		'version' => '1.0'
	);
	echo '<h1>Output from ' . $url . ':</h1>';
	echo '<pre>';
	echo scHttp::post($url, $contents);
	echo '</pre>';
?>
postxmlfeed.php

Съдържание на файла:

Copy
<?php
	require_once(dirname(__FILE__) . '/../../../../include/miphpf/Init.php');
	require_once(dirname(__FILE__) . '/../../../../include/sc/Init.php');
	
	$url = 'http://xxxxx.com/modules/extra/supto/api.php';
	$contents = array(
		'action' => 'postxmlfeed',
		'username' => 'admin',
		'secret' => 'admin',
		'xml' => file_get_contents(dirname(__FILE__) . '/post_test.xml'),
		'version' => '1.0'
	);
	echo '<h1>Output from ' . $url . ':</h1>';
	echo '<pre>';
	echo scHttp::post($url, $contents);
	echo '</pre>';
?>
ProductWithAttributes.xml

Съдържание на файла:

Copy
<Response xmlns="http://schemas.summercart.com/dealer/v1">
	<Store>
		<StoreName/>
		<StoreUrl>http://feeds6server.mi.v_buchinsky.earth.mi/</StoreUrl>
	</Store>
	<FeedInfo>
		<LanguageCode>
			<EN>English</EN>
			<BG>Български</BG>
		</LanguageCode>
		<CurrencyCode>USD</CurrencyCode>
		<ContentEncoding>UTF-8</ContentEncoding>
		<Generator>Summer Cart</Generator>
		<GenerationTimestamp>2013-09-24T15:12:38+03:00</GenerationTimestamp>
		<CategoriesSeparator>|</CategoriesSeparator>
	</FeedInfo>
	<Products>
		<Product>
			<ProductID>368</ProductID>
			<ProductCode>RSH206</ProductCode>
			<ProductName html="false">
				<EN>I Love Summer Time Flip-Flops</EN>
				<BG>Джапанки "Обичам лятото"</BG>
			</ProductName>
			<ProductDescription html="true">
				<EN>
					<![CDATA[ I Love Summer Time Flip-Flops ]]>
				</EN>
				<BG>
					<![CDATA[ Слънчеви джапанки "Обичам лятото" ]]>
				</BG>
			</ProductDescription>
			<ProductQuantity>250</ProductQuantity>
			<ProductPrice currencycode="USD" listingprice="110.00"> 110.00 </ProductPrice>
			<ProductWeight units="kgs">0.500</ProductWeight>
			<ProductCreatedTimestamp> 2013-07-25T17:11:48+03:00 </ProductCreatedTimestamp>
			<Category>
				<CategoryBranch>
					<EN>Women|Flip Flops</EN>
					<BG>Жени|Чехли</BG>
				</CategoryBranch>
			</Category>
			<ProductClassID>11</ProductClassID>
			<ProductClassName>
				<EN>Shoes Women</EN>
				<BG>Обувки жени</BG>
			</ProductClassName>
			<ProductAttributeValues>
				<ProductAttributeValue>
					<AttributeCode>thickness_1</AttributeCode>
					<ProductAttributeValueText>10</ProductAttributeValueText>
				</ProductAttributeValue>
			</ProductAttributeValues>
			<ProductDistributorPrice currencycode="USD"> 110.00 </ProductDistributorPrice>
			<ProductIsActive>yes</ProductIsActive>
		</Product>
	</Products>
	<Attributes>
		<Attribute>
			<AttributeCode>thickness_1</AttributeCode>
			<AttributeName>
				<EN>thickness</EN>
				<BG>Дебелина на подметката</BG>
			</AttributeName>
			<AttributeUnit>
				<EN>mm</EN>
				<BG>mm</BG>
			</AttributeUnit>
			<AttributeType>text</AttributeType>
			<AttributeValidator>number</AttributeValidator>
			<AttributeApplyToAllProducts>false</AttributeApplyToAllProducts>
			<AttributeShowAfterDescription>true</AttributeShowAfterDescription>
			<AttributeShowInTab>false</AttributeShowInTab>
			<AttributeIsSearchable>true</AttributeIsSearchable>
			<AttributeIsComparable>true</AttributeIsComparable>
			<AttributeIsFilterable>true</AttributeIsFilterable>
			<AttributeFilterWidget>drilldown_intervals</AttributeFilterWidget>
			<AttributeFilterWidgetHideIrrelevant> false </AttributeFilterWidgetHideIrrelevant>
			<AttributeFilterWidgetShowCounts> false </AttributeFilterWidgetShowCounts>
		</Attribute>
	</Attributes>
	<ProductClasses>
		<ProductClass>
			<ProductClassID>1</ProductClassID>
			<ProductClassName>
				<EN>Flip-flops</EN>
				<BG>Джапанки</BG>
			</ProductClassName>
			<Attributes>
				<AttributeCode>thickness_1</AttributeCode>
			</Attributes>
		</ProductClass>
	</ProductClasses>
</Response>
ProductWithOptions.xml

Съдържание на файла:

Copy
<Response xmlns="http://schemas.summercart.com/dealer/v1">
	<Store>
		<StoreName/>
		<StoreUrl>http://feeds6server.mi.v_buchinsky.earth.mi/</StoreUrl>
	</Store>
	<FeedInfo>
		<LanguageCode>
			<EN>English</EN>
			<BG>Български</BG>
		</LanguageCode>
		<CurrencyCode>USD</CurrencyCode>
		<ContentEncoding>UTF-8</ContentEncoding>
		<Generator>Summer Cart</Generator>
		<GenerationTimestamp>2013-09-24T15:12:38+03:00</GenerationTimestamp>
		<CategoriesSeparator>|</CategoriesSeparator>
	</FeedInfo>
	<OptionGroups>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>2</GlobalOptionGroupID>
			<OptionGroupName>
				<EN>Shoe Size</EN>
				<BG>Размер на обувки</BG>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>41</EN>
					<BG>41</BG>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>42</EN>
					<BG>42</BG>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>5</GlobalOptionGroupID>
			<OptionGroupCode>option5</OptionGroupCode>
			<OptionGroupName>
				<EN>Color</EN>
				<BG>Цвят</BG>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>Green</EN>
					<BG>Зелен</BG>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Blue</EN>
					<BG>Синьо</BG>
				</OptionName>
			</Option>
		</OptionGroup>
	</OptionGroups>
	<Products>
		<Product>
			<ProductCode>RSH206</ProductCode>
			<ProductQuantity>123</ProductQuantity>
			<ProductPrice currencycode="USD" listingprice="120.00"> 110.00 </ProductPrice>
			<ProductDistributorPrice currencycode="USD"> 105.00 </ProductDistributorPrice>
			<Category>
				<CategoryBranch>
					<EN>Women|Flip Flops</EN>
					<BG>Жени|Чехли</BG>
				</CategoryBranch>
			</Category>
			<ProductVariants>
				<ProductVariant>
					<ProductVariantID>2372</ProductVariantID>
					<ProductVariantCode>RSH206-1</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantWeight units="kgs">0.500</ProductVariantWeight>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>36</EN>
								<BG>36</BG>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
			</ProductVariants>
		</Product>
	</Products>
</Response>
ProductWithQuantityAndPrice.xml

Съдържание на файла:

Copy
<Response xmlns="http://schemas.summercart.com/dealer/v1">
	<Store>
		<StoreName/>
		<StoreUrl>http://feeds6server.mi.v_buchinsky.earth.mi/</StoreUrl>
	</Store>
	<FeedInfo>
		<LanguageCode>
			<EN>English</EN>
			<BG>Български</BG>
		</LanguageCode>
		<CurrencyCode>USD</CurrencyCode>
		<ContentEncoding>UTF-8</ContentEncoding>
		<Generator>Summer Cart</Generator>
		<GenerationTimestamp>2013-09-24T15:12:38+03:00</GenerationTimestamp>
		<CategoriesSeparator>|</CategoriesSeparator>
	</FeedInfo>
	<Products>
		<Product>
			<ProductCode>RSH206</ProductCode>
			<ProductQuantity>100</ProductQuantity>
			<ProductPrice currencycode="USD" listingprice="120.00"> 110.00 </ProductPrice>
			<ProductDistributorPrice currencycode="USD"> 105.00 </ProductDistributorPrice>
			<Category>
				<CategoryBranch>
					<EN>Women|Flip Flops</EN>
					<BG>Жени|Чехли</BG>
				</CategoryBranch>
			</Category>
		</Product>
	</Products>
</Response>
Store.xml

Съдържание на файла:

Copy
<Response xmlns="http://schemas.summercart.com/dealer/v1">
	<Store>
		<StoreName/>
		<StoreUrl>http://feeds6server.mi.v_buchinsky.earth.mi/</StoreUrl>
	</Store>
	<FeedInfo>
		<LanguageCode>
			<EN>English</EN>
			<BG>Български</BG>
			<TR>Türkçe</TR>
		</LanguageCode>
		<CurrencyCode>USD</CurrencyCode>
		<ContentEncoding>UTF-8</ContentEncoding>
		<Generator>Summer Cart</Generator>
		<GenerationTimestamp>2013-09-24T15:12:38+03:00</GenerationTimestamp>
		<CategoriesSeparator>|</CategoriesSeparator>
	</FeedInfo>
	<OptionGroups>
		<OptionGroup type="priceModifier">
			<GlobalOptionGroupID>1</GlobalOptionGroupID>
			<OptionGroupCode>option1</OptionGroupCode>
			<OptionGroupName>
				<EN>Nikon D40 Lens</EN>
				<BG>Nikon D40 Лещи</BG>
				<TR>Nikon D40 Lens</TR>
			</OptionGroupName>
			<Option modificationType="amount" modificationAmount="-100.00" currencycode="USD">
				<OptionName>
					<EN>with 18-55mm lens</EN>
					<BG>с 18-55mm лещи</BG>
					<TR>18-55mm zoom lens ile</TR>
				</OptionName>
			</Option>
			<Option modificationType="amount" modificationAmount="-20.00" currencycode="USD">
				<OptionName>
					<EN>with 18-135mm lens</EN>
					<BG>с 18-135mm лещи</BG>
					<TR>18-135mm zoom lens</TR>
				</OptionName>
			</Option>
			<Option modificationType="amount" modificationAmount="10.00" currencycode="USD">
				<OptionName>
					<EN>with 18-55mm and 55-200mm lens</EN>
					<BG>с 18-55mm и 55-200mm лещи</BG>
					<TR>18-55mm ve 55-200mm zoom lens</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>2</GlobalOptionGroupID>
			<OptionGroupCode>shoesize</OptionGroupCode>
			<OptionGroupName>
				<EN>Shoe Size</EN>
				<BG>Размер на обувки</BG>
				<TR>Ayakkabı Bedenleri</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>41</EN>
					<BG>41</BG>
					<TR>41</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>42</EN>
					<BG>42</BG>
					<TR>42</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>43</EN>
					<BG>43</BG>
					<TR>43</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>44</EN>
					<BG>44</BG>
					<TR>44</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>45</EN>
					<BG>45</BG>
					<TR>45</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>36</EN>
					<BG>36</BG>
					<TR>36</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>37</EN>
					<BG>37</BG>
					<TR>37</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>38</EN>
					<BG>38</BG>
					<TR>38</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>39</EN>
					<BG>39</BG>
					<TR>39</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>40</EN>
					<BG>40</BG>
					<TR>40</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>3</GlobalOptionGroupID>
			<OptionGroupCode>option3</OptionGroupCode>
			<OptionGroupName>
				<EN>Clothing Size</EN>
				<BG>Размер дреха</BG>
				<TR>Beden</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>XS</EN>
					<BG>XS</BG>
					<TR>XS</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>S</EN>
					<BG>S</BG>
					<TR>S</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>M</EN>
					<BG>M</BG>
					<TR>M</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>L</EN>
					<BG>L</BG>
					<TR>L</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>XL</EN>
					<BG>XL</BG>
					<TR>XL</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>4</GlobalOptionGroupID>
			<OptionGroupCode>option4</OptionGroupCode>
			<OptionGroupName>
				<EN>XXXSport Shoes Size</EN>
				<BG>XXXXНомер спортни обувки</BG>
				<TR>XXXXNumara spor ayakkabı</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>38</EN>
					<BG>38</BG>
					<TR>38</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>39</EN>
					<BG>39</BG>
					<TR>39</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>40</EN>
					<BG>40</BG>
					<TR>40</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>5</GlobalOptionGroupID>
			<OptionGroupCode>option5</OptionGroupCode>
			<OptionGroupName>
				<EN>Color</EN>
				<BG>Цвят</BG>
				<TR>Renkler</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>Green</EN>
					<BG>Зелен</BG>
					<TR>Yeşil</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Blue</EN>
					<BG>Синьо</BG>
					<TR>Mavi</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Red</EN>
					<BG>Червено</BG>
					<TR>Kırmızı</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Yellow</EN>
					<BG>Жълто</BG>
					<TR>Sarı</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Golden</EN>
					<BG>Златист</BG>
					<TR>Altın</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Silver</EN>
					<BG>Сребрист</BG>
					<TR>Gümüş</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Black</EN>
					<BG>Черен</BG>
					<TR>Siyah</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Pink</EN>
					<BG>Розов</BG>
					<TR>Pembe</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>White</EN>
					<BG>Бял</BG>
					<TR>Beyaz</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Beige</EN>
					<BG>Бежов</BG>
					<TR>Bej</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Aquamarine</EN>
					<BG>Аквамарин</BG>
					<TR>Akuamarin</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Coral</EN>
					<BG>Корал</BG>
					<TR>Mercan</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Fuchsia</EN>
					<BG>Фуксия</BG>
					<TR>Küpe Çiçeği</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Baby Pink</EN>
					<BG>Бебешко розово</BG>
					<TR>Bebek pembesi</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Violet</EN>
					<BG>Виолетово</BG>
					<TR>Mor</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>9</GlobalOptionGroupID>
			<OptionGroupCode>option9</OptionGroupCode>
			<OptionGroupName>
				<EN>XXXMen Shirt Size</EN>
				<BG>XXXРазмер мъжки ризи</BG>
				<TR>XXXErkek gömlek ölçüsü</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>XS</EN>
					<BG>XS</BG>
					<TR>XS</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>S</EN>
					<BG>S</BG>
					<TR>S</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>M</EN>
					<BG>M</BG>
					<TR>M</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>L</EN>
					<BG>L</BG>
					<TR>L</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>XL</EN>
					<BG>XL</BG>
					<TR>XL</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>12</GlobalOptionGroupID>
			<OptionGroupCode>pattern</OptionGroupCode>
			<OptionGroupName>
				<EN>Pattern</EN>
				<BG>Десен</BG>
				<TR>Desen</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>cb1001</EN>
					<BG>cb1001</BG>
					<TR>cb1001</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>cb1002-1</EN>
					<BG>cb1002-1</BG>
					<TR>cb1002-1</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>cb1002-2</EN>
					<BG>cb1002-2</BG>
					<TR>cb1002-2</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>cb1002-3</EN>
					<BG>cb1002-3</BG>
					<TR>cb1002-3</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>cb1003-1</EN>
					<BG>cb1003-1</BG>
					<TR>cb1003-1</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>12</EN>
					<BG>12</BG>
					<TR>12</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>123</EN>
					<BG>123</BG>
					<TR>123</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>1234</EN>
					<BG>1234</BG>
					<TR>1234</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>13</EN>
					<BG>13</BG>
					<TR>13</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>15</EN>
					<BG>15</BG>
					<TR>15</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>14</EN>
					<BG>14</BG>
					<TR>14</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>16</EN>
					<BG>16</BG>
					<TR>16</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>17</EN>
					<BG>17</BG>
					<TR>17</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>8</EN>
					<BG>8</BG>
					<TR>8</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>5</EN>
					<BG>5</BG>
					<TR>5</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>6</EN>
					<BG>6</BG>
					<TR>6</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>7</EN>
					<BG>7</BG>
					<TR>7</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>9</EN>
					<BG>9</BG>
					<TR>9</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>4</EN>
					<BG>4</BG>
					<TR>4</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>3</EN>
					<BG>3</BG>
					<TR>3</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>1</EN>
					<BG>1</BG>
					<TR>1</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>2</EN>
					<BG>2</BG>
					<TR>2</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>10</EN>
					<BG>10</BG>
					<TR>10</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>20</EN>
					<BG>20</BG>
					<TR>20</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>21</EN>
					<BG>21</BG>
					<TR>21</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>22</EN>
					<BG>22</BG>
					<TR>22</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>23</EN>
					<BG>23</BG>
					<TR>23</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>24</EN>
					<BG>24</BG>
					<TR>24</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>25</EN>
					<BG>25</BG>
					<TR>25</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>26</EN>
					<BG>26</BG>
					<TR>26</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>27</EN>
					<BG>27</BG>
					<TR>27</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>28</EN>
					<BG>28</BG>
					<TR>28</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>29</EN>
					<BG>29</BG>
					<TR>29</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>30</EN>
					<BG>30</BG>
					<TR>30</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>35</EN>
					<BG>35</BG>
					<TR>35</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>36</EN>
					<BG>36</BG>
					<TR>36</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>37</EN>
					<BG>37</BG>
					<TR>37</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>99</EN>
					<BG>99</BG>
					<TR>99</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Turquoise</EN>
					<BG>Тюркоаз</BG>
					<TR>Turkuaz</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Pink Fusion</EN>
					<BG>Пинк Фюжън</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Milk and cinnamon </EN>
					<BG>Мляко с канела</BG>
					<TR>Tarçınlı süt</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Mint and milk</EN>
					<BG>Мента и мляко</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Sunset</EN>
					<BG>Залез</BG>
					<TR>Gün batımı</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Pink Sunrise</EN>
					<BG>Розов изгрев</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Fuchsia Splash</EN>
					<BG>Фуксия експлозия</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Lemon Fizz</EN>
					<BG>Лимонов физ</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Mint </EN>
					<BG>Мента</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Orange Mesh</EN>
					<BG>Портокалов </BG>
					<TR>Portokal</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Cocoa</EN>
					<BG>Кокос</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Cold Grey</EN>
					<BG>Студено сиво</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Red Velvet</EN>
					<BG>Червено кадифе</BG>
					<TR>Kırmızı kadife</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Night Sky</EN>
					<BG>Нощно небе</BG>
					<TR>Gece gökyüzü</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Orange Fusion</EN>
					<BG>Портокалов фюжън</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Black Diamond</EN>
					<BG>Черен Диамант </BG>
					<TR>Siyah Elmaz</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Ultramarine Violet</EN>
					<BG>Ултрамарин лилаво</BG>
					<TR/>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>White </EN>
					<BG>Бяло</BG>
					<TR>Beyaz</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Beige</EN>
					<BG>Бежoво</BG>
					<TR>Bej</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Warm Grey Light</EN>
					<BG>Топло сиво сияние</BG>
					<TR/>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>13</GlobalOptionGroupID>
			<OptionGroupCode>1212</OptionGroupCode>
			<OptionGroupName>
				<EN>Floor color</EN>
				<BG>Цвят на повърхност</BG>
				<TR>Floor color</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>white</EN>
					<BG>Светла</BG>
					<TR>Açık</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Dark</EN>
					<BG>Тъмна</BG>
					<TR>Kapalı</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="variant">
			<GlobalOptionGroupID>16</GlobalOptionGroupID>
			<OptionGroupCode>7897</OptionGroupCode>
			<OptionGroupName>
				<EN>Wheels color</EN>
				<BG>Цвят на Джанти</BG>
				<TR>Wheels color</TR>
			</OptionGroupName>
			<Option>
				<OptionName>
					<EN>Silver</EN>
					<BG>Сив</BG>
					<TR>Silver</TR>
				</OptionName>
			</Option>
			<Option>
				<OptionName>
					<EN>Black</EN>
					<BG>Черен</BG>
					<TR>Black</TR>
				</OptionName>
			</Option>
		</OptionGroup>
		<OptionGroup type="priceModifier">
			<GlobalOptionGroupID>17</GlobalOptionGroupID>
			<OptionGroupCode>53</OptionGroupCode>
			<OptionGroupName>
				<EN>Wheels Size</EN>
				<BG>Размер на джанти</BG>
				<TR>Wheels Size</TR>
			</OptionGroupName>
			<Option modificationType="amount" modificationAmount="400.00" currencycode="USD">
				<OptionName>
					<EN>19</EN>
					<BG>19 </BG>
					<TR>19</TR>
				</OptionName>
			</Option>
			<Option modificationType="amount" modificationAmount="359.00" currencycode="USD">
				<OptionName>
					<EN>17</EN>
					<BG>17</BG>
					<TR>17</TR>
				</OptionName>
			</Option>
			<Option modificationType="amount" modificationAmount="287.00" currencycode="USD">
				<OptionName>
					<EN>16</EN>
					<BG>16</BG>
					<TR>16</TR>
				</OptionName>
			</Option>
			<Option modificationType="amount" modificationAmount="220.00" currencycode="USD">
				<OptionName>
					<EN>15</EN>
					<BG>15</BG>
					<TR>15</TR>
				</OptionName>
			</Option>
			<Option modificationType="amount" modificationAmount="200.00" currencycode="USD">
				<OptionName>
					<EN>14</EN>
					<BG>14</BG>
					<TR>14</TR>
				</OptionName>
			</Option>
		</OptionGroup>
	</OptionGroups>
	<Products>
		<Product>
			<ProductID>368</ProductID>
			<ProductCode>RSH206</ProductCode>
			<ProductName html="false">
				<EN>I Love Summer Time Flip-Flops</EN>
				<BG>Джапанки "Обичам лятото"</BG>
				<TR>Terlik "Yazı seviyorum"</TR>
			</ProductName>
			<ProductDescription html="true">
				<EN>
					<![CDATA[ I Love Summer Time Flip-Flops ]]>
				</EN>
				<BG>
					<![CDATA[ Слънчеви джапанки "Обичам лятото" ]]>
				</BG>
				<TR>
					<![CDATA[ Yaz terliği "Yazı seviyorum" ]]>
				</TR>
			</ProductDescription>
			<ProductDetailedDescription html="true">
				<EN>
					<![CDATA[ Summer time loves you with this sexy flip flops in bright colours. Get ready to conquer the sands with this little miracle. A little jewel with embedded crystals finishes your glamorous beach look. Two different colours are available. ]]>
				</EN>
				<BG>
					<![CDATA[ Лятото ви обича с тези секси джапанки в ярки цветове. Пригответе се да завладеете плажа с това малко чудо! Малко бижу, инкрустирано с кристалчета, е завършекът на бляскававия ви вид. Предлагат се в два цветови варианта ]]>
				</BG>
				<TR>
					<![CDATA[ Bu parlak renkli ve seksi terlikler ile yaz sizi seviyor. Bu küçük mucize ile plajı fethetmeye için hazır olun! İki farklı renkte sunuluyor. ]]>
				</TR>
			</ProductDetailedDescription>
			<ProductQuantity>250</ProductQuantity>
			<ProductPrice currencycode="USD" listingprice="110.00">110.00 </ProductPrice>
			<ProductWeight units="kgs">0.500</ProductWeight>
			<ProductIsEgood>false</ProductIsEgood>
			<ProductUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductUrl>
			<ProductCreatedTimestamp>2013-07-25T17:11:48+03:00 </ProductCreatedTimestamp>
			<Category>
				<CategoryID>95</CategoryID>
				<CategoryName>
					<EN>Flip Flops</EN>
					<BG>Чехли</BG>
					<TR>Terlik</TR>
				</CategoryName>
				<CategoryBranch>
					<EN>Flip Flops</EN>
					<BG>Чехли</BG>
					<TR>Terlik</TR>
				</CategoryBranch>
			</Category>
			<BrandID/>
			<BrandName/>
			<ManufacturerID deprecated="deprecated"/>
			<ManufacturerName deprecated="deprecated"/>
			<RelatedProducts>
				<RelatedProduct>
					<ProductID>376</ProductID>
					<ProductCode>ll300syb</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>382</ProductID>
					<ProductCode>ll300cabo</ProductCode>
				</RelatedProduct>
			</RelatedProducts>
			<AdditionalCategories>
				<Category>
					<CategoryID>95</CategoryID>
					<CategoryParentID/>
					<CategoryName>
						<EN>Flip Flops</EN>
						<BG>Чехли</BG>
						<TR>Terlik</TR>
					</CategoryName>
					<CategoryDescription html="true">
						<EN/>
						<BG/>
						<TR/>
					</CategoryDescription>
					<CategoryBranch>
						<EN>Flip Flops</EN>
						<BG>Чехли</BG>
						<TR>Terlik</TR>
					</CategoryBranch>
					<CategorySort>103</CategorySort>
					<SEO>
						<Title>
							<EN/>
							<BG/>
							<TR/>
						</Title>
						<MetaKeywords>
							<EN/>
							<BG/>
							<TR/>
						</MetaKeywords>
						<MetaDescription>
							<EN/>
							<BG/>
							<TR/>
						</MetaDescription>
					</SEO>
					<CustomUrls/>
				</Category>
			</AdditionalCategories>
			<OptionGroups>
				<OptionGroup scope="global" refGlobalOptionGroupId="2"/>
				<OptionGroup scope="global" refGlobalOptionGroupId="5"/>
			</OptionGroups>
			<ProductVariants>
				<ProductVariant>
					<ProductVariantID>2372</ProductVariantID>
					<ProductVariantCode>RSH206-1</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>36</EN>
								<BG>36</BG>
								<TR>36</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2544</ProductVariantID>
					<ProductVariantCode>RSH206-2</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>37</EN>
								<BG>37</BG>
								<TR>37</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2545</ProductVariantID>
					<ProductVariantCode>RSH206-3</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>38</EN>
								<BG>38</BG>
								<TR>38</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2546</ProductVariantID>
					<ProductVariantCode>RSH206-4</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>39</EN>
								<BG>39</BG>
								<TR>39</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2547</ProductVariantID>
					<ProductVariantCode>RSH206-5</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>40</EN>
								<BG>40</BG>
								<TR>40</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2563</ProductVariantID>
					<ProductVariantCode>RSH206-6</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Red</EN>
								<BG>Червено</BG>
								<TR>Kırmızı</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>36</EN>
								<BG>36</BG>
								<TR>36</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2564</ProductVariantID>
					<ProductVariantCode>RSH206-7</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Red</EN>
								<BG>Червено</BG>
								<TR>Kırmızı</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>37</EN>
								<BG>37</BG>
								<TR>37</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2565</ProductVariantID>
					<ProductVariantCode>RSH206-8</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Red</EN>
								<BG>Червено</BG>
								<TR>Kırmızı</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>38</EN>
								<BG>38</BG>
								<TR>38</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2566</ProductVariantID>
					<ProductVariantCode>RSH206-9</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Red</EN>
								<BG>Червено</BG>
								<TR>Kırmızı</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>39</EN>
								<BG>39</BG>
								<TR>39</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>2567</ProductVariantID>
					<ProductVariantCode>RSH206-10</ProductVariantCode>
					<ProductVariantQuantity>25</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="110.00">110.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=368 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Red</EN>
								<BG>Червено</BG>
								<TR>Kırmızı</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>40</EN>
								<BG>40</BG>
								<TR>40</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
			</ProductVariants>
			<ProductClassID>11</ProductClassID>
			<ProductClassName>
				<EN>Shoes Women</EN>
				<BG>Обувки жени</BG>
				<TR>Kadın ayakkabı</TR>
			</ProductClassName>
			<ProductDistributorPrice currencycode="USD">110.00 </ProductDistributorPrice>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
			<ProductIsActive>yes</ProductIsActive>
		</Product>
		<Product>
			<ProductID>369</ProductID>
			<ProductCode>RSH205</ProductCode>
			<ProductName html="false">
				<EN>Little Mermaid Flip-Flops</EN>
				<BG>Джапанки "Малката Русалка"</BG>
				<TR>Джапанки "Küçük deniz kızı"</TR>
			</ProductName>
			<ProductDescription html="true">
				<EN>
					<![CDATA[ Sweet Little Mermaid Flip-Flops ]]>
				</EN>
				<BG>
					<![CDATA[ Сладки и игриви джапанки за истински русалки ]]>
				</BG>
				<TR>
					<![CDATA[ Gerçek deniz kızları için tatlı ve eğlenceli sandalet ]]>
				</TR>
			</ProductDescription>
			<ProductDetailedDescription html="true">
				<EN>
					<![CDATA[ Sweet and playful Little Mermaid Flip-Flops. Sunny and multicoloured with a little jewel element embedded with little crystals. ]]>
				</EN>
				<BG>
					<![CDATA[ Сладки и игриви джапанки за истински русалки. Слънчеви и многоцветни с акцент малко бижу, инкрустирано с нежни кристалчета. ]]>
				</BG>
				<TR>
					<![CDATA[ Gerçek deniz kızları için tatlı ve eğlenceli sandalet. Güneşli ve renkli, hassas kristaller ile işlenmiş. ]]>
				</TR>
			</ProductDetailedDescription>
			<ProductQuantity>41</ProductQuantity>
			<ProductPrice currencycode="USD" listingprice="80.00">80.00 </ProductPrice>
			<ProductWeight units="kgs">0.500</ProductWeight>
			<ProductIsEgood>false</ProductIsEgood>
			<ProductUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=369 </ProductUrl>
			<ProductCreatedTimestamp>2013-07-25T17:11:53+03:00 </ProductCreatedTimestamp>
			<Category>
				<CategoryID>95</CategoryID>
				<CategoryName>
					<EN>Flip Flops</EN>
					<BG>Чехли</BG>
					<TR>Terlik</TR>
				</CategoryName>
				<CategoryBranch>
					<EN>Flip Flops</EN>
					<BG>Чехли</BG>
					<TR>Terlik</TR>
				</CategoryBranch>
			</Category>
			<BrandID>52</BrandID>
			<BrandName>
				<EN>Antonella Verducci</EN>
				<BG>Antonella Verducci</BG>
				<TR/>
			</BrandName>
			<ManufacturerID deprecated="deprecated">52</ManufacturerID>
			<ManufacturerName deprecated="deprecated">
				<EN>Antonella Verducci</EN>
				<BG>Antonella Verducci</BG>
				<TR/>
			</ManufacturerName>
			<RelatedProducts>
				<RelatedProduct>
					<ProductID>371</ProductID>
					<ProductCode>ll300tabo</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>372</ProductID>
					<ProductCode>ll300taca</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>374</ProductID>
					<ProductCode>ll300ta</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>377</ProductID>
					<ProductCode>ll300sy</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>378</ProductID>
					<ProductCode>ll300stb</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>379</ProductID>
					<ProductCode>ll300po</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>380</ProductID>
					<ProductCode>ll300ma</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>381</ProductID>
					<ProductCode>ll300ha</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>383</ProductID>
					<ProductCode>ll300cab</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>384</ProductID>
					<ProductCode>ll300ca</ProductCode>
				</RelatedProduct>
			</RelatedProducts>
			<AdditionalCategories>
				<Category>
					<CategoryID>95</CategoryID>
					<CategoryParentID/>
					<CategoryName>
						<EN>Flip Flops</EN>
						<BG>Чехли</BG>
						<TR>Terlik</TR>
					</CategoryName>
					<CategoryDescription html="true">
						<EN/>
						<BG/>
						<TR/>
					</CategoryDescription>
					<CategoryBranch>
						<EN>Flip Flops</EN>
						<BG>Чехли</BG>
						<TR>Terlik</TR>
					</CategoryBranch>
					<CategorySort>103</CategorySort>
					<SEO>
						<Title>
							<EN/>
							<BG/>
							<TR/>
						</Title>
						<MetaKeywords>
							<EN/>
							<BG/>
							<TR/>
						</MetaKeywords>
						<MetaDescription>
							<EN/>
							<BG/>
							<TR/>
						</MetaDescription>
					</SEO>
					<CustomUrls/>
				</Category>
			</AdditionalCategories>
			<OptionGroups>
				<OptionGroup scope="global" refGlobalOptionGroupId="2"/>
				<OptionGroup scope="global" refGlobalOptionGroupId="5"/>
			</OptionGroups>
			<ProductVariants>
				<ProductVariant>
					<ProductVariantID>5688</ProductVariantID>
					<ProductVariantCode>RSH205-1</ProductVariantCode>
					<ProductVariantQuantity>5</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="80.00">80.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=369 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>36</EN>
								<BG>36</BG>
								<TR>36</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>5689</ProductVariantID>
					<ProductVariantCode>RSH205-2</ProductVariantCode>
					<ProductVariantQuantity>7</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="80.00">80.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=369 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>37</EN>
								<BG>37</BG>
								<TR>37</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>5690</ProductVariantID>
					<ProductVariantCode>RSH205-3</ProductVariantCode>
					<ProductVariantQuantity>8</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="80.00">80.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=369 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>38</EN>
								<BG>38</BG>
								<TR>38</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>5691</ProductVariantID>
					<ProductVariantCode>RSH205-4</ProductVariantCode>
					<ProductVariantQuantity>6</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="80.00">80.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=369 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>39</EN>
								<BG>39</BG>
								<TR>39</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>5692</ProductVariantID>
					<ProductVariantCode>RSH205-5</ProductVariantCode>
					<ProductVariantQuantity>15</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="80.00">80.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=369 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>40</EN>
								<BG>40</BG>
								<TR>40</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
			</ProductVariants>
			<ProductClassID>11</ProductClassID>
			<ProductClassName>
				<EN>Shoes Women</EN>
				<BG>Обувки жени</BG>
				<TR>Kadın ayakkabı</TR>
			</ProductClassName>
			<ProductDistributorPrice currencycode="USD">80.00 </ProductDistributorPrice>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
			<ProductIsActive>yes</ProductIsActive>
		</Product>
		<Product>
			<ProductID>370</ProductID>
			<ProductCode>RSH204</ProductCode>
			<ProductName html="false">
				<EN>Flip-Flops Golden Sea</EN>
				<BG>Джапанки "Златисти вълни"</BG>
				<TR>Terlik "altın dalga"</TR>
			</ProductName>
			<ProductDescription html="true">
				<EN>
					<![CDATA[ Sunny Flip-Flops Golden Sea ]]>
				</EN>
				<BG>
					<![CDATA[ Слънчеви джапанки "Златисти вълни" ]]>
				</BG>
				<TR>
					<![CDATA[ Güneş terliği "altın dalga". ]]>
				</TR>
			</ProductDescription>
			<ProductDetailedDescription html="true">
				<EN>
					<![CDATA[ Sunny Flip Flops Golden Sea for unforgettable moments on the beach. Chic and comfortable you can choose from two different colour options - blue and gold or white and gold. ]]>
				</EN>
				<BG>
					<![CDATA[ Слънчеви джапанки "Златисти вълни" за незабравими моменти на плажа. Удобни и шик, можете да избирате от два цветови варианта - синьо и златисто или бяло и златисто. ]]>
				</BG>
				<TR>
					<![CDATA[ Plajda unutulmaz anlar için altın dalga" terlikler. Terlikler rahat ve şıktır. İki renkten birini seçebilirsiniz - mavi ve altın ya da beyaz ve altın. ]]>
				</TR>
			</ProductDetailedDescription>
			<ProductQuantity>18</ProductQuantity>
			<ProductPrice currencycode="USD" listingprice="50.00">50.00 </ProductPrice>
			<ProductWeight units="kgs">0.500</ProductWeight>
			<ProductIsEgood>false</ProductIsEgood>
			<ProductUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductUrl>
			<ProductCreatedTimestamp>2013-07-25T17:11:56+03:00 </ProductCreatedTimestamp>
			<Category>
				<CategoryID>95</CategoryID>
				<CategoryName>
					<EN>Flip Flops</EN>
					<BG>Чехли</BG>
					<TR>Terlik</TR>
				</CategoryName>
				<CategoryBranch>
					<EN>Flip Flops</EN>
					<BG>Чехли</BG>
					<TR>Terlik</TR>
				</CategoryBranch>
			</Category>
			<BrandID>52</BrandID>
			<BrandName>
				<EN>Antonella Verducci</EN>
				<BG>Antonella Verducci</BG>
				<TR/>
			</BrandName>
			<ManufacturerID deprecated="deprecated">52</ManufacturerID>
			<ManufacturerName deprecated="deprecated">
				<EN>Antonella Verducci</EN>
				<BG>Antonella Verducci</BG>
				<TR/>
			</ManufacturerName>
			<RelatedProducts>
				<RelatedProduct>
					<ProductID>377</ProductID>
					<ProductCode>ll300sy</ProductCode>
				</RelatedProduct>
				<RelatedProduct>
					<ProductID>382</ProductID>
					<ProductCode>ll300cabo</ProductCode>
				</RelatedProduct>
			</RelatedProducts>
			<AdditionalCategories>
				<Category>
					<CategoryID>95</CategoryID>
					<CategoryParentID/>
					<CategoryName>
						<EN>Flip Flops</EN>
						<BG>Чехли</BG>
						<TR>Terlik</TR>
					</CategoryName>
					<CategoryDescription html="true">
						<EN/>
						<BG/>
						<TR/>
					</CategoryDescription>
					<CategoryBranch>
						<EN>Flip Flops</EN>
						<BG>Чехли</BG>
						<TR>Terlik</TR>
					</CategoryBranch>
					<CategorySort>103</CategorySort>
					<SEO>
						<Title>
							<EN/>
							<BG/>
							<TR/>
						</Title>
						<MetaKeywords>
							<EN/>
							<BG/>
							<TR/>
						</MetaKeywords>
						<MetaDescription>
							<EN/>
							<BG/>
							<TR/>
						</MetaDescription>
					</SEO>
					<CustomUrls/>
				</Category>
			</AdditionalCategories>
			<OptionGroups>
				<OptionGroup scope="global" refGlobalOptionGroupId="2"/>
				<OptionGroup scope="global" refGlobalOptionGroupId="5"/>
			</OptionGroups>
			<ProductVariants>
				<ProductVariant>
					<ProductVariantID>3084</ProductVariantID>
					<ProductVariantCode>RSH204-1</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="50.00">50.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>36</EN>
								<BG>36</BG>
								<TR>36</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3086</ProductVariantID>
					<ProductVariantCode>RSH204-3</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>37</EN>
								<BG>37</BG>
								<TR>37</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3088</ProductVariantID>
					<ProductVariantCode>RSH204-5</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>38</EN>
								<BG>38</BG>
								<TR>38</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3090</ProductVariantID>
					<ProductVariantCode>RSH204-7</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>39</EN>
								<BG>39</BG>
								<TR>39</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3092</ProductVariantID>
					<ProductVariantCode>RSH204-9</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>Blue</EN>
								<BG>Синьо</BG>
								<TR>Mavi</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>40</EN>
								<BG>40</BG>
								<TR>40</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3094</ProductVariantID>
					<ProductVariantCode>RSH204-6</ProductVariantCode>
					<ProductVariantQuantity>0</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>36</EN>
								<BG>36</BG>
								<TR>36</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3095</ProductVariantID>
					<ProductVariantCode>RSH204-8</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>37</EN>
								<BG>37</BG>
								<TR>37</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3096</ProductVariantID>
					<ProductVariantCode>RSH204-10</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="50.00">50.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>38</EN>
								<BG>38</BG>
								<TR>38</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3097</ProductVariantID>
					<ProductVariantCode>RSH204-11</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>39</EN>
								<BG>39</BG>
								<TR>39</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
				<ProductVariant>
					<ProductVariantID>3098</ProductVariantID>
					<ProductVariantCode>RSH204-12</ProductVariantCode>
					<ProductVariantQuantity>2</ProductVariantQuantity>
					<ProductVariantPrice currencycode="USD" listingprice="100.00">100.00</ProductVariantPrice>
					<ProductVariantBonusPointsPrice/>
					<ProductVariantWeight units="kgs">0.500 </ProductVariantWeight>
					<ProductVariantUrl>http://feeds6server.mi.v_buchinsky.earth.mi/product.php?ProductID=370 </ProductVariantUrl>
					<ProductVariantImage>
						<ProductVariantBoxImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_box_image.png </ProductVariantBoxImage>
						<ProductVariantThumbnailImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_thumb.png </ProductVariantThumbnailImage>
						<ProductVariantStandardImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantStandardImage>
						<ProductVariantLargeImage>http://feeds6server.mi.v_buchinsky.earth.mi/skins/skeleton/customer/images/image-not-available/default_product_image.png </ProductVariantLargeImage>
					</ProductVariantImage>
					<ProductVariantOptions>
						<Option scope="global" refGlobalOptionGroupId="2">
							<OptionName>
								<EN>40</EN>
								<BG>40</BG>
								<TR>40</TR>
							</OptionName>
						</Option>
						<Option scope="global" refGlobalOptionGroupId="5">
							<OptionName>
								<EN>White</EN>
								<BG>Бял</BG>
								<TR>Beyaz</TR>
							</OptionName>
						</Option>
					</ProductVariantOptions>
				</ProductVariant>
			</ProductVariants>
			<ProductClassID>11</ProductClassID>
			<ProductClassName>
				<EN>Shoes Women</EN>
				<BG>Обувки жени</BG>
				<TR>Kadın ayakkabı</TR>
			</ProductClassName>
			<ProductDistributorPrice currencycode="USD">50.00 </ProductDistributorPrice>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
			<ProductIsActive>yes</ProductIsActive>
		</Product>
	</Products>
	<Attributes>
		<Attribute>
			<AttributeCode>thickness_1</AttributeCode>
			<AttributeName>
				<EN>thickness</EN>
				<BG>Дебелина </BG>
				<TR>Kalınlık</TR>
			</AttributeName>
			<AttributeUnit>
				<EN>mm</EN>
				<BG>mm</BG>
				<TR>mm</TR>
			</AttributeUnit>
			<AttributeType>text</AttributeType>
			<AttributeValidator>number</AttributeValidator>
			<AttributeApplyToAllProducts>false</AttributeApplyToAllProducts>
			<AttributeShowAfterDescription>true</AttributeShowAfterDescription>
			<AttributeShowInTab>false</AttributeShowInTab>
			<AttributeIsSearchable>true</AttributeIsSearchable>
			<AttributeIsComparable>true</AttributeIsComparable>
			<AttributeIsFilterable>true</AttributeIsFilterable>
			<AttributeFilterWidget>drilldown_intervals</AttributeFilterWidget>
			<AttributeFilterWidgetHideIrrelevant>false </AttributeFilterWidgetHideIrrelevant>
			<AttributeFilterWidgetShowCounts>false </AttributeFilterWidgetShowCounts>
		</Attribute>
	</Attributes>
	<ProductClasses>
		<ProductClass>
			<ProductClassID>1</ProductClassID>
			<ProductClassName>
				<EN>Notebooks</EN>
				<BG>Преносими компютри</BG>
				<TR>Notebooks</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>2</ProductClassID>
			<ProductClassName>
				<EN>Desktop PCs</EN>
				<BG>Настолни компютри</BG>
				<TR>Desktop PCs</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>3</ProductClassID>
			<ProductClassName>
				<EN>Books</EN>
				<BG>Книги</BG>
				<TR>Kitaplar</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>4</ProductClassID>
			<ProductClassName>
				<EN>E-books</EN>
				<BG>Електронни книги</BG>
				<TR>E-kitaplar</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>5</ProductClassID>
			<ProductClassName>
				<EN>Clothes</EN>
				<BG>Дрехи</BG>
				<TR>Giyisiler</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>6</ProductClassID>
			<ProductClassName>
				<EN>Sneakers</EN>
				<BG>Кецове</BG>
				<TR>Spor ayakkabı</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>7</ProductClassID>
			<ProductClassName>
				<EN>Bags</EN>
				<BG>Чанти</BG>
				<TR>Çantalar</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>8</ProductClassID>
			<ProductClassName>
				<EN>Cosmetics</EN>
				<BG>Козметика</BG>
				<TR>Bakım ürünleri</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>9</ProductClassID>
			<ProductClassName>
				<EN>Watches</EN>
				<BG>Часовници</BG>
				<TR>Saatler</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>11</ProductClassID>
			<ProductClassName>
				<EN>Shoes Women</EN>
				<BG>Обувки жени</BG>
				<TR>Kadın ayakkabı</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>12</ProductClassID>
			<ProductClassName>
				<EN>Swim Suits</EN>
				<BG>Бански</BG>
				<TR>Mayolar</TR>
			</ProductClassName>
		</ProductClass>
		<ProductClass>
			<ProductClassID>13</ProductClassID>
			<ProductClassName>
				<EN>floor</EN>
				<BG>Настилки</BG>
				<TR>Döşeme</TR>
			</ProductClassName>
			<Attributes>
				<AttributeCode>thickness_1</AttributeCode>
			</Attributes>
		</ProductClass>
		<ProductClass>
			<ProductClassID>14</ProductClassID>
			<ProductClassName>
				<EN>Earrings</EN>
				<BG>Обеци</BG>
				<TR>Earrings</TR>
			</ProductClassName>
		</ProductClass>
	</ProductClasses>
	<Brands>
		<Brand>
			<BrandID>52</BrandID>
			<BrandWebsite>http://summercart.com</BrandWebsite>
			<BrandName>
				<EN>Antonella Verducci</EN>
				<BG>Antonella Verducci</BG>
			</BrandName>
			<BrandDescription>
				<EN>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vitae ligula purus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur mattis, tellus sed vestibulum pellentesque, turpis enim luctus felis, eget dignissim neque erat et arcu.</EN>
				<BG>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vitae ligula purus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur mattis, tellus sed vestibulum pellentesque, turpis enim luctus felis, eget dignissim neque erat et arcu.</BG>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>53</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN>BEACH</EN>
				<BG/>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>61</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN>Continental</EN>
				<BG>Continental</BG>
				<TR>Continental</TR>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
				<TR/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>62</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN>Goodyear</EN>
				<BG>Goodyear</BG>
				<TR>Goodyear</TR>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
				<TR/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>63</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN>Michelin </EN>
				<BG>Michelin </BG>
				<TR>Michelin </TR>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
				<TR/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>64</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN> Dunlop</EN>
				<BG> Dunlop</BG>
				<TR> Dunlop</TR>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
				<TR/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>65</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN>Yokohama </EN>
				<BG>Yokohama </BG>
				<TR>Yokohama </TR>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
				<TR/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
		<Brand>
			<BrandID>71</BrandID>
			<BrandWebsite/>
			<BrandName>
				<EN>Shark</EN>
				<BG>Shark</BG>
				<TR>Shark</TR>
			</BrandName>
			<BrandDescription>
				<EN/>
				<BG/>
				<TR/>
			</BrandDescription>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
			</SEO>
			<CustomUrls/>
		</Brand>
	</Brands>
	<Categories>
		<Category>
			<CategoryID>90</CategoryID>
			<CategoryParentID/>
			<CategoryName>
				<EN>Swim Suits</EN>
				<BG>Бански</BG>
				<TR>Mayo ve Bikini</TR>
			</CategoryName>
			<CategoryDescription html="true">
				<EN/>
				<BG/>
				<TR/>
			</CategoryDescription>
			<CategoryBranch>
				<EN>Swim Suits</EN>
				<BG>Бански</BG>
				<TR>Mayo ve Bikini</TR>
			</CategoryBranch>
			<CategorySort>95</CategorySort>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
		</Category>
		<Category>
			<CategoryID>95</CategoryID>
			<CategoryParentID/>
			<CategoryName>
				<EN>Flip Flops</EN>
				<BG>Чехли</BG>
				<TR>Terlik</TR>
			</CategoryName>
			<CategoryDescription html="true">
				<EN/>
				<BG/>
				<TR/>
			</CategoryDescription>
			<CategoryBranch>
				<EN>Flip Flops</EN>
				<BG>Чехли</BG>
				<TR>Terlik</TR>
			</CategoryBranch>
			<CategorySort>103</CategorySort>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
		</Category>
		<Category>
			<CategoryID>98</CategoryID>
			<CategoryParentID/>
			<CategoryName>
				<EN>Smartphones</EN>
				<BG>Смартфони</BG>
				<TR>Smart Telefon</TR>
			</CategoryName>
			<CategoryDescription html="true">
				<EN/>
				<BG/>
				<TR/>
			</CategoryDescription>
			<CategoryBranch>
				<EN>Smartphones</EN>
				<BG>Смартфони</BG>
				<TR>Smart Telefon</TR>
			</CategoryBranch>
			<CategorySort>101</CategorySort>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
		</Category>
		<Category>
			<CategoryID>120</CategoryID>
			<CategoryParentID/>
			<CategoryName>
				<EN>Tires</EN>
				<BG>Гуми</BG>
				<TR>Lastikler</TR>
			</CategoryName>
			<CategoryDescription html="true">
				<EN/>
				<BG/>
				<TR/>
			</CategoryDescription>
			<CategoryBranch>
				<EN>Tires</EN>
				<BG>Гуми</BG>
				<TR>Lastikler</TR>
			</CategoryBranch>
			<CategorySort>97</CategorySort>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
		</Category>
		<Category>
			<CategoryID>176</CategoryID>
			<CategoryParentID/>
			<CategoryName>
				<EN>Motorcycle Helmets</EN>
				<BG>Каски за мотоциклети</BG>
				<TR>Motosiklet Kaskları</TR>
			</CategoryName>
			<CategoryDescription html="true">
				<EN/>
				<BG/>
				<TR/>
			</CategoryDescription>
			<CategoryBranch>
				<EN>Motorcycle Helmets</EN>
				<BG>Каски за мотоциклети</BG>
				<TR>Motosiklet Kaskları</TR>
			</CategoryBranch>
			<CategorySort>99</CategorySort>
			<SEO>
				<Title>
					<EN/>
					<BG/>
					<TR/>
				</Title>
				<MetaKeywords>
					<EN/>
					<BG/>
					<TR/>
				</MetaKeywords>
				<MetaDescription>
					<EN/>
					<BG/>
					<TR/>
				</MetaDescription>
			</SEO>
			<CustomUrls/>
		</Category>
	</Categories>
</Response>
updateorder.php

Съдържание на файла:

Copy
<?php
	require_once(dirname(__FILE__) . '/../../../../../include/miphpf/Init.php');
	require_once(dirname(__FILE__) . '/../../../../../include/sc/Init.php');
	
	$url = 'http://xxxxx.com/modules/extra/supto/api.php';
	$contents = array(
		'action' => 'updateorder',
		'username' => 'admin',
		'secret' => 'admin',
		'orderId' => 2,
		'orderStatus' => 5, // Specifying a wrong value gives the available values back.
		'orderShippingTrackingNo' => 'TEST', // Stored in VARCHAR(255) field.
		'orderFiscalSaleNumber' => 'XX311145-0000-0301109',
	);
	echo '<h1>Output from ' . $url . ':</h1>';
	echo '<pre>';
	echo miI18N::htmlEscape(scHttp::post($url, $contents));
	echo '</pre>';
?>
«1»
Онлайн магазин от SELITON