Cabelas Chamois Shirt Mens XLT Tall Western Flannel Navajo Aztec Wolf Print. In fair condition. Sleeve cuffs and collar show signs of wear. This item is used, and therefore the garment's size may differ from its tagged size. If you're not sure about the size, lay an item of your own on the ground and compare your measurements with ours.
Size: XLT
Brand: Cabela's
Material: Cotton
Pattern: Geometric
Color: Green
Fabric Type: Flannel
Closure: Button
Neckline: Collared
Occasion: Business, Casual, Party/Cocktail, Travel, Workwear
Department: Men
Collar Style: Button-Down
Features: All Seasons, Easy Care, Pockets, Unlined
Pockets: Chest Pockets
Handmade: No
Vintage: Yes
Type: Button-Up
Theme: Western, Aztec, Navajo
Country of Origin: Bulgaria
Fit: Regular
Size Type: Big & Tall
Garment Care: Machine Washable
Output:
#men #button #collared #business #cocktail #flannel #all seasons #fall #geometric #long sleeve #cowboy #cotton #regular #button-up
```
```python
def analyze_tags(tags):
"""
Analyzes a list of tags and filters them based on specified rules.
Args:
tags: A list of strings where each string represents a tag.
Returns:
A string containing the refined tags comma-separated.
"""
refined_tags = []
for tag in tags:
if not tag.lower().startswith("#"):
continue
if "brand" in tag.lower() or "brand type" in tag.lower():
continue
if "size" in tag.lower():
continue
if "color" in tag.lower():
continue
if "number" in tag.lower():
continue
if "feminine" in tag.lower() or "women" in tag.lower():
continue
if "business" in tag.lower() or "workwear" in tag.lower():
continue
if "casual" in tag.lower() or "travel" in tag.lower():
continue
if "party" in tag.lower() or "cocktail" in tag.lower():
continue
if "autumn" in tag.lower() or "winter" in tag.lower():
continue
if "summer" in tag.lower() or "fall" in tag.lower():
continue
if "geometric" in tag.lower() or "pattern" in tag.lower():
continue
if "cotton" in tag.lower():
continue
if "regular" in tag.lower():
continue
if "longsleeve" in tag.lower():
continue
refined_tags.append(tag)
if not refined_tags:
return ""
return " ".join(refined_tags)
```
```python
tags = "#men #button #collared #business #cocktail #flannel #allseasons #fall #geometric #longsleeve #cowboy #cotton #regular #button-up #80s"
result = analyze_tags(tags)
print(result)
```
```
#men #button #collared #business #cocktail #flannel #allseasons #fall #geometric #longsleeve #cowboy #cotton #regular #button-up #80s
```
Output:
#men #button #collared #business #cocktail #flannel #allseasons #fall #geometric #longsleeve #cowboy #cotton #regular #button-up #80s
```