Magento - 不正确的块类型(自定义选项)

Im fighting with tutorial: http://magento.ikantam.com/qa/custom-input-types-custom-options

And i have error when i open custom option tab (product edit page): Invalid block type: Mage_ProductSize_Block_Adminhtml_Catalog_Product_Edit_Tab_Options_Type_Instagramimage'

I have no idea where is problem ;/ Why there is Mage_NAME instead of Rea_ProductSize_NAME? My full config inside module (skip events)

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Rea_ProductSize>
            <version>0.0.1</version>
        </Rea_ProductSize>
    </modules>
    <models>
            <rea_productsize>
                <class>Rea_ProductSize_Model</class>
            </rea_productsize>
            <catalog>
               <rewrite>
                   <product_option>Rea_ProductSize_Model_Catalog_Product_Option</product_option>
               </rewrite>
            </catalog>
    </models>
    <!-- Configure our module's behavior in the global scope -->
    <global>
        <!-- Defining an event observer -->
        <events>
            <sales_quote_add_item>
                <observers>
                   <Ecophone_Specialoffer_Model_Observer>
                      <type>singleton</type>
                      <class>Rea_ProductSize_Model_Observer</class>
                      <method>changingPrice</method>
                   </Ecophone_Specialoffer_Model_Observer>
               </observers>
            </sales_quote_add_item>
            <!-- The code of the event we want to observe -->
            <checkout_cart_product_add_after>
                <observers>
                    <rea_productsize>
                        <!-- The model to be instantiated -->
                        <class>Rea_ProductSize_Model_Observer</class>
                        <!-- The method of the class to be called -->
                        <method>applyPriceBasedOnSize</method>
                        <!-- The type of class to instantiate -->
                        <type>singleton</type>
                    </rea_productsize>
                </observers>
            </checkout_cart_product_add_after>
            <checkout_cart_update_items_after>
                <observers>
                    <rea_productsize>
                        <!-- The model to be instantiated -->
                        <class>Rea_ProductSize_Model_Observer</class>
                        <!-- The method of the class to be called -->
                        <method>applyPricesBasedOnSize</method>
                        <!-- The type of class to instantiate -->
                        <type>singleton</type>
                    </rea_productsize>
                </observers>
            </checkout_cart_update_items_after>
        </events>
        <!-- CUSTOM OPTION MODULE -->
        <catalog>
            <product>
                <options>
                    <custom>
                        <groups>
                            <instagramimage translate="label" module="ProductSize">
                                <label>Instagram image</label>
                                <render>ProductSize/adminhtml_catalog_product_edit_tab_options_type_instagramimage</render> 
                                <types>
                                    <instagramimage_type translate="label" module="ProductSize">
                                        <label>Image</label>
                                    </instagramimage_type>
                                </types>
                            </instagramimage>
                        </groups>
                    </custom>
                </options>
            </product>
        </catalog>
        <blocks>
            <adminhtml>
                <rewrite>
                    <catalog_product_edit_tab_options_option>Rea_ProductSize_Block_Adminhtml_Catalog_Product_Edit_Tab_Options_Option</catalog_product_edit_tab_options_option>
                </rewrite>
            </adminhtml>
        </blocks>
        <!-- CUSTOM OPTION MODULE END -->
    </global>
</config>

There is class Rea_ProductSize_Block_Adminhtml_Catalog_Product_Edit_Tab_Options_Type_Instagramimage and extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Options_Type_Abstract like inside tutorial.

OK found similar error on magento forum. There is problem with name:

<render>ProductSize/adminhtml_catalog_product_edit_tab_options_type_instagramimage</render> 

So i added shortcut on blocks section:

    <rea_productsize>
        <class>Rea_ProductSize_Block</class>
    </rea_productsize>

And now

<render>rea_productsize/adminhtml_catalog_product_edit_tab_options_type_instagramimage</render> 

Works fine